This file contains 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 to slides is a command line interface to convert markdown documents to an HTML slideshow. | |
## Basically, Markdown to slides uses remark to convert your markdown documents to HTML slideshows, i.e. that can be viewed in your favorite modern Web browser. | |
BUILD_DIR := build | |
REMARK := markdown-to-slides | |
MARKDOWN := $(wildcard *.md) | |
HTML := $(patsubst %.md,$(BUILD_DIR)/%.html,$(MARKDOWN)) |