//! Constructor for ExpandableState.
usecrate::widgets::markdown_widget::state::expandable_state::ExpandableState;usestd::collections::HashMap;implExpandableState{/// Create a new expandable state with defaults.
pubfnnew()->Self{Self{
content:HashMap::new(),
default_max_lines:3,}}}