abstract class markdown::Block

sys::Obj
  markdown::Node
    markdown::Block

@Js

Source

A block node.

We can think of a document as a sequence of blocks - structural elements like paragraphs, block quotations, lists, headings, rules, and code blocks. Some blocks contain other blocks; others contain inline content (text, images, code spans, etc.).

parent

virtual override Block? parent()

Source

setParent

protected virtual override Void setParent(Node? p)

Source