Skip to content

Instantly share code, notes, and snippets.

@letsspeak
Created December 15, 2017 09:56
Show Gist options
  • Save letsspeak/06e5ffd3c9110485278c0de1106c095d to your computer and use it in GitHub Desktop.
Save letsspeak/06e5ffd3c9110485278c0de1106c095d to your computer and use it in GitHub Desktop.
vs Redmine Textile Solution
# markdown files
MARKDOWNS = $(wildcard *.md)
# converted textiles
TEXTILES = $(patsubst %.md,%.textile,$(MARKDOWNS))
all: $(TEXTILES)
README.textile: README.md
@echo 'skipping README.textile conversion'
%.textile: %.md
pandoc -s ./$< -o ./textile/$@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment