ratatui_toolkit/widgets/markdown_widget/state/collapse_state/methods/
collapse_section.rs

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