diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/config.exs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/config.exs b/config/config.exs index ed718c3d3..d5c5b7902 100644 --- a/config/config.exs +++ b/config/config.exs @@ -76,6 +76,15 @@ config :pleroma, :instance, quarantined_instances: [], managed_config: true +config :pleroma, :markup, + # XXX - unfortunately, inline images must be enabled by default right now, because + # of custom emoji. Issue #275 discusses defanging that somehow. + allow_inline_images: true, + allow_headings: false, + allow_tables: false, + allow_fonts: false, + scrub_policy: Pleroma.HTML.Scrubber.Default + config :pleroma, :fe, theme: "pleroma-dark", logo: "/static/logo.png", |