diff options
-rw-r--r-- | models/item/item.go | 2 | ||||
-rw-r--r-- | static/style.css | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/models/item/item.go b/models/item/item.go index 91335cf..c5ffff9 100644 --- a/models/item/item.go +++ b/models/item/item.go @@ -70,7 +70,7 @@ func (i *Item) FullSave() { func filterPolicy() *bluemonday.Policy { p := bluemonday.NewPolicy() - p.AllowElements("ul", "ol", "li", "blockquote", "a", "img", "p", "h1", "h2", "h3", "h4", "b", "i", "em", "strong") + p.AllowElements("ul", "ol", "li", "blockquote", "a", "img", "p", "h1", "h2", "h3", "h4", "b", "i", "em", "strong", "pre", "code") p.AllowAttrs("href").OnElements("a") p.AllowAttrs("src", "alt").OnElements("img") return p diff --git a/static/style.css b/static/style.css index 76d1ebd..8c44363 100644 --- a/static/style.css +++ b/static/style.css @@ -199,6 +199,7 @@ button { min-width: 0; width: 100%; max-width: 100%; + overflow: hidden; } |