addedInput schema / properties / allowRawHtml
Added value: +{
+ "default": false,
+ "description": "Pass trusted raw HTML through on HTML output. Disabled by default.",
+ "type": "boolean"
+}
addedInput schema / properties / asciiHeadingIds
Added value: +{
+ "description": "Heading ID policy; explicit values override the preset.",
+ "enum": [
+ "off",
+ "fold",
+ "strict"
+ ],
+ "type": "string"
+}
addedInput schema / properties / extensions
Added value: +{
+ "default": [],
+ "description": "Opt-in extensions; semantic-spans is HTML-only.",
+ "items": {
+ "enum": [
+ "autolink",
+ "semantic-spans",
+ "wikilinks"
+ ],
+ "type": "string"
+ },
+ "maxItems": 3,
+ "type": "array"
+}
addedInput schema / properties / lowercaseHeadingIds
Added value: +{
+ "description": "Lowercase generated heading IDs; explicit values override the preset.",
+ "type": "boolean"
+}
addedInput schema / properties / maxRenderLosses
Added value: +{
+ "description": "Maximum detailed losses to return.",
+ "maximum": 10000,
+ "minimum": 0,
+ "type": "integer"
+}
addedInput schema / properties / preset
Added value: +{
+ "default": "default",
+ "description": "portable lowercases IDs and transliterates where possible; static-html is HTML-only.",
+ "enum": [
+ "default",
+ "portable",
+ "static-html"
+ ],
+ "type": "string"
+}
addedInput schema / properties / sanitizeUrls
Added value: +{
+ "default": true,
+ "description": "Block dangerous authored URL schemes. Keep enabled for untrusted input.",
+ "type": "boolean"
+}
addedInput schema / properties / smartTypography
Added value: +{
+ "description": "Render typographic glyphs or the punctuation the author typed.",
+ "enum": [
+ "glyph",
+ "source"
+ ],
+ "type": "string"
+}
addedInput schema / properties / strictLosses
Added value: +{
+ "default": false,
+ "description": "Fail instead of returning output when a raw-format node would be dropped.",
+ "type": "boolean"
+}
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": {},
+ "properties": {
+ "losses": {
+ "items": {},
+ "type": "array"
+ },
+ "totalLosses": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "truncated": {
+ "type": "boolean"
+ },
+ "value": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "value",
+ "losses",
+ "totalLosses",
+ "truncated"
+ ],
+ "type": "object"
+}