Forgejo · Schema

MarkdownOption

MarkdownOption markdown options

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
Context string Context to render
Mode string Mode to render (comment, gfm, markdown)
Text string Text markdown to render
Wiki boolean Is it a wiki page ?
View JSON Schema on GitHub

JSON Schema

markdownoption.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MarkdownOption",
  "description": "MarkdownOption markdown options",
  "type": "object",
  "properties": {
    "Context": {
      "description": "Context to render",
      "type": "string"
    },
    "Mode": {
      "description": "Mode to render (comment, gfm, markdown)",
      "type": "string"
    },
    "Text": {
      "description": "Text markdown to render",
      "type": "string"
    },
    "Wiki": {
      "description": "Is it a wiki page ?",
      "type": "boolean"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}