bfom 0.1.0

Brendan's Flavor of Markdown: I'll build my own markdown format, what could go wrong?
Documentation
## Sasmple 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.





## How many spaces of indentation do you want?

## Defaults to 2

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 = ["ajacent", "general", "folder", "default"]