Hi Nicolas,

Nicolas wrote:
> Sébastien Vauban <wxhgmqzgw...@spammotel.com> writes:
>> * Russian dolls
>>
>> In the following, I see one block in the other, with visible
>> =ORG-LIST-END-MARKERs=.
>>
>> *************** TODO To send
>>
>> - This
>> - That
>>
>> *************** END
>>
>> *************** TODO To receive
>>
>> - Pictures
>> - Invoice
>>
>> *************** END
>
> It will not be very helpful, but: I cannot reproduce it, even with
> minimal setup.

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 "<pre class=\"inlinetask\"><b>%s%s</b><br>%s</pre>"
                        '((unless (eq todo "")
                            (format "<span class=\"%s %s\">%s%s</span> "
                                    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

Best regards,
  Seb

-- 
Sébastien Vauban


Reply via email to