ratatui_toolkit/widgets/markdown_widget/state/collapse_state/methods/expand_section.rs
1//! Expand section method for CollapseState.
2
3use crate::widgets::markdown_widget::state::collapse_state::CollapseState;
4
5impl CollapseState {
6 /// Expand a section.
7 ///
8 /// # Arguments
9 ///
10 /// * `section_id` - The ID of the section to expand.
11 pub fn expand_section(&mut self, section_id: usize) {
12 self.sections.insert(section_id, false);
13 }
14}