emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] Literal HTML export and paragraphs


From: Ulf Stegemann
Subject: [Orgmode] Literal HTML export and paragraphs
Date: Tue, 23 Feb 2010 13:58:21 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.92 (gnu/linux)

Hi,

not quite sure if that's a bug but I've just noticed that literal HTML
export with `#+HTML' or `#+BEGIN_HTML ...' suppresses paragraph markups
whenever literal export appears at the end of a paragraph.  An org file
like this

,----
| line 1
| line 2
|
| line 3
`----

is exported to

,----
| <p>
| line 1
| line 2
| </p>
| <p>
| line 3
| </p>
`----

while an org file like this

,----
| line 1
| #+HTML: <strong>line 2</strong>
|
| line 3
`----

is exported to

,----
| <p>
| line 1
| <strong>line 2</strong>
|
| line 3
| </p>
`----

This is probably not a major thing but it may lead to invalid HTML code.
Suppose `line 3' is replaced by e.g. an example block (which inserts its
own p element) then a p element would appear inside another p element
which is not allowed.

Ulf





reply via email to

[Prev in Thread] Current Thread [Next in Thread]