summaryrefslogtreecommitdiff
path: root/searx/templates/simple/categories.html
diff options
context:
space:
mode:
authorGrant Lanham <contact@grantlanham.com>2024-09-10 21:44:30 -0400
committerMarkus Heiser <markus.heiser@darmarIT.de>2024-09-15 15:19:51 +0200
commit0b832f19bf6590f099c572686d847db7cf7487e9 (patch)
tree9169eb1b3d530811c577bf1103c89693ac59282f /searx/templates/simple/categories.html
parent28dc623785778a39b9f7d73359c4d535e2c2dc5b (diff)
downloadsearxng-0b832f19bf6590f099c572686d847db7cf7487e9.tar.gz
searxng-0b832f19bf6590f099c572686d847db7cf7487e9.zip
[fix] Removes ``/>`` ending tags for void HTML elements
Removes ``/>`` ending tags for void elements [1] and replaces them with ``>``. Part of the larger cleanup to cleanup invalid HTML throughout the codebase [2]. [1] https://html.spec.whatwg.org/multipage/syntax.html#void-elements [2] https://github.com/searxng/searxng/issues/3793
Diffstat (limited to 'searx/templates/simple/categories.html')
-rw-r--r--searx/templates/simple/categories.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/simple/categories.html b/searx/templates/simple/categories.html
index 698c857e9..2bef2f8f6 100644
--- a/searx/templates/simple/categories.html
+++ b/searx/templates/simple/categories.html
@@ -16,7 +16,7 @@
{%- if not search_on_category_select or not display_tooltip -%}
{%- for category in categories -%}
<div class="category category_checkbox">{{- '' -}}
- <input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}"{% if category in selected_categories %} checked="checked"{% endif %}/>
+ <input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}"{% if category in selected_categories %} checked="checked"{% endif %}>
<label for="checkbox_{{ category|replace(' ', '_') }}" class="tooltips">
{{- icon_big(category_icons[category]) if category in category_icons else icon_big('globe-outline') -}}
<div class="category_name">{{- _(category) -}}</div>