guile-srfi-123

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit b4262d5c58baa376fb452189284aaf0fd1649e51
parent 57c3d433f9259cdfcfdfb8e92b1e1f6988c79626
Author: Arthur A. Gleckler <srfi@speechcode.com>
Date:   Sat, 15 Aug 2015 09:34:58 -0700

Add Makefile for creating HTML from Markdown.

* Use Pandoc.

* Specify SRFI CSS.

Diffstat:
AMakefile | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -0,0 +1,8 @@ +srfi-123.html: srfi-123.md + pandoc \ + --css=http://srfi.schemers.org/srfi.css \ + --from=markdown_github-hard_line_breaks \ + --standalone \ + --to=html \ + srfi-123.md \ + >srfi-123.html