There was an error while loading. Please reload this page.
An HTML block.
public final class HTMLBlock: Node
From the CommonMark Spec:
4.6 HTML blocks An HTML block is a group of lines that is treated as raw HTML (and will not be escaped in HTML output).
An HTML block is a group of lines that is treated as raw HTML (and will not be escaped in HTML output).
Node, Visitable
Node
Visitable
init(literal:)
public convenience init(literal: String? = nil)
init(literal:children:)
public convenience init(literal: String, children: [Inline & Node] = [])
init(_:)
public convenience init(_ closure: () -> String)
init(_:_:)
public convenience init(_ literal: String, _ builder: () -> InlineConvertible)
accept(visitor:)
public func accept<T: Visitor>(visitor: T)