diff options
author | Alex Gleason <alex@alexgleason.me> | 2022-01-24 15:34:23 -0600 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2022-01-24 15:34:23 -0600 |
commit | cd9341dbff3da8ced3ed59fd704986f49e01cee2 (patch) | |
tree | 0bf17749f6834a95e43b6a3f714f4cd82b9b5487 | |
parent | c04241eb4ae195490281d9f67268d2785b6ec643 (diff) | |
download | pleroma-cd9341dbff3da8ced3ed59fd704986f49e01cee2.tar.gz |
Scrubber.Default: allow span.quote-inline for quote post compatibility
-rw-r--r-- | priv/scrubbers/default.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/scrubbers/default.ex b/priv/scrubbers/default.ex index 4694a92a5..891f4f351 100644 --- a/priv/scrubbers/default.ex +++ b/priv/scrubbers/default.ex @@ -56,7 +56,7 @@ defmodule Pleroma.HTML.Scrubber.Default do Meta.allow_tag_with_these_attributes(:u, []) Meta.allow_tag_with_these_attributes(:ul, []) - Meta.allow_tag_with_this_attribute_values(:span, "class", ["h-card"]) + Meta.allow_tag_with_this_attribute_values(:span, "class", ["h-card", "quote-inline"]) Meta.allow_tag_with_these_attributes(:span, []) Meta.allow_tag_with_this_attribute_values(:code, "class", ["inline"]) |