Re: [O] bug report: ox-html with coderef links needs a space between attributes in element (with patch)

2017-01-24 Thread D M German
Nicolas Goaziou twisted the bytes to say: >> >> ​I am running version 9.0.3 of org. >> >> I believe this patch will solve the issue. It simply adds a space before >> the class attribute. Nicolas> It works but I eventually applied a slightly different patch. Thank you Nicolas> for

Re: [O] bug report: ox-html with coderef links needs a space between attributes in element (with patch)

2017-01-24 Thread Nicolas Goaziou
Hello, dmg writes: > I have the following org-snippet: > > --- > This is an example > > #+BEGIN_SRC sml -r -l "(*(ref:%s)*)" -n > val x = 1 > fun f y = x + y (*(ref:f)*) > val x = 2 > val y = 3 > val z = f(x+y)

[O] bug report: ox-html with coderef links needs a space between attributes in element (with patch)

2017-01-24 Thread dmg
Hi everybody, I have the following org-snippet: --- This is an example #+BEGIN_SRC sml -r -l "(*(ref:%s)*)" -n val x = 1 fun f y = x + y (*(ref:f)*) val x = 2 val y = 3 val z = f(x+y) (*(ref:callf)*) #+END_SRC - Line [[(f)]] defines a