diff options
author | Alex Gleason <alex@alexgleason.me> | 2022-01-24 15:34:23 -0600 |
---|---|---|
committer | tusooa <tusooa@kazv.moe> | 2023-09-13 19:19:04 -0400 |
commit | 36a5578d2b16ba9f771fff55daafa85ec606a6be (patch) | |
tree | 2e7783a2ffb422f3cdaffc9a9c301c89b059329c | |
parent | 1f19dd76f66ca657ddfe79a51e59b8997a4c6321 (diff) | |
download | pleroma-36a5578d2b16ba9f771fff55daafa85ec606a6be.tar.gz pleroma-36a5578d2b16ba9f771fff55daafa85ec606a6be.zip |
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 d1215d2e0..56324a9fa 100644 --- a/priv/scrubbers/default.ex +++ b/priv/scrubbers/default.ex @@ -60,7 +60,7 @@ defmodule Pleroma.HTML.Scrubber.Default do Meta.allow_tag_with_these_attributes(:u, ["lang"]) Meta.allow_tag_with_these_attributes(:ul, ["lang"]) - Meta.allow_tag_with_this_attribute_values(:span, "class", ["h-card", "recipients-inline"]) + Meta.allow_tag_with_this_attribute_values(:span, "class", ["h-card", "recipients-inline", "quote-inline"]) Meta.allow_tag_with_these_attributes(:span, ["lang"]) Meta.allow_tag_with_this_attribute_values(:code, "class", ["inline"]) |