Skip to content

MarkdownOptions

type MarkdownOptions =
    {
        GithubRepo: string option
        Toc: TocRange
        StrictLinks: bool
        WarnOnUnknownLanguage: bool
    }
AssemblyNacara.Plugin.Markdown

Options of the markdown plugin.

Fields

GithubRepo: string option

Repository used to expand issue and commit references, for example MangelMaxime/Nacara.

Toc: TocRange

Heading levels collected into the table of contents, for pages that do not say.

StrictLinks: bool

Fail the build on a link that points at no page. Warn instead when false.

WarnOnUnknownLanguage: bool

Report a fence naming a language no highlighter covers.

Reported here rather than by the highlighter, which only sees a language and a piece of code.