From b8d13bbdbc5403c4fe744891ff5f75628e5e37d4 Mon Sep 17 00:00:00 2001 From: User Identifier Date: Mon, 30 Oct 2017 21:19:07 +0100 Subject: [PATCH] Add readme with example --- README.md | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8f65706 --- /dev/null +++ b/README.md @@ -0,0 +1,53 @@ +# Ciclostile + + +## TODO + +- select input and output folders and template by parameters or config file. + + +## Example + +Input markdown: + +```markdown +Title: Home Page + +# Site + +Some text +``` + + +Template: + +```html + + + + {{ title }} + + + +{{ content }} + + + +``` + +Output html: + +```html + + + + Home Page + + + +

Site

+

Some text

+ + + +```