use Paragraph;
use Table;
/// The document body, containing all block-level elements.
/// A block-level element in the document body (or in a table cell).
// `Paragraph` is ~320 bytes larger than `Table`. Boxing would force
// a heap allocation on the hot parse path for every paragraph; we
// accept the stack size in exchange for keeping parsing alloc-free.