Commit 68cf977e authored by rkawulak's avatar rkawulak

Update doctokenizer.l

Removed ':' from the end of the section title for an RCS tag - it was inconsistent with sections created using other commands.
parent 683ef76f
......@@ -627,7 +627,7 @@ REFWORD {LABELID}|{REFWORD2}|{REFWORD3}|{LNKWORD2}
<St_Para>"$"{ID}":"[^\n$]+"$" { /* RCS tag */
QCString tagName(yytext+1);
int index=tagName.find(':');
g_token->name = tagName.left(index+1);
g_token->name = tagName.left(index);
g_token->text = tagName.mid(index+2,tagName.length()-index-3);
return TK_RCSTAG;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment