]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - Makefile
cleanup: remove the executable bit from source scripts
[github/shaarli/Shaarli.git] / Makefile
index d69fac46b2a6fccd1a85c3b4d55e1f45c9ff88a6..770dcd5368a1d8196d98c2e87d5ad08a325b856c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -13,8 +13,8 @@
 #   - enable in php.ini
 
 BIN = vendor/bin
-PHP_SOURCE = index.php application tests
-PHP_COMMA_SOURCE = index.php,application,tests
+PHP_SOURCE = index.php application tests plugins
+PHP_COMMA_SOURCE = index.php,application,tests,plugins
 
 all: static_analysis_summary test
 
@@ -126,8 +126,38 @@ doc: clean
        @git clone https://github.com/shaarli/Shaarli.wiki.git doc
        @rm -rf doc/.git
 
+### Generate a custom sidebar
+#
+# Sidebar content:
+#  - convert GitHub-flavoured relative links to standard Markdown
+#  - trim HTML, only keep the list (<ul>[...]</ul>) part
+htmlsidebar:
+       @echo '<div id="local-sidebar">' > doc/sidebar.html
+       @awk 'BEGIN { FS = "[\\[\\]]{2}" }'\
+       'm = /\[/ { t=$$2; gsub(/ /, "-", $$2); print $$1"["t"]("$$2".html)"$$3 }'\
+       '!m { print $$0 }' doc/_Sidebar.md > doc/tmp.md
+       @pandoc -f markdown -t html5 -s doc/tmp.md | awk '/(ul>|li>)/' >> doc/sidebar.html
+       @echo '</div>' >> doc/sidebar.html
+       @rm doc/tmp.md
+
 ### Convert local markdown documentation to HTML
-htmldoc:
-       for file in `find doc/ -maxdepth 1 -name "*.md"`; do \
-               pandoc -f markdown_github -t html5 -s -c "github-markdown.css" -o doc/`basename $$file .md`.html "$$file"; \
+#
+# For all pages:
+#  - infer title from the file name
+#  - convert GitHub-flavoured relative links to standard Markdown
+#  - insert the sidebar menu
+htmlpages:
+       @for file in `find doc/ -maxdepth 1 -name "*.md"`; do \
+               base=`basename $$file .md`; \
+               sed -i "1i #$${base//-/ }" $$file; \
+               awk 'BEGIN { FS = "[\\[\\]]{2}" }'\
+       'm = /\[/ { t=$$2; gsub(/ /, "-", $$2); print $$1"["t"]("$$2".html)"$$3 }'\
+       '!m { print $$0 }' $$file > doc/tmp.md; \
+               mv doc/tmp.md $$file; \
+               pandoc -f markdown_github -t html5 -s \
+                       -c "github-markdown.css" \
+                       -T Shaarli -M pagetitle:"$${base//-/ }" -B doc/sidebar.html \
+                       -o doc/$$base.html $$file; \
        done;
+
+htmldoc: doc htmlsidebar htmlpages