all repos — py-vite @ b3e66a3a943f363833d1a332e9af2bd484062a51

the original vite, written in python

docs: add example dir tree
icyphox icyph0x@protonmail.com
Sun, 18 Mar 2018 00:32:40 +0530
commit

b3e66a3a943f363833d1a332e9af2bd484062a51

parent

21bea7e31592cb98b8177aac4662822d72779571

1 files changed, 16 insertions(+), 3 deletions(-)

jump to
M README.mdREADME.md

@@ -5,17 +5,17 @@ ## Usage

```console $ vite.py new <project-path> ``` -Write your Markdown files in `pages/` and +Write your Markdown files in the `pages` directory and execute ```console $ vite.py build <project-path> ``` -*OR* +**OR** ```console $ make.py # at the project directory ``` -Rendered HTML will be in `build/` +Rendered HTML will be in the `build` directory. ## Configuration Not very sophisticated, but basic configuration can be acheived using `config.py` found in the project directory.

@@ -41,6 +41,19 @@ <footer>

{{ footer }} </footer> ``` + +## Directory tree + example + ├── build + │   └── test_page1 + │   └── index.html + ├── config.py + ├── make.py -> /home/icyphox/code/vite/make.py + ├── pages + │   └── test_page1.md + └── templates + └── index.html + ## TODO