[][src]Crate equt_md_ext

Extended Markdown

This crate wraps the event iterator created by markdown to provide a more general while powerful interface.

Difference between those crates

  • markdown parses the markdown into event iterator.
  • md2html renders the event iterator into HTML.

Structs

Insert

An iterator inserts pseudo event after certain event.

Options

Option struct containing flags for enabling extra features that are not part of the CommonMark spec.

Parser

A wrapper for the original Parser.

Enums

Alignment

Table column text alignment.

CodeBlockKind

Codeblock kind.

CowStr

A copy-on-write string that can be owned, borrowed or inlined.

Event

Markdown events that are generated in a preorder traversal of the document tree, with additional End events whenever all of an inner node's children have been visited.

LinkType

Type specifier for inline links. See the Tag::Link for more information.

Tag

Tags for elements that can contain other elements.

Traits

MarkdownExt

An interface for extending the original Markdown event iterator.