simple markdown example

This commit is contained in:
Jörn-Michael Miehe 2019-09-20 10:29:54 +02:00
parent 93fea0f42a
commit b4eb717608
3 changed files with 18 additions and 0 deletions

2
example_docs/simple md/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
*.pdf
*.html

View file

@ -0,0 +1,10 @@
#@SRCPAT \.md$
.PHONY: all
all: simple.pdf simple.html
simple.pdf: simple.md
pandoc -s -f markdown -t latex -o $@ $<
simple.html: simple.md
pandoc -s -f markdown -t html -o $@ $<

View file

@ -0,0 +1,6 @@
# Really simple document
Boring content. Don't even read me!
Another line, why are you still reading?
Seriously?!