emacs-orgmode
[Top][All Lists]
Advanced

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

<span class="underline"> should be <em>


From: Pankaj Jangid
Subject: <span class="underline"> should be <em>
Date: Fri, 16 Oct 2020 22:40:36 +0530
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (darwin)

For this org mode text:

#+begin_src org
- This text is /emphasized/
- This text is *in bold*
- This text is _underlined_
- This text uses =a teletype font=
#+end_src

the follow is the HTML output:

#+begin_src
<ul class="org-ul">
<li>This text is <i>emphasized</i></li>
<li>This text is <b>in bold</b></li>
<li>This text is <span class="underline">underlined</span></li>
<li>This text uses <code>a teletype font</code></li>
</ul>
#+end_src

In case of /italics/, CSS class is used whereas for other formatting
cases native HTML elements are used. Shouldn't the _underline_ be
converted into <em> tags?

Regards



reply via email to

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