jeremy-compostella / org-msg

OrgMsg is a GNU/Emacs global minor mode mixing up Org mode and Message mode to compose and reply to emails in a Outlook HTML friendly style.
GNU General Public License v3.0
278 stars 60 forks source link

CSS-Styling for nested lists #155

Open Perangelot opened 2 years ago

Perangelot commented 2 years ago

CSS-Styling for nested list does not work. For example,

1. One
  1. One.One
2. Two

does not create

1. One
  a. One.a
2. Two

if the external .css fille contains

  ol ol {
      list-style-type: lower-alpha;
  }

Adding

#+HTML_HEAD: <style type="text/css">
#+HTML_HEAD:  ol ol { list-style-type: lower-alpha; }
#+HTML_HEAD: </style>
1. One
  a. One.a
2. Two

does not work either. Both ways work for classical html export. Any ideas?