Open neteler opened 5 days ago
keywords: missing dash instead of white space (maybe to be fixed in lib/gis/parser_rest_md.c" line 507?):
This seems to help:
--- a/lib/gis/parser_rest_md.c
+++ b/lib/gis/parser_rest_md.c
@@ -537,7 +537,7 @@ void print_escaped_for_md_keywords(FILE *f, const char *str)
else {
/* keyword index */
char *str_link;
- str_link = G_str_replace(str_s, " ", "%20");
+ str_link = G_str_replace(str_s, " ", "-");
G_str_to_lower(str_link);
fprintf(f, "[%s](keywords.md#%s)", str_s, str_link);
G_free(str_link);
Does it make sense, @landam?
Describe the bug
After the important work in #3849 to enable a markdown based manual using mkdocs this report collects yet open issues.
Issue collection
dist.x86_64-pc-linux-gnu/docs/mkdocs/site/wxGUI.md
and related are missing from mkdocs:WARNING - Doc file 'g.gui.rdigit.md' contains a link 'wxGUI.md', but the target is not found among documentation files.
WARNING - Doc file 'g.gui.rdigit.md' contains a link 'wxGUI.components.md', but the target is not found among documentation files.
, etc.icons/
directory is yet missing:dist.x86_64-pc-linux-gnu/docs/mkdocs/site/icons/
(seewxGUI.md
etc. which needs it)WARNING - Doc file 'd.barscale.md' contains a link 'barscales/classic.png', but the target is not found among documentation files.
WARNING - Doc file 'd.vect.md' contains a link 'colortables/population_dens.png', but the target is not found among documentation files.
etc.WARNING - Doc file 'd.northarrow.md' contains a link 'northarrows/9.png', but the target is not found among documentation files.
dist.x86_64-pc-linux-gnu/docs/mkdocs/site/keywords.html#map management
should bedist.x86_64-pc-linux-gnu/docs/mkdocs/site/keywords.html#map-management
'topic_time management.md': file name should better be 'topic_time_management.md' (underscore rather than white space)
build-mkdocs
step (cd man; make build-mkdocs
):Doc file 'topic_time management.md' contains a link 'keywords.md#time management', but the doc 'keywords.md' does not contain an anchor '#time management'.
-> it should be 'keywords.md#time-management'`