Expand description
Structs§
- Block
Quote FnArgs - Arguments for a markdown block quote view.
- Code
Block FnArgs - Arguments for a markdown code block view.
- Code
Inline FnArgs - Arguments for a markdown inlined code text view.
- DefList
Args - Arguments for a markdown definition list.
- DefList
Item Definition Args - Arguments for a markdown definition list item description.
- DefList
Item Title Args - Arguments for a markdown definition list item title.
- Footnote
DefFn Args - Arguments for a markdown footnote definition view.
- Footnote
RefFn Args - Arguments for a markdown footnote reference view.
- Heading
FnArgs - Arguments for a markdown heading view.
- Image
FnArgs - Arguments for a markdown image view.
- Link
Args - Arguments for the
LINK_EVENT
. - Link
FnArgs - Arguments for a markdown inlined link view.
- List
FnArgs - Arguments for a markdown list view.
- List
Item Bullet FnArgs - Arguments for a markdown list item bullet, check mark or number.
- List
Item FnArgs - Arguments for a markdown list item view.
- Markdown
W
Render markdown styled text.- Markdown
Style - Markdown text run style.
- Panel
FnArgs - Arguments for a markdown panel.
- Paragraph
FnArgs - Arguments for a markdown paragraph view.
- Rule
FnArgs - Arguments for a markdown rule view.
- Table
Cell FnArgs - Arguments for a markdown table cell view.
- Table
FnArgs - Arguments for a markdown table view.
- Text
FnArgs - Arguments for a markdown text view.
Enums§
- Heading
Level - Image
Resolver - Markdown image resolver.
- Link
Resolver - Markdown link resolver.
Statics§
- BLOCK_
QUOTE_ FN_ VAR - Widget function for a markdown block quote.
- CODE_
BLOCK_ FN_ VAR - Widget function for a markdown code block segment.
- CODE_
INLINE_ FN_ VAR - Widget function for a markdown inline code segment.
- DEF_
LIST_ FN_ VAR - Widget function for a markdown definition list.
- DEF_
LIST_ ITEM_ DEFINITION_ FN_ VAR - Widget function for a markdown definition list item description.
- DEF_
LIST_ ITEM_ TITLE_ FN_ VAR - Widget function for a markdown definition list item title.
- FOOTNOTE_
DEF_ FN_ VAR - Widget function for a footnote definition block.
- FOOTNOTE_
REF_ FN_ VAR - Widget function for an inline reference to a footnote.
- HEADING_
FN_ VAR - Widget function for a markdown heading.
- IMAGE_
FN_ VAR - Widget function for a markdown image.
- IMAGE_
RESOLVER_ VAR - Markdown image resolver.
- LINK_
EVENT - Event raised by markdown links when clicked.
- LINK_
FN_ VAR - Widget function for a markdown link segment.
- LINK_
RESOLVER_ VAR - Markdown link resolver.
- LINK_
SCROLL_ MODE_ VAR - Scroll mode used by anchor links.
- LIST_
FN_ VAR - Widget function for a markdown list.
- LIST_
ITEM_ BULLET_ FN_ VAR - Widget function for a markdown list item bullet, check mark or number.
- LIST_
ITEM_ FN_ VAR - Widget function for a markdown list item content.
- PANEL_
FN_ VAR - Widget function for a markdown panel.
- PARAGRAPH_
FN_ VAR - Widget function for a markdown paragraph.
- RULE_
FN_ VAR - Widget function for a markdown rule line.
- TABLE_
CELL_ FN_ VAR - Widget function for a markdown table body cell.
- TABLE_
FN_ VAR - Widget function for a markdown table.
- TEXT_
FN_ VAR - Widget function for a markdown text segment.
Traits§
- Widget
Info Ext - Markdown extension methods for widget info.
Functions§
- anchor
P
Set a label that identifies the widget in the context of the parent markdown.- block_
quote_ fn P
Widget function that convertsBlockQuoteFnArgs
to widgets.- code_
block_ fn P
Widget function that convertsCodeBlockFnArgs
to widgets.- code_
inline_ fn P
Widget function that convertsCodeInlineFnArgs
to widgets.- def_
list_ fn P
Widget function that convertsDefListArgs
to widgets.- def_
list_ item_ definition_ fn P
Widget function that convertsDefListItemDefinitionArgs
to widgets.- def_
list_ item_ title_ fn P
Widget function that convertsDefListItemTitleArgs
to widgets.- default_
block_ quote_ fn - Default block quote view.
- default_
code_ block_ fn - Default code block view.
- default_
code_ inline_ fn - Default inlined code text view.
- default_
def_ list_ fn - Default definition list view.
- default_
def_ list_ item_ definition_ fn - Default definition list item description view.
- default_
def_ list_ item_ title_ fn - Default definition list item title view.
- default_
footnote_ def_ fn - Default markdown footnote definition.
- default_
footnote_ ref_ fn - Default markdown footnote reference.
- default_
heading_ fn - Default heading view.
- default_
image_ fn - Default image view.
- default_
link_ fn - Default inlined link view.
- default_
list_ fn - Default list view.
- default_
list_ item_ bullet_ fn - Default list item bullet, check mark or number view.
- default_
list_ item_ fn - Default list item view.
- default_
panel_ fn - Default markdown panel.
- default_
paragraph_ fn - Default paragraph view.
- default_
rule_ fn - Default rule view.
- default_
table_ cell_ fn - Default markdown table.
- default_
table_ fn - Default markdown table.
- default_
text_ fn - Default text view.
- footnote_
def_ fn P
Widget function that convertsFootnoteDefFnArgs
to widgets.- footnote_
ref_ fn P
Widget function that convertsFootnoteRefFnArgs
to widgets.- heading_
anchor - Generate an anchor label for a header.
- heading_
fn P
Widget function that convertsHeadingFnArgs
to widgets.- image_
fn P
Widget function that convertsImageFnArgs
to widgets.- image_
resolver P
Markdown image resolver.- link_fn
P
Widget function that convertsLinkFnArgs
to widgets.- link_
resolver P
Markdown link resolver.- link_
scroll_ mode P
Scroll-to mode used by anchor links.- list_fn
P
Widget function that convertsListFnArgs
to widgets.- list_
item_ bullet_ fn P
Widget function that convertsListItemBulletFnArgs
to widgets.- list_
item_ fn P
Widget function that convertsListItemFnArgs
to widgets.- markdown_
node - Implements the markdown parsing and view generation, configured by contextual properties.
- on_link
P
Markdown link click.- on_
pre_ link P
Previewon_link
event.- panel_
fn P
Widget function that convertsPanelFnArgs
to a widget.- paragraph_
fn P
Widget function that convertsParagraphFnArgs
to widgets.- rule_fn
P
Widget function that convertsRuleFnArgs
to widgets.- table_
fn P
Widget function that convertsTableFnArgs
to widgets.- text_fn
P
Widget function that convertsTextFnArgs
to widgets.- try_
default_ link_ action - Default markdown link action.
- try_
open_ link - Try open link, only works if the
url
is valid or a file path, returns if the confirm tooltip is visible. - try_
scroll_ link - Handle
url
in the format#anchor
, by scrolling and focusing the anchor.