From 5d347d583d16d38333c84cfba4219826e45dfd0b Mon Sep 17 00:00:00 2001 From: Sheogorath Date: Sun, 25 Feb 2018 14:48:50 +0100 Subject: Extend HTML5 support by whitelisting various tags HTML5 provides a wide feature set of useful elements. Since Markdown usually supports HTML it should be able to use these HTML5 tags as well. As they were requested by some users and they where checked for being safe, whitelisting them isn't a problem. To make the experience the same as on GitHub when it comes to the basic look and feel of the rendered markdown, some CSS was added to make the summary and the details tag look like on GitHub. Signed-off-by: Sheogorath --- public/css/markdown.css | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'public/css') diff --git a/public/css/markdown.css b/public/css/markdown.css index 6741729d..36e45781 100644 --- a/public/css/markdown.css +++ b/public/css/markdown.css @@ -188,3 +188,12 @@ .markdown-body .alert > ul { margin-bottom: 0; } + +/* Make details boxes look like on GitHub */ +.markdown-body details summary { + cursor: pointer; +} + +.markdown-body summary { + display: list-item; +} -- cgit v1.2.3