1
0

generate README.html again; can be useful for local preview.

I added it to .gitignore, though git was already ignoring it for some
reason.
This commit is contained in:
Simon Michael
2019-04-17 15:47:00 -07:00
parent 59741afe2d
commit 84494fdecc
2 changed files with 4 additions and 2 deletions

1
.gitignore vendored
View File

@@ -1,2 +1,3 @@
.idea/
.vendor/
README.html

View File

@@ -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