BlockQuote
class BlockQuote(val type: BlockQuote.Type? = null, val attribution: InlineContent? = null, val children: List<Node>) : NestableNode
A block quote.
Parameters
type
information type. If null
, the quote does not have a particular type
attribution
additional author or source of the quote
children
content
Constructors
Link copied to clipboard
constructor(type: BlockQuote.Type? = null, attribution: InlineContent? = null, children: List<Node>)
Types
Link copied to clipboard
Type a BlockQuote might have.
Functions
Link copied to clipboard
Returns a sequence of all nodes in the tree, where this is the root node. The sequence is generated by traversing the tree in depth-first order. The root node is excluded from the sequence.
Link copied to clipboard