diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2019-12-24 12:27:36 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-24 12:27:36 +0100 |
| commit | 46dd51afada6f001f6ead7c43c93ca703bd8beb8 (patch) | |
| tree | 24c8216fd569f01ed1463c0128163bf97e6a2f0a | |
| parent | 07c8ca87e623a1b42d3bb4c22eb5145837c98b73 (diff) | |
| parent | 6d232e9b695c2553b7594efe00c4f63aa96fc62d (diff) | |
Merge branch 'master' into makefile-doc
| -rw-r--r-- | searx/templates/oscar/infobox.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/oscar/infobox.html b/searx/templates/oscar/infobox.html index 9f5e58d2b..9802f11e2 100644 --- a/searx/templates/oscar/infobox.html +++ b/searx/templates/oscar/infobox.html @@ -6,7 +6,7 @@ <div class="panel-body"> {% if infobox.img_src %}<img class="img-responsive center-block infobox_part" src="{{ image_proxify(infobox.img_src) }}" alt="{{ infobox.infobox }}" />{% endif %} - {% if infobox.content %}<bdi><p class="infobox_part">{{ infobox.content }}</p></bdi>{% endif %} + {% if infobox.content %}<bdi><p class="infobox_part">{{ infobox.content | safe }}</p></bdi>{% endif %} {% if infobox.attributes -%} <table class="table table-striped infobox_part"> |