forked from AkkomaGang/akkoma
Merge branch 'features/formatting-sub_sup' into 'develop'
html.ex: Allow sub and sup elements by default Closes #1191 See merge request pleroma/pleroma!1572
This commit is contained in:
commit
1c8f58a30e
1 changed files with 2 additions and 0 deletions
|
@ -203,6 +203,8 @@ defmodule Pleroma.HTML.Scrubber.Default do
|
||||||
Meta.allow_tag_with_these_attributes("p", [])
|
Meta.allow_tag_with_these_attributes("p", [])
|
||||||
Meta.allow_tag_with_these_attributes("pre", [])
|
Meta.allow_tag_with_these_attributes("pre", [])
|
||||||
Meta.allow_tag_with_these_attributes("strong", [])
|
Meta.allow_tag_with_these_attributes("strong", [])
|
||||||
|
Meta.allow_tag_with_these_attributes("sub", [])
|
||||||
|
Meta.allow_tag_with_these_attributes("sup", [])
|
||||||
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", [])
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue