none property

ExtensionSet none
final

The ExtensionSet.none extension set renders Markdown similar to Markdown.pl.

However, this set does not render exactly the same as Markdown.pl; rather it is more-or-less the CommonMark standard of Markdown, without fenced code blocks, or inline HTML.

Implementation

static final ExtensionSet none = ExtensionSet(
  List<BlockSyntax>.unmodifiable(<BlockSyntax>[]),
  List<InlineSyntax>.unmodifiable(<InlineSyntax>[]),
);