Recent searches

in

gfm

On this page

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