don't escape inline css

This commit is contained in:
Pig Fang 2020-07-04 16:34:49 +08:00
parent 08e9f8be98
commit c798b4cb25
No known key found for this signature in database
GPG Key ID: A8198F548DADA9E2

View File

@ -19,6 +19,6 @@
<link rel="icon" type="image/png" href="{{ favicon }}" sizes="192x192">
<link rel="apple-touch-icon" href="{{ favicon }}" sizes="180x180">
{% if inline_css %}
<style>{{ inline_css|striptags }}</style>
<style>{{ inline_css|striptags|raw }}</style>
{% endif %}
{{ extra_head|join('\n')|raw }}