Skip to content
Snippets Groups Projects
Commit 92df5b32 authored by Christopher Bohn's avatar Christopher Bohn :thinking:
Browse files

added makefile and .gitignore for assignment

parent f1bbc6e7
Branches
Tags
No related merge requests found
*.html
ASSIGNMENTS = $(wildcard *.md)
ASSIGNMENT_HTML = $(ASSIGNMENTS:%.md=%.html)
all: $(ASSIGNMENT_HTML)
%.html: %.md
pandoc -o $@ $<
sed "s/’/'/g" $@ | sed "s/‘/'/g" | sed 's/”/"/g' | sed 's/“/"/g' > temp
mv temp $@
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment