In addition to the regular set of attributes recognized by the HTML::WikiConverter constructor, this
dialect also accepts the following attributes that can be passed into the "new()" constructor. See
"ATTRIBUTES" in HTML::WikiConverter for usage details.
header_style
Possible values: 'setext', 'atx'. Determines how headers "h1"-"h6" will be formatted. See
<http://daringfireball.net/projects/markdown/syntax#header> for more information. Default is 'atx'.
link_style
Possible values: 'inline', 'reference'. See <http://daringfireball.net/projects/markdown/syntax#link> for
more information. Default is 'reference'.
force_inline_anchor_links
Possible values: 0, 1. If enabled, links to anchors within the same page (eg, "#some-anchor") will always
produce inline Markdown links, even under reference link style. This might be useful for building tables
of contents. Default is 0.
image_style
Possible values: 'inline', 'reference'. See <http://daringfireball.net/projects/markdown/syntax#img> for
more information. Default is 'reference'.
image_tag_fallback
Possible values: 0, 1. Markdown's image markup does not support image dimensions. If "image_tag_fallback"
is enabled, image tags containing dimensional information (ie, width or height) will not be converted
into Markdown markup. Rather, they will be roughly preserved in their HTML form. Default is 1.
unordered_list_style
Possible values: 'asterisk', 'plus', 'dash'. See
<http://daringfireball.net/projects/markdown/syntax#list> for more information. Default is 'asterisk'.
ordered_list_style
Possible values: 'sequential', 'one-dot'. Markdown supports two different markups for ordered lists.
Sequential style gives each list element its own ordinal number (ie, '1.', '2.', '3.', etc.). One-dot
style gives each list element the same ordinal number (ie, '1.'). See
<http://daringfireball.net/projects/markdown/syntax#list> for more information. Default is 'sequential'.
md_extra
Possible values: 0, 1. Support MarkDown Extra <https://github.com/jmcmanus/pagedown-extra> extensions.
Default is 0.
This support is incomplete.
# Tables Supported
# Fenced Code Blocks
# Definition Lists Supported
# Footnotes
# Special Attributes
# SmartyPants
# Newlines
# Strikethrough