Merge pull request #6968 from fricklerhandwerk/man-no-weblinks

do not render relative links in help pages
This commit is contained in:
Eelco Dolstra
2022-08-29 08:46:35 +02:00
committed by GitHub
3 changed files with 5 additions and 7 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ std::string renderMarkdownToTerminal(std::string_view markdown)
.hmargin = 0,
.vmargin = 0,
.feat = LOWDOWN_COMMONMARK | LOWDOWN_FENCED | LOWDOWN_DEFLIST | LOWDOWN_TABLES,
.oflags = 0,
.oflags = LOWDOWN_TERM_NOLINK,
};
auto doc = lowdown_doc_new(&opts);