
Am 18.06.2025 um 23:28 schrieb mf:
Thanks Hraban and Wolfgang.
\ignorepars is what I was looking for, though I realized it must be the last thing in the paragraph.
Currently it does not work with my xml setup for paragraphs:
\startxmlsetups xml:Para \dontleavehmode\xmlflush{#1}\resetcharacterkerning\strut\par \stopxmlsetups
\resetcharacterkerning can be put after the \par.
There is also \begstrut ... \endstrut but this should only be necessary when you put text in a box.
\strut prevents the last line from having no depth in case there are no letter with descendants. I think that could be set globally... but how?
You can use a flag to call \ignorepars at the end of the paragraph. %%%% begin example \newconditional\IgnoreParagraph \IgnoreParagraph\conditionaltrue \starttext First paragraph. \ifconditional\IgnoreParagraph \IgnoreParagraph\conditionalfalse \ignorepars \fi Second paragraph. Third paragraph. \stoptext %%%% end example Wolfgang