]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
makefile: remove [[link]] -> [link](url) conversion logic 772/head
authornodiscc <nodiscc@gmail.com>
Tue, 4 Jul 2017 19:30:50 +0000 (21:30 +0200)
committernodiscc <nodiscc@gmail.com>
Tue, 4 Jul 2017 19:30:50 +0000 (21:30 +0200)
all links in documentation have been converted to standard markdown link syntax

Makefile

index 2064303afa379e5b4f40ed6fd04aea878f0afa08..c5dee80ec6995101a8b19b3c13b219c4bfff670e 100644 (file)
--- 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; \