Paragraph - SwiftDocOrg/CommonMark GitHub Wiki
A paragraph.
public final class Paragraph: NodeFrom the CommonMark Spec:
A sequence of non-blank lines that cannot be interpreted as other kinds of blocks forms a paragraph. The contents of the paragraph are the result of parsing the paragraph’s raw content as inlines. The paragraph’s raw content is formed by concatenating the lines and removing initial and final whitespace.
Node, Visitable, InlineConvertible
public convenience init(text string: String, replacingNewLinesWithBreaks: Bool = true)public convenience init(children: [Inline & Node] = [])public convenience init(_ builder: () -> InlineConvertible)public convenience init(_ closure: () -> String)var inlineValue: [Inline & Node]public func accept<T: Visitor>(visitor: T)