doc/slide: drop redundant src-format switch.

This commit is contained in:
Kei Hibino 2019-01-23 15:43:52 +09:00
parent f2246bb4ac
commit 0003d94f3c
3 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ slide_opts = \
## --incremental
%.html: %.md
pandoc -f $(md_format) -t s5 -r markdown $(slide_opts) -o $@ $<
pandoc -f $(md_format) -t s5 $(slide_opts) -o $@ $<
%.tex: %.md
pandoc -f $(md_format) -t beamer -s --slide-level=2 -o $@ $<

View File

@ -17,7 +17,7 @@ slide_opts = \
## --incremental
%.html: %.md
pandoc -f $(md_format) -t s5 -r markdown $(slide_opts) -o $@ $<
pandoc -f $(md_format) -t s5 $(slide_opts) -o $@ $<
%.tex: %.md
pandoc -f $(md_format) -t beamer -s --slide-level=2 -o $@ $<

View File

@ -18,7 +18,7 @@ slide_opts = \
## --incremental
%.html: %.md
pandoc -f $(md_format) -t s5 -r markdown $(slide_opts) -o $@ $<
pandoc -f $(md_format) -t s5 $(slide_opts) -o $@ $<
%.tex: %.md
pandoc -f $(md_format) -t beamer -s --slide-level=2 -o $@ $<