Markdown
module Markdown| Assembly | Nacara.Plugin.Markdown |
| Attributes | [<RequireQualifiedAccess>] |
Functions and values
create () : IPlugin
create () : IPluginThe markdown plugin, with its default options.
createWith (configure: MarkdownOptions -> MarkdownOptions) : IPlugin
createWith (configure: MarkdownOptions -> MarkdownOptions) : IPluginThe markdown plugin, configured.
| Parameter | |
|---|---|
configure | Given the defaults, the options to use. Anything it leaves alone keeps its default. |
defaults: MarkdownOptionsfrontMatterFormat: FrontMatterFormat
frontMatterFormat: FrontMatterFormatHow a markdown file carries its front matter: a block at the top of the file.
githubRepo (value: string option) (options: MarkdownOptions) : MarkdownOptions
githubRepo (value: string option) (options: MarkdownOptions) : MarkdownOptionsRepository used to expand issue and commit references, for example MangelMaxime/Nacara.
| Parameter | |
|---|---|
value | The value to use. |
options | The options so far. |
registerWith (configure: MarkdownOptions -> MarkdownOptions) (site: Site) : Site
registerWith (configure: MarkdownOptions -> MarkdownOptions) (site: Site) : SiteAdd markdown to a site, configured.
| Parameter | |
|---|---|
configure | Given the defaults, the options to use. Anything it leaves alone keeps its default. |
site | The site being described. |
strictLinks (value: bool) (options: MarkdownOptions) : MarkdownOptions
strictLinks (value: bool) (options: MarkdownOptions) : MarkdownOptionsFail the build on a link that points at no page.
| Parameter | |
|---|---|
value | The value to use. |
options | The options so far. |
toc (value: TocRange) (options: MarkdownOptions) : MarkdownOptions
toc (value: TocRange) (options: MarkdownOptions) : MarkdownOptionsHeading levels collected into the table of contents, for pages that do not say.
| Parameter | |
|---|---|
value | The value to use. |
options | The options so far. |
warnOnUnknownLanguage (value: bool) (options: MarkdownOptions) : MarkdownOptions
warnOnUnknownLanguage (value: bool) (options: MarkdownOptions) : MarkdownOptionsReport a fence naming a language no highlighter covers.
| Parameter | |
|---|---|
value | The value to use. |
options | The options so far. |