aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 0b16f36bde8413a157622374d816c429fe20940b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
FoldaWeb
========

### Description

FoldaWeb is a "keep last legacy" website generator: the program generates a page from parts of pages that are presents inside a directory and directly inside its parents. If multiple parts have the same name, it uses the last one (the one located the deepest in the directories before the current included).

This behaviour makes particularly easy to create well-organized websites with many subpages of different types with associated layouts for each.

___

### Features

- Unique "keep last legacy" generation (no pun intended)
- Mustache templating: FoldaWeb uses [Mustache](http://mustache.github.io/mustache.5.html) as template engine and adds several handy contextual variables
- Markdown compatible: pages can be written using the [Markdown syntax](http://daringfireball.net/projects/markdown/syntax)

Moreover, because FoldaWeb generates static files, generated websites are:

- **Portable**: any host and web server software can serve flat files.
- **Fast**: no server-side scripting is required everytime someone loads a page
- **Secure**: no CMS security flaws

___

### Example

[Multiverse Inc. Global Website](http://multiverse.pacien.net) is an example of website generated using FoldaWeb.

Its sources are available on GitHub at [Pacien/FoldaWeb-example](https://github.com/Pacien/FoldaWeb-example)

___

### Usage

Simply put the binary inside a directory containing a `source` folder with the website's sources inside and run the program (simply open the executable). Another folder named `out` containing the generated website will be created instantly.

You can also pass custom settings via command line arguments:

    -sourceDir="./source": Path to the source directory.
    -outputDir="./out": Path to the output directory.
    -parsableExts="html, txt, md": Parsable file extensions separated by commas.
    -skipPrefix="_": Folders with this prefix will be hidden in the output.
    -saveAs="index.html": Save compiled files as named.
    -startWith="index": Name without extension of the first file that will by parsed.
    -wordSeparator="-": Word separator used to replace spaces in URLs.