nim doc --project: @@
caused issues; use _._
instead
#14454
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
we could probably use same mangling for nimcache, it'd look less noisy than current scheme
/cc @kaushalmodi
should fix your comment:
Other options turned out problematic:
@@
,..7
,7..
@@
can cause problems unless it's encoded%40
(ugly) according to https://stackoverflow.com/questions/19509028/can-i-use-an-at-symbol-inside-urls/19737890..7
would show as hidden since starts with.
7..
may cause problems on windows see https://docs.microsoft.com/en-us/previous-versions/office/developer/sharepoint-2010/ff407623(v%3Doffice.14) and https://answers.microsoft.com/en-us/msoffice/forum/all/kb3203467-causing-attachments-with-consecutive/4c7d7d34-ced2-4386-85a9-4b093523ba4f_.
seems perfect; looks like a..
without being too similar to it so there's no confusion... well not sure about hyperlinks that could hide underscores but I guess the dot makes it clear still_.
see https://stackoverflow.com/questions/4075753/how-to-delete-a-folder-that-name-ended-with-a-dot and in fact CI failed fortests/misc/trunner.nim
where walkDirRec reported finding_/imp.html
instead of_./imp.html
=> could indicate bug in stdlib for paths ending with dot which are probably legal on windows but oddly supportedonly alternative:
_
haven't tried but could work; although it's more likely to clash
links for reference