gitHubFlavored property

ExtensionSet gitHubFlavored
final

The gitHubFlavored extension set is close to compliance with the GitHub flavored Markdown spec.

Implementation

static final ExtensionSet gitHubFlavored = ExtensionSet(
  List<BlockSyntax>.unmodifiable(
    <BlockSyntax>[
      const FencedCodeBlockSyntax(),
      const TableSyntax(),
      const UnorderedListWithCheckboxSyntax(),
      const OrderedListWithCheckboxSyntax(),
      const FootnoteDefSyntax(),
    ],
  ),
  List<InlineSyntax>.unmodifiable(
    <InlineSyntax>[
      InlineHtmlSyntax(),
      StrikethroughSyntax(),
      AutolinkExtensionSyntax()
    ],
  ),
);