Markdown

Field to store markdown content

The field of type markdown is used to store markdown code. It display a codemirror editor in the UI.

Example

{
  name: "content",
  type: "markdown",
}

Available options

This field only has the common options.

upload

The name or array of names with the upload entities used to upload files or get files from. If it's not defined, all uploads options will be used.

{
  name: "content",
  type: "markdown",
  upload: "images"
}

Set to false to disable this option:

{
  name: "content",
  type: "markdown",
  upload: false
}