diff options
author | Juan Carlos <juancarlospaco@gmail.com> | 2023-06-10 02:09:03 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-10 07:09:03 +0200 |
commit | b2d77619757c73a8b14a8ccf127eaf3e630159cf (patch) | |
tree | 346effaff0b8a9b6bbf702555a2bca10c5a87374 /tools/kochdocs.nim | |
parent | 65c412e3f01bc00f5c6f318edfbfe561ab1bf438 (diff) | |
download | Nim-b2d77619757c73a8b14a8ccf127eaf3e630159cf.tar.gz |
Remove Deprecated Nimfix (#22062)
* Remove Deprecated Nimfix * Trailing whitespace cleanups
Diffstat (limited to 'tools/kochdocs.nim')
-rw-r--r-- | tools/kochdocs.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/kochdocs.nim b/tools/kochdocs.nim index 60d4bc673..e9f69fb86 100644 --- a/tools/kochdocs.nim +++ b/tools/kochdocs.nim @@ -97,11 +97,10 @@ proc getMd2html(): seq[string] = for a in walkDirRecFilter("doc"): let path = a.path if a.kind == pcFile and path.splitFile.ext == ".md" and path.lastPathPart notin - ["docs.md", "nimfix.md", + ["docs.md", "docstyle.md" # docstyle.md shouldn't be converted to html separately; # it's included in contributing.md. ]: - # maybe we should still show nimfix, could help reviving it # `docs` is redundant with `overview`, might as well remove that file? result.add path doAssert "doc/manual/var_t_return.md".unixToNativePath in result # sanity check |