Skip to content
This repository has been archived by the owner on Oct 17, 2021. It is now read-only.

RawHTML

mattt edited this page Jan 14, 2021 · 4 revisions

RawHTML

Raw HTML.

public final class RawHTML: Node

From the CommonMark Spec:

Text between < and > that looks like an HTML tag is parsed as a raw HTML tag and will be rendered in HTML without escaping. Tag and attribute names are not limited to current HTML tags, so custom tags (and even, say, DocBook tags) may be used.

Inheritance

Node, Visitable

Initializers

init(literal:)

public convenience init(literal: String?)

init(_:)

public convenience init(_ closure: () -> String)

Methods

accept(visitor:)

public func accept<T: Visitor>(visitor: T)
Clone this wiki locally