From 3db25ecb520a41cb3de0788bacf2088657fddd89 Mon Sep 17 00:00:00 2001 From: Will Thompson Date: Fri, 4 Sep 2015 12:00:27 +0100 Subject: [PATCH 1/2] Allow definition lists in sanitized HTML --- 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 2ad2c8c..35518f4 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'}, -- 2.4.3