diff options
author | Christoph (Sheogorath) Kern | 2018-02-26 19:41:53 +0100 |
---|---|---|
committer | GitHub | 2018-02-26 19:41:53 +0100 |
commit | b0ce3d0230a104fe6e4e136f8ecb57a87c6d264b (patch) | |
tree | 625479956368806296202624c3a7610b3e80745b /public/js | |
parent | 912cce2b40689310333d6388fd82ff354051a7ac (diff) | |
parent | ea118c2ec8089fdde95cdbc71d19d05d72d7e673 (diff) |
Merge pull request #744 from hackmdio/add-more-html5-tags
Support more html5 tags and styles
Diffstat (limited to 'public/js')
-rw-r--r-- | public/js/render.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/public/js/render.js b/public/js/render.js index 860f8272..23b8934e 100644 --- a/public/js/render.js +++ b/public/js/render.js @@ -19,12 +19,12 @@ whiteList['style'] = [] whiteList['kbd'] = [] // allow ifram tag with some safe attributes whiteList['iframe'] = ['allowfullscreen', 'name', 'referrerpolicy', 'sandbox', 'src', 'width', 'height'] -// allow details tag -whiteList['details'] = [] -// allow summary tag for details +// allow summary tag whiteList['summary'] = [] // allow ruby tag whiteList['ruby'] = [] +// allow rp tag for ruby +whiteList['rp'] = [] // allow rt tag for ruby whiteList['rt'] = [] // allow figure tag |