From 6f135629a06855e90699a12c46c4d8022859eb31 Mon Sep 17 00:00:00 2001 From: Will Thompson Date: Mon, 14 Sep 2015 20:45:06 +0000 Subject: [PATCH] Allow definition lists in sanitized HTML (fixes #2828) --- source/Ox/js/HTML.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/Ox/js/HTML.js b/source/Ox/js/HTML.js index 2ad2c8cb..35518f4b 100644 --- a/source/Ox/js/HTML.js +++ b/source/Ox/js/HTML.js @@ -38,6 +38,10 @@ {'name': 'li'}, {'name': 'ol'}, {'name': 'ul'}, + // definition lists + {'name': 'dl'}, + {'name': 'dt'}, + {'name': 'dd'}, // tables {'name': 'table'}, {'name': 'tbody'},