Open sibylenricomessina opened 6 years ago
A similar issue occurs with parentheses in the filename. In this case it generates the html files but, the links to them are incorrect. For example, a page with the following source link:
[star(middle)end](http://domain/path/wiki/start(middle)end)
will generate a TOC link like this:
<a href="http://domain/path/wiki/start(middle">start(middle)end</a>end
Note, two problems resulted. First the URL is truncated at (before) the closing parenthesis. Second, the part of the page name after the closing parenthesis is repeated after the HTML Anchor is closed.
Same issue with pages containing semi-colons. In general, I think the page names are not escaped correctly.
Hi,
I've a problem. All the
*.md
files that contain a [ or ] character are ignored by thegwtc
command.Every page in my github-wiki starts with a prefix, contained between two square brackets, that identifies the category of the page. For example:
When I execute the command
gwtc -v ./repository.wiki
I obtain the following messages:It seems that the TOC file (in this case the
_Sidebar.md
) is correctly parsed and the pages are detected, but the corresponding HTML is not generated inside thedocumentation.html
file.Can you fix this issue?
Thank you