Hi everybody, On 2020-12-14, Bastien wrote:
> Hi Timothy, > > TEC <tecos...@gmail.com> writes: > >> Thanks for testing this :) I haven't forgotten about this. > > Let's wait for Jens feedback on this patch, since he took care of > testing it so far. I exported this: #+begin_src org ,#+TITLE: A title with *bold* index_1^2 and characters &ß<" ,#+AUTHOR: An /emphasized/ "anonymous" author_1^2 with [[https://example.org][hyperlink]] and characters &ß<" ,#+DESCRIPTION: A description_1^2 with /emphasis/ and [[https://example.org][hyperlink]] and characters &ß<" ,#+KEYWORDS: key, wörd, *bold*, sub_script Test #+end_src The title now exports follows, which needs fixing: <title>A title with </title> What about treating the title like the author? (Again, Org mode currently produces invalid HTML as nested sub-elements are produced inside the title element.) The keywords export as follows, where the name attribute is missing: <meta keywords="key, wörd, *bold*, sub_script" /> The current lambda functions in org-html-meta-tags all accept three arguments, where the first one is ignored in all cases. The second one is used in exactly one case. Why not add four calls to org-html--build-meta-entry (for author, description, keywords, generator) in org-html--build-meta-info? Best wishes Jens