ForceMentionsInContent: wrap inline mentions with span tag
This commit is contained in:
parent
1bbc701a3a
commit
d5644a52aa
@ -63,7 +63,7 @@ defmodule Pleroma.Web.ActivityPub.MRF.ForceMentionsInContent do
|
|||||||
|
|
||||||
content =
|
content =
|
||||||
if added_mentions != "",
|
if added_mentions != "",
|
||||||
do: added_mentions <> " " <> content,
|
do: "<span class=\"recipients-inline\">#{added_mentions} </span>" <> content,
|
||||||
else: content
|
else: content
|
||||||
|
|
||||||
{:ok, put_in(object["object"]["content"], content)}
|
{:ok, put_in(object["object"]["content"], content)}
|
||||||
|
@ -56,7 +56,7 @@ defmodule Pleroma.HTML.Scrubber.Default do
|
|||||||
Meta.allow_tag_with_these_attributes(:u, [])
|
Meta.allow_tag_with_these_attributes(:u, [])
|
||||||
Meta.allow_tag_with_these_attributes(:ul, [])
|
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", "recipients-inline"])
|
||||||
Meta.allow_tag_with_these_attributes(:span, [])
|
Meta.allow_tag_with_these_attributes(:span, [])
|
||||||
|
|
||||||
Meta.allow_tag_with_this_attribute_values(:code, "class", ["inline"])
|
Meta.allow_tag_with_this_attribute_values(:code, "class", ["inline"])
|
||||||
|
Loading…
Reference in New Issue
Block a user