Re: [O] Bug: HTML blocks in macros called before lists break in 7.5

2011-04-29 Thread U Avalos
On 4/24/2011 1:44 PM, Nicolas Goaziou wrote: Hello, amscopub-m...@yahoo.com writes: #+MACRO: start #+BEGIN_HTML\n \n#+END_HTML #+MACRO: end #+BEGIN_HTML\n \n#+END_HTML * Hello world {{{start}}} 1. Item 1 {{{end}}} [...] Anyway, the above code worked fine in 7.4. Then I upgraded to

Re: [O] Bug: HTML blocks in macros called before lists break in 7.5

2011-04-24 Thread Nicolas Goaziou
Hello, amscopub-m...@yahoo.com writes: > #+MACRO: start #+BEGIN_HTML\n \n#+END_HTML > #+MACRO: end #+BEGIN_HTML\n \n#+END_HTML > > > * Hello world > > {{{start}}} > 1. Item 1 > {{{end}}} [...] > Anyway, the above code worked fine in 7.4. Then I upgraded to 7.5 and > I now have literally hu

[O] Bug: HTML blocks in macros called before lists break in 7.5

2011-04-22 Thread amscopub-mail
Sample code: - #+MACRO: start #+BEGIN_HTML\n \n#+END_HTML #+MACRO: end #+BEGIN_HTML\n \n#+END_HTML * Hello world {{{start}}} 1. Item 1 {{{end}}} --- Expected HTML export (valid HTML): -- Item 1 ---