Skip to content

Type Editor


Type Editor / @type-editor/markdown / schema / schema

Variable: schema

ts
const schema: Schema<
  | "doc"
  | "paragraph"
  | "blockquote"
  | "horizontal_rule"
  | "heading"
  | "code_block"
  | "ordered_list"
  | "bullet_list"
  | "list_item"
  | "text"
  | "image"
  | "hard_break",
  "em" | "strong" | "link" | "code"
>;

Defined in: schema.ts:6

Document schema for the data model used by CommonMark.