From 8bf94136e10c64496711c8f66a4f58f89c515360 Mon Sep 17 00:00:00 2001 From: nodiscc Date: Tue, 4 Jul 2017 21:30:50 +0200 Subject: [PATCH] makefile: remove [[link]] -> [link](url) conversion logic all links in documentation have been converted to standard markdown link syntax --- Makefile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Makefile b/Makefile index 2064303..c5dee80 100644 --- a/Makefile +++ b/Makefile @@ -198,12 +198,6 @@ doxygen: clean # - convert GitHub-flavoured relative links to standard Markdown # - generate html documentation with mkdocs htmlpages: - # Rename local [[links]] to regular links. - @for file in `find doc/md/ -maxdepth 1 -name "*.md"`; do \ - sed -e "s/\[\[\(.*\)\]\]/[\1](\1)/g" "$$file" > doc/md/tmp.md; \ - mv doc/md/tmp.md $$file; \ - done - python3 -m venv venv/ bash -c 'source venv/bin/activate; \ pip install mkdocs; \