Bastien wrote:
>Hi David,
>David Maus writes:
>> * org-html.el (org-html-level-start): Add multiple container
>> classes.
>I don't quite understand this patch.
>Can't we use
> :PROPERTIES:
> :HTML_CONTAINER_CLASS: class1 class2 class3
> :END:
>already?
No: Org currently only uses the fir
Hi,
David Maus writes:
> No: Org currently only uses the first class. E.g.
>
> ,
> | (re-search-forward "^[ \t]*:HTML_CONTAINER_CLASS:[ \t]+\\(\\S-+\\)" nil t)
> | (setq class (match-string 1))
> `
>
> \\S-+ matches only the first sequence of non-space characters.
Okay - I've checked i
Hi David,
David Maus writes:
> * org-html.el (org-html-level-start): Add multiple container
> classes.
I don't quite understand this patch.
Can't we use
:PROPERTIES:
:HTML_CONTAINER_CLASS: class1 class2 class3
:END:
already?
Let me know if I miss something!
PS: Also, please make sur
* org-html.el (org-html-level-start): Add multiple container
classes.
* org-exp.el (org-export-remember-html-container-classes):
Parse multiple container classes.
---
lisp/org-exp.el |7 ---
lisp/org-html.el | 11 ---
2 files changed, 12 insertions(+), 6 deletions(-)
diff --gi