From e701df09a9f57ac32a3f1dc2a8f10e9b58367cd9 Mon Sep 17 00:00:00 2001 From: totoro Date: Tue, 26 Oct 2021 23:23:28 +0200 Subject: [PATCH] [-] remove unused label from HTML_Off_form. This break the type HTML_Off_form, all source use this type must be recompiled [+] add some helper in html_tag to use String directly instead of "text" --- web/making_a_web_site.anubis | 33 +++++++++++++++++++++++---------- web/types/making_a_web_site.anubis | 2 +- 2 files changed, 24 insertions(+), 11 deletions(-) diff --git a/web/making_a_web_site.anubis b/web/making_a_web_site.anubis index 0706dbf..5a37743 100644 --- a/web/making_a_web_site.anubis +++ b/web/making_a_web_site.anubis @@ -1473,6 +1473,7 @@ public define HTML_Off_Form h6(HTML_Off_Form content) //
public define HTML_Off_Form hr = html_void_tag("hr", []). public define HTML_Off_Form hr(List(CoreAttrs) attrs) = html_void_tag("hr", attrs). +public define HTML_Off_Form hr(CoreAttrs attr) = html_void_tag("hr", [attr]). //