//! Content method for SourceState.
usecrate::widgets::markdown_widget::state::source_state::SourceState;implSourceState{/// Get the current content from the source.
////// # Returns
////// The markdown content, or `None` if no source is set.
pubfncontent(&self)->Option<&str>{self.source.as_ref().map(|s|s.content())}}