Hello, Sébastien Vauban writes: > Regarding this problem only, it must be an interaction then with my following > setting for the inline task in HTML: > > #+begin_src emacs-lisp > ;; templates for inline tasks in various exporters > (setq org-inlinetask-export-templates > '((html "
%s%s
%s
" > '((unless (eq todo "") > (format "%s%s " > class todo todo priority)) > heading content)) > (latex "\\todo[inline]{\\textbf{\\textsf{%s %s}}\\linebreak{} %s}" > '((unless (eq todo "") > (format "\\textsc{%s%s}" todo priority)) > heading content)) > (ascii " -- %s%s%s" > '((unless (eq todo "") > (format "%s%s " todo priority)) > heading > (unless (eq content "") > (format "\n ¦ %s" > (mapconcat 'identity > (org-split-string content "\n") > "\n ¦ "))))))) > #+end_src Indeed, it came from your templates. To prevent this, I made sure, with the following patch, that CONTENT is always enclosed by newline characters. Would you mind testing it before I apply it ? Also, you may have a look at default templates, as your HTML variant is slightly wrong (wrt
tag). Thanks. Regards, -- Nicolas