Build

The [build] table sets the default compiler profile; see build profiles for more information.

Extend

The extend list can define extra file extensions to treat as page templates; these values are appended to render in the extension settings.

To support parsing HTML pages as well as markdown documents:

[build]
extend = ["html"]

It is possible to include any type of file; we use it at times to render JSON documents:

[build]
extend = ["html", "json"]

Back to Settings