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

table

Table of contents

Description:

This key toggles whether CloudCannon will output tables in Markdown format when converting HTML to Markdown.

Setting this key to true will convert HTML tables to Markdown table format.

By default, this key is false (i.e., tables are not output in Markdown format).

Appears in:
└── markdown
    └── options
        └── table
Type:
boolean
Default value:
false
Examples:

In this example, we have configured Markdown to output tables in Markdown format.

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