Skip to content

Commit

Permalink
Introlenses (9 May 2018)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgimeno committed May 9, 2018
1 parent 797f9f8 commit 704429b
Show file tree
Hide file tree
Showing 5 changed files with 4,265 additions and 19 deletions.
19 changes: 19 additions & 0 deletions introlenses/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
slides = introlenses

$(slides).html $(slides)-nonet.html: $(slides).lhs
pandoc -s --mathjax -f markdown+inline_code_attributes+lhs -t slidy $(slides).lhs -o $(slides).html
pandoc -s --mathjax -t slidy -V slidy-url:http://localhost:8000/ $(slides).lhs -o $(slides)-nonet.html

clean:
rm -f $(slides).html $(slides)-nonet.html

open: $(slides).html
open $(slides).html

runserver:
python -m http.server

open-nonet: $(slides)-nonet.html
open http://localhost:8000/$(slides)-nonet.html

.PHONY: clean open runserver open-nonet
Loading

0 comments on commit 704429b

Please sign in to comment.