diff options
author | Araq <rumpf_a@web.de> | 2013-04-19 09:07:01 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-04-19 09:07:01 +0200 |
commit | 04216fc7500e6c74f41c8f5aa743fb43a1ee65da (patch) | |
tree | a9220b54c10a33d5826ac007c34b8ffb40622f3f /compiler/docgen.nim | |
parent | 4f09794be9fb9b96728078712f01e990e0021929 (diff) | |
download | Nim-04216fc7500e6c74f41c8f5aa743fb43a1ee65da.tar.gz |
first steps to 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 2b7c567c6..9c9d68f5d 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, tkSad, tkDed, tkSpaces, tkInvalid: + of tkInd, tkSpaces, tkInvalid: app(result, literal) of tkParLe, tkParRi, tkBracketLe, tkBracketRi, tkCurlyLe, tkCurlyRi, tkBracketDotLe, tkBracketDotRi, tkCurlyDotLe, tkCurlyDotRi, tkParDotLe, |