logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 5fea3d9eca7da14579aac143bfca3d0f74e63310
parent: c5948996f695d32c4d57c60562cc198956461bce
Author: kaniini <nenolod@gmail.com>
Date:   Tue, 30 Oct 2018 23:22:48 +0000

Merge branch 'allow-abbr' into 'develop'

Allow use of the `abbr` HTML tag.

See merge request pleroma/pleroma!405

Diffstat:

Mlib/pleroma/html.ex2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/lib/pleroma/html.ex b/lib/pleroma/html.ex @@ -91,6 +91,8 @@ defmodule Pleroma.HTML.Scrubber.Default do Meta.allow_tag_with_uri_attributes("a", ["href"], @valid_schemes) Meta.allow_tag_with_these_attributes("a", ["name", "title"]) + Meta.allow_tag_with_these_attributes("abbr", ["title"]) + Meta.allow_tag_with_these_attributes("b", []) Meta.allow_tag_with_these_attributes("blockquote", []) Meta.allow_tag_with_these_attributes("br", [])