Created
December 15, 2017 09:56
-
-
Save letsspeak/06e5ffd3c9110485278c0de1106c095d to your computer and use it in GitHub Desktop.
vs Redmine Textile Solution
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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