Convert ElmHtml to string.
nodeRecordToString : FormatOptions -> ElmHtml.InternalTypes.NodeRecord msg -> List String
Convert a node record to a string. This basically takes the tag name, then pulls all the facts into tag declaration, then goes through the children and nests them under this one
nodeToString : ElmHtml.InternalTypes.ElmHtml msg -> String
Convert a given html node to a string based on the type
nodeToStringWithOptions : FormatOptions -> ElmHtml.InternalTypes.ElmHtml msg -> String
same as nodeToString, but with options
{ indent : Basics.Int
, newLines : Basics.Bool
}
Formatting options to be used for converting to string
defaultFormatOptions : FormatOptions
default formatting options