Skip to content

Commit

Permalink
Fix default value of markdown_options (#277)
Browse files Browse the repository at this point in the history
Co-authored-by: Denis Blanchette <[email protected]>
  • Loading branch information
estan and dblanchette authored Nov 27, 2024
1 parent dd6dafa commit c231803
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions config_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,10 @@
"type": "object",
"default": {
"fenced-code-blocks": {
"break-on-newline": true,
"cssclass": "highlight jumbotron",
"tables": null
"cssclass": "highlight jumbotron"
},
"tables": null
"tables": null,
"break-on-newline": true,
},
"description": "[Markdown 2 options](https://github.com/trentm/python-markdown2/wiki/Extras) for the descriptions. `description_is_markdown` must be true for this to have any effect.\n\n**WARNING**\nAdding an extra, even if the value is false, will activate it. For example `{\"break-on-newline\": false}` will activate the `break-on-newline` extra.",
"examples": [
Expand Down

0 comments on commit c231803

Please sign in to comment.