From 23b66b9b1f461ba237391598c78b277728ef18c1 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sat, 25 Feb 2023 11:29:23 +0100 Subject: [PATCH] Escaped quote on field values. --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 764c1b1..2f3bd8c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -54,7 +54,7 @@ impl Field { FType::Text => { f.tmpl.add_raw_template("field", r#"{% if label %}
{% endif %} - 0 %}maxlength="{{ maxlen }}"{% endif %} {% if invisible %}style="display: none;"{% endif %}/> + 0 %}maxlength="{{ maxlen }}"{% endif %} {% if invisible %}style="display: none;"{% endif %}/> {% if help %}
{{ help }}
{% endif %} {% if label %}
{% endif %}"#); }, @@ -63,7 +63,7 @@ impl Field { f.tmpl.add_raw_template("field", r#"{% if label %}
{% endif %} - + {% if help %}
{{ help }}
{% endif %} {% if label %}
{% endif %}"#); }, -- 2.49.0