-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add
description_safe_mode
config option (#283)
* feat: Add `description_safe_mode` config option
- Loading branch information
1 parent
dd28a3a
commit a17ce95
Showing
99 changed files
with
2,051 additions
and
4,918 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"$id": "https://example.com/html.schema.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "HTML in descriptions", | ||
"type": "object", | ||
"properties": { | ||
"raw_html": { | ||
"type": "string", | ||
"description": "<br/><br/><br/><br/><a href=\"https://example.com\">A link to example.com</a>", | ||
"title": "Some raw HTML" | ||
}, | ||
"html_in_markdown": { | ||
"type": "string", | ||
"description": "Here is some HTML:\n```html\n<br/><br/><br/><br/><a href=\"https://example.com\">A link to example.com</a>\n```", | ||
"title": "Some HTML in Markdown" | ||
}, | ||
"json_in_markdown": { | ||
"type": "string", | ||
"description": "Here is some JSON:\n```json\n{\n \"property\": \"value\"\n}\n```", | ||
"title": "Some JSON in Markdown" | ||
} | ||
} | ||
} |
Oops, something went wrong.