diff --git a/.gitignore b/.gitignore index e85b347..463f699 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .idea/ .vendor/ +README.html diff --git a/Makefile b/Makefile index 3158218..cdefbac 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,8 @@ all: html -# generate html from all md files -html: $(patsubst %.md,%.html,$(filter-out README.md CONTRIBUTING.md,$(wildcard *.md quickref/*.md))) Makefile +# Generate html from all md files +# (including README, maybe useful for local preview. $(filter-out README.md, ...) to exclude). +html: $(patsubst %.md,%.html,$(wildcard *.md quickref/*.md)) Makefile PANDOC=pandoc -f markdown-smart+autolink_bare_uris