class

Crst::Strong

Inherits Crst::Node < Reference < Object

Strongly emphasized text node (typically rendered in bold)

Created from RST text using double asterisks: strong text Can contain nested inline nodes for mixed formatting.

Example:

# RST: "**strong text**"
strong = Crst::Strong.new([Crst::Text.new("strong text")])

Constructors

new(children : Array(Crst::Node))
Source

Instance methods

children

Child nodes (typically Text nodes)

Source
children=(children : Array(Crst::Node))

Child nodes (typically Text nodes)

Source