build(types): fix scan_html indentation level

This commit is contained in:
Aire-One 2022-10-23 21:07:49 +02:00
parent 6e2ac5af5d
commit 89f66119ee
1 changed files with 9 additions and 9 deletions

View File

@ -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