class Crst::Strong

Overview

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")])

Defined in:

crst/nodes.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(children : Array(Crst::Node)) #

[View source]

Instance Method Detail

def children : Array(Crst::Node) #

Child nodes (typically Text nodes)


[View source]
def children=(children : Array(Crst::Node)) #

Child nodes (typically Text nodes)


[View source]