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

linkify

Table of contents

Description:

This key toggles whether CloudCannon will automatically convert URL-like text to links when converting Markdown to HTML.

Setting this key to true will automatically convert text that looks like URLs into clickable links.

By default, this key is false (i.e., URL-like text is not automatically converted to links).

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

In this example, we have configured Markdown to automatically convert URL-like text to links.

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