diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-04-22 09:21:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-22 09:21:43 (GMT) |
commit | c05e44e22afd7d281b7ee8a9f66c68f31131a563 (patch) | |
tree | 8c225bce3eac57de8d389a57bdade0981839e4cc | |
parent | c0447bfdd417102090b19f656a4986486116f42e (diff) | |
parent | a06b1020839f36e3b2ea73c09d9ead7f75983549 (diff) | |
download | Doxygen-c05e44e22afd7d281b7ee8a9f66c68f31131a563.zip Doxygen-c05e44e22afd7d281b7ee8a9f66c68f31131a563.tar.gz Doxygen-c05e44e22afd7d281b7ee8a9f66c68f31131a563.tar.bz2 |
Merge pull request #667 from albert-github/feature/bug_688387
Bug 688387 - JavaDoc @linkplain is not recognized
-rw-r--r-- | src/doctokenizer.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doctokenizer.l b/src/doctokenizer.l index 90a8c55..777e963 100644 --- a/src/doctokenizer.l +++ b/src/doctokenizer.l @@ -554,7 +554,7 @@ REFWORD_NOCV {LABELID}|{REFWORD2_NOCV}|{REFWORD3}|{REFWORD4_NOCV} g_token->indent = computeIndent(text,dotPos); return TK_ENDLIST; } -<St_Para>"{"{BLANK}*"@link" { +<St_Para>"{"{BLANK}*"@link"/{BLANK}+ { g_token->name = "javalink"; return TK_COMMAND; } |