Merge branch 'scrubbers-allow-mention-hashtag' into 'develop'

scrubbers/default: Allow "mention hashtag" classes used by Mastodon

See merge request pleroma/pleroma!4245
This commit is contained in:
marcin mikołajczak 2024-09-02 11:08:33 +00:00
commit fecfe8bf89
3 changed files with 5 additions and 2 deletions

View file

@ -0,0 +1 @@
scrubbers/default: Allow "mention hashtag" classes used by Mastodon

View file

@ -22,7 +22,8 @@ defmodule Pleroma.HTML.Scrubber.Default do
"u-url", "u-url",
"mention", "mention",
"u-url mention", "u-url mention",
"mention u-url" "mention u-url",
"mention hashtag"
]) ])
Meta.allow_tag_with_this_attribute_values(:a, "rel", [ Meta.allow_tag_with_this_attribute_values(:a, "rel", [

View file

@ -23,7 +23,8 @@ defmodule Pleroma.HTML.Scrubber.TwitterText do
"u-url", "u-url",
"mention", "mention",
"u-url mention", "u-url mention",
"mention u-url" "mention u-url",
"mention hashtag"
]) ])
Meta.allow_tag_with_this_attribute_values(:a, "rel", [ Meta.allow_tag_with_this_attribute_values(:a, "rel", [