diff options
author | Kaushal Modi <kaushal.modi@gmail.com> | 2018-10-09 14:48:00 -0400 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-10-09 20:48:00 +0200 |
commit | c6dfbfc2cf8005d1c92dbf4453ad5b4a211900be (patch) | |
tree | 5f1ca79c14d6fef3b07b7c28c13d1dbe79cbabcf /config | |
parent | c68ea019f9fd5d50fcbe6bd8196e4e0297e8c302 (diff) | |
download | Nim-c6dfbfc2cf8005d1c92dbf4453ad5b4a211900be.tar.gz |
Do not encode the anchors in docs (`id` attr in `a` tags) (#9261)
Update the tests too. Fixes https://github.com/nim-lang/Nim/issues/9232.
Diffstat (limited to 'config')
-rw-r--r-- | config/nimdoc.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/nimdoc.cfg b/config/nimdoc.cfg index a955254f2..f89739df6 100644 --- a/config/nimdoc.cfg +++ b/config/nimdoc.cfg @@ -38,7 +38,7 @@ doc.section.toc = """ # * $seeSrc: generated HTML from doc.item.seesrc (if some switches are used). doc.item = """ -<a id="$itemSymOrIdEnc"></a> +<a id="$itemSymOrID"></a> <dt><pre>$header</pre></dt> <dd> $desc |