Skip to content

Commit

Permalink
WIP: Finished Applicatives
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgimeno committed Apr 21, 2018
1 parent 4f44dd9 commit a729050
Show file tree
Hide file tree
Showing 4 changed files with 202 additions and 374 deletions.
12 changes: 7 additions & 5 deletions typeclasses/Makefile
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
slides = typeclasses

$(slides).html: $(slides).lhs
$(slides).html $(slides)-nonet.html: $(slides).lhs
pandoc -s --webtex -t slidy $(slides).lhs -o $(slides).html

$(slides)-nonet.html: $(slides).lhs
pandoc -s --webtex -t slidy -V slidy-url:http://localhost:8000/ $(slides).lhs -o $(slides)-nonet.html

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

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

runserver:
python -m http.server

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

.PHONY: clean open runserver open-nonet
112 changes: 0 additions & 112 deletions typeclasses/typeclasses-nonet.html

This file was deleted.

Loading

0 comments on commit a729050

Please sign in to comment.