☁️ Loving our new documentation website? Provide feedback in the CloudCannon Community! ✨

gfm

Table of contents

Description:

This key toggles whether CloudCannon will enable GitHub Flavored Markdown (GFM) mode when processing Markdown.

Setting this key to true will enable GFM mode, which includes features like tables, strikethrough, task lists, and autolinks.

By default, this key is false (i.e., GFM mode is disabled).

Appears in:
└── markdown
    └── options
        └── gfm
Type:
boolean
Examples:

In this example, we have configured Markdown to enable GitHub Flavored Markdown mode.

Copied to clipboard
markdown:
  engine: commonmark
  options:
    gfm: true
{
  "markdown": {
    "engine": "commonmark",
    "options": {
      "gfm": true
    }
  }
}
Open in a new tab