2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 04:55:44 +00:00

Sanitize data before displaying in markdown editor (#3205)

* Sanitize data before displaying in markdown editor

* Use the sanitize option provided by easymde

* Spelling fix
This commit is contained in:
Oliver
2022-06-16 10:57:28 +10:00
committed by GitHub
parent e83995b4f5
commit 9bd62f986f
2 changed files with 6 additions and 1 deletions

View File

@ -274,6 +274,11 @@ function setupNotesField(element, url, options={}) {
initialValue: initial,
toolbar: toolbar_icons,
shortcuts: [],
renderingConfig: {
markedOptions: {
sanitize: true,
}
}
});