Skip to content

Commit

Permalink
issue #9719 \ref command does not insert title of referenced page
Browse files Browse the repository at this point in the history
`%` should be possible in a title as well.
  • Loading branch information
albert-github committed Dec 16, 2022
1 parent 4511853 commit fbd6bd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commentscan.l
Expand Up @@ -783,7 +783,7 @@ STopt [^\n@\\]*
<Comment>{B}*"\\ilinebr"{B}* { // preserve spacing around \\ilinebr
addOutput(yyscanner,yytext);
}
<Comment>{B}*{CMD}[a-z_A-Z]+"{"[a-zA-Z_,:0-9\. ]*"}"{B}* |
<Comment>{B}*{CMD}[a-z_A-Z]+"{"[a-zA-Z_,:0-9\. %]*"}"{B}* |
<Comment>{B}*{CMD}[a-z_A-Z]+{B}* { // potentially interesting command
// the {B}* in the front was added for bug620924
QCString fullMatch = QCString(yytext);
Expand Down

0 comments on commit fbd6bd8

Please sign in to comment.