diff options
author | nodiscc <nodiscc@gmail.com> | 2017-07-04 21:30:50 +0200 |
---|---|---|
committer | nodiscc <nodiscc@gmail.com> | 2017-07-04 21:30:50 +0200 |
commit | 8bf94136e10c64496711c8f66a4f58f89c515360 (patch) | |
tree | d5c46525f3c739d9c63de860427e0b3cadd688e5 | |
parent | 366247c84cdb0bb0457552468103814d4d31ce5c (diff) | |
download | Shaarli-8bf94136e10c64496711c8f66a4f58f89c515360.tar.gz Shaarli-8bf94136e10c64496711c8f66a4f58f89c515360.tar.zst Shaarli-8bf94136e10c64496711c8f66a4f58f89c515360.zip |
makefile: remove [[link]] -> [link](url) conversion logic
all links in documentation have been converted to standard markdown link syntax
-rw-r--r-- | Makefile | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -198,12 +198,6 @@ doxygen: clean | |||
198 | # - convert GitHub-flavoured relative links to standard Markdown | 198 | # - convert GitHub-flavoured relative links to standard Markdown |
199 | # - generate html documentation with mkdocs | 199 | # - generate html documentation with mkdocs |
200 | htmlpages: | 200 | htmlpages: |
201 | # Rename local [[links]] to regular links. | ||
202 | @for file in `find doc/md/ -maxdepth 1 -name "*.md"`; do \ | ||
203 | sed -e "s/\[\[\(.*\)\]\]/[\1](\1)/g" "$$file" > doc/md/tmp.md; \ | ||
204 | mv doc/md/tmp.md $$file; \ | ||
205 | done | ||
206 | |||
207 | python3 -m venv venv/ | 201 | python3 -m venv venv/ |
208 | bash -c 'source venv/bin/activate; \ | 202 | bash -c 'source venv/bin/activate; \ |
209 | pip install mkdocs; \ | 203 | pip install mkdocs; \ |