From 89f66119ee54426cd90b8813ee3fd812c23fc2a1 Mon Sep 17 00:00:00 2001 From: Aire-One Date: Sun, 23 Oct 2022 21:07:49 +0200 Subject: [PATCH] build(types): fix scan_html indentation level --- types/web_sanitize/query/scan_html.d.tl | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/types/web_sanitize/query/scan_html.d.tl b/types/web_sanitize/query/scan_html.d.tl index 05f0ae2..252bf67 100644 --- a/types/web_sanitize/query/scan_html.d.tl +++ b/types/web_sanitize/query/scan_html.d.tl @@ -1,14 +1,14 @@ local record Scanner record HTMLNode - tag: string - type: string | nil - num: number - self_closing: boolean | nil - attr: table - outer_html: function(self: HTMLNode): string - inner_html: function(self: HTMLNode): string - inner_text: function(self: HTMLNode): string - -- TODO : add replacement methods + tag: string + type: string | nil + num: number + self_closing: boolean | nil + attr: table + outer_html: function(self: HTMLNode): string + inner_html: function(self: HTMLNode): string + inner_text: function(self: HTMLNode): string + -- TODO : add replacement methods end record NodeStack