mirror of
https://github.com/ldericher/autodoc.git
synced 2025-12-06 15:43:01 +00:00
simple markdown example
This commit is contained in:
parent
93fea0f42a
commit
b4eb717608
3 changed files with 18 additions and 0 deletions
2
example_docs/simple md/.gitignore
vendored
Normal file
2
example_docs/simple md/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
*.pdf
|
||||||
|
*.html
|
||||||
10
example_docs/simple md/Makefile
Normal file
10
example_docs/simple md/Makefile
Normal 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 $@ $<
|
||||||
6
example_docs/simple md/simple.md
Normal file
6
example_docs/simple md/simple.md
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
# Really simple document
|
||||||
|
|
||||||
|
Boring content. Don't even read me!
|
||||||
|
|
||||||
|
Another line, why are you still reading?
|
||||||
|
Seriously?!
|
||||||
Loading…
Reference in a new issue