diff options
Diffstat (limited to 'compiler/nimpaths.nim')
-rw-r--r-- | compiler/nimpaths.nim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/nimpaths.nim b/compiler/nimpaths.nim index 2d7fa53cb..9caaf4f05 100644 --- a/compiler/nimpaths.nim +++ b/compiler/nimpaths.nim @@ -27,6 +27,9 @@ const nimdocOutCss* = "nimdoc.out.css" # `out` to make it easier to use with gitignore in user's repos htmldocsDirname* = "htmldocs" + dotdotMangle* = "_._" ## refs #13223 + # if this changes, make sure it's consistent with `esc` and `escapeLink` + # lots of other obvious options won't work, see #14454; `_` could work too proc interp*(path: string, nimr: string): string = result = path % ["nimr", nimr] |