HTML output from org-mode would be a lot easier to read if the headings were incrementally indented. Yet when I process the file
#+HTML_HEAD_EXTRA: <style> pre.src { background-color: #202020; color: seashell; body { margin-left: 220px; width: 750px; } h1 { margin-left: -25%;} h2 { margin-left: -20%;} h3 { margin-left: -15%;} h4 { margin-left:-10%;} h5,h6 { margin-left: -5%; } }</style>
* Title
** Section
*** Subsection
** Section
*** Subsection
*** Subsection
indenting, as is common, the body by a certain amount and then pulling the headings backwards, I get an unindented output
even though the HTML exporter does indeed use HTML h2, h3, h4 headings.
How do I get the org HTML exporter to indent headings?