mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +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:
parent
e83995b4f5
commit
9bd62f986f
@ -35,7 +35,7 @@ class CleanMixin():
|
||||
return Response(serializer.data)
|
||||
|
||||
def clean_data(self, data: dict) -> dict:
|
||||
"""Clean / snatize data.
|
||||
"""Clean / sanitize data.
|
||||
|
||||
This uses mozillas bleach under the hood to disable certain html tags by
|
||||
encoding them - this leads to script tags etc. to not work.
|
||||
|
@ -274,6 +274,11 @@ function setupNotesField(element, url, options={}) {
|
||||
initialValue: initial,
|
||||
toolbar: toolbar_icons,
|
||||
shortcuts: [],
|
||||
renderingConfig: {
|
||||
markedOptions: {
|
||||
sanitize: true,
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user