소스 검색

make: use pandoc instead of perl markdown

Fabian Peter Hammerle 8 년 전
부모
커밋
e035d7769c
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      Makefile

+ 5 - 1
Makefile

@@ -1,5 +1,9 @@
+all: index.html
+
+# markdown --html4tags $^ >$@
+
 index.html : index.md
-		markdown --html4tags $^ >$@
+	pandoc --output=$@ $^
 
 clean :
 	trash index.html