ratatui-toolkit 0.2.6

DEPRECATED: this crate was renamed to `ratkit`. Please migrate to `ratkit`.
Documentation
//! Enable or disable the statusline.

use crate::widgets::markdown_widget::widget::MarkdownWidget;

impl<'a> MarkdownWidget<'a> {
    /// Set whether to show the statusline.
    ///
    /// # Arguments
    ///
    /// * `show` - Whether to show the statusline
    ///
    /// # Returns
    ///
    /// Self for method chaining.
    pub fn show_statusline(mut self, show: bool) -> Self {
        self.show_statusline = show;
        self
    }
}