I am using org mode for code doc, literate programming etc.
With recent org-mode (version>=9.1) I have noticed a change in the exported html pages:
Before: (org-mode version < 9.1)
Now: (org-mode version >= 9.1)
Some horizontal lines have been added.
The problem is that I find these extra lines really ugly and IMHO they make the code less readable.
My questions: is it possible to remove these lines to get a style like the old one?
To reproduce:
org mode:
- version < 9.1 without horizontal lines
- version >= 9.1 with horizontal lines
a minimal
test.org
org mode file:
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="http://orgmode.org/worg/style/worg.css"/> #+HTML_HEAD: <style type="text/css">body{ max-width:80%; }</style> * Some code #+BEGIN_SRC cpp :eval never template <typename ELEMENT_TYPE, typename DERIVED> class Memory_Interface : public StaticInterface_Base<DERIVED> { public: using SelfType = Memory_Interface; using StaticInterface_Base<DERIVED>::impl; // ... }; #+END_SRC
From emacs use the usual C-c C-e h o
to export the html page
:html-head-include-default-style nil
in your org project definition. – rsm