bfom 0.1.35

Brendan's Flavor of Markdown: I'll build my own markdown format, what could go wrong?
## Sample config.
## All fields are optional
## rename file to .md.toml for it to be recognised by the program.
## If file does not exists it will run with the defaults below.


## Defaults to 2 spaces of indentation
indentation = 2
src = "./src"
dest= "./build"
## html blocks you dont want to include in the finished page
## Optional
html_void = ["area", "base", "br", "col", "command", "embed", "hr", "img", "input", "keygen", "link", "meta", "param", "source", "track", "wbr"]
#html_void = []

[template]
## Templates are hjtml files that teh generated markdown is insereted into.
## There are several options on how this is carried out.

## enable templating
enable = false
#enable = true


## Set a base template
#general = "./md/src/template.html"


## Priority of the templates to use, first one to match a markdown file is used.
## An Empty array below is also valid

## general: use the general file specified above, if it exists.

## ajacent: check if there is a template file with the same name as the markdown file ajacent to the markdown file.
##   ./src/exasmple.md
##   ./src/example.html

## folder: a html file with the same name of the folder that the md resides in.
##   ./src/blog/blog.html
##   ./src/blog/post1.md

## default: use an inbuilt html5 template

order = []
#order = ["adjacent", "general", "folder", "default"]