include_front_matter property

include_front_matter property

The option indicating whether to prepend YAML front matter to the Markdown output. Default is False.

Front matter is commonly used by static site generators such as Jekyll, Hugo, and Docusaurus. Only non-empty metadata fields are included.

Definition:

@property
def include_front_matter(self):
    ...
@include_front_matter.setter
def include_front_matter(self, value):
    ...

See Also