gitHubWeb property
The gitHubWeb extension set renders Markdown similarly to GitHub.
This is different from the gitHubFlavored extension set in that GitHub actually renders HTML different from straight GitHub flavored Markdown.
(The only difference currently is that gitHubWeb renders headers with linkable IDs.)
Implementation
static final ExtensionSet gitHubWeb = ExtensionSet([
const FencedCodeBlockSyntax(),
const HeaderWithIdSyntax(),
const SeTextHeaderWithIdSyntax(),
const TableSyntax()
], [
InlineHtmlSyntax(),
StrikethroughSyntax(),
EmojiSyntax(),
AutolinkExtensionSyntax(),
]);