From 03e0f54b86285e0e6eba07cbdbf407a0522b517d Mon Sep 17 00:00:00 2001 From: Dimitri van Heesch Date: Thu, 24 Dec 2020 19:14:12 +0100 Subject: Fixed small issue computing indentation for inline line breaks --- src/doctokenizer.l | 1 + 1 file changed, 1 insertion(+) diff --git a/src/doctokenizer.l b/src/doctokenizer.l index 92b2dc6..330db00 100644 --- a/src/doctokenizer.l +++ b/src/doctokenizer.l @@ -129,6 +129,7 @@ QCString extractPartAfterNewLine(const QCString &text) int nl2 = text.findRev("\\ilinebr"); if (nl2!=-1) { + if (text.at(nl2+8)==' ') nl2++; // skip space after \\ilinebr return text.mid(nl2+8); } return text; -- cgit v0.12