Ox.sanitizeHTML: include 'em' and 'strong' in default tags (otherwise sanitizing markdown fails)
This commit is contained in:
parent
b272221020
commit
ec4c46cb6c
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
var defaultTags = [
|
var defaultTags = [
|
||||||
// inline formatting
|
// inline formatting
|
||||||
'b', 'code', 'i', 's', 'sub', 'sup', 'u',
|
'b', 'code', 'em', 'i', 's', 'strong', 'sub', 'sup', 'u',
|
||||||
// block formatting
|
// block formatting
|
||||||
'blockquote', 'h1', 'h2', 'h3', 'p', 'pre',
|
'blockquote', 'h1', 'h2', 'h3', 'p', 'pre',
|
||||||
// lists
|
// lists
|
||||||
|
|
Loading…
Reference in a new issue