diff options
author | Araq <rumpf_a@web.de> | 2013-04-20 01:59:39 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-04-20 01:59:39 +0200 |
commit | 2796121dd7410af45a2fbaf43cc7577799fb3157 (patch) | |
tree | c07d68dbaf2a6916aef0a03d6d898ab73c496d31 /compiler/docgen.nim | |
parent | 04216fc7500e6c74f41c8f5aa743fb43a1ee65da (diff) | |
download | Nim-2796121dd7410af45a2fbaf43cc7577799fb3157.tar.gz |
next steps for the new parser/grammar
Diffstat (limited to 'compiler/docgen.nim')
-rw-r--r-- | compiler/docgen.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/docgen.nim b/compiler/docgen.nim index 9c9d68f5d..9929b4bd9 100644 --- a/compiler/docgen.nim +++ b/compiler/docgen.nim @@ -237,7 +237,7 @@ proc genItem(d: PDoc, n, nameNode: PNode, k: TSymKind) = of tkSymbol: dispA(result, "<span class=\"Identifier\">$1</span>", "\\spanIdentifier{$1}", [toRope(esc(d.target, literal))]) - of tkInd, tkSpaces, tkInvalid: + of tkSpaces, tkInvalid: app(result, literal) of tkParLe, tkParRi, tkBracketLe, tkBracketRi, tkCurlyLe, tkCurlyRi, tkBracketDotLe, tkBracketDotRi, tkCurlyDotLe, tkCurlyDotRi, tkParDotLe, |