목차

pandoc

Getting Started

User Guide

To PDF

Editor support

make

GNU Make를 사용하여 pandoc markdown을 ODT로 변환하는 예. 파일을 export/ 디렉토리에 생성한다.

EXPORT_DIR = export
ODTS := $(patsubst %.md,%.odt,$(wildcard *.md))
 
all: $(addprefix $(EXPORT_DIR)/, $(ODTS))
 
$(EXPORT_DIR) :
	mkdir -p $@
 
$(EXPORT_DIR)/%.odt : %.md $(EXPORT_DIR)
	pandoc $< -o $@ -s
 
clean:
	rm -rf $(EXPORT_DIR)