feat: Created the raw_markdown configuration flag

This commit is contained in:
2026-07-22 11:03:27 -06:00
parent 393ed16963
commit ed7ad36475
7 changed files with 33 additions and 1 deletions
+4
View File
@@ -202,6 +202,8 @@ pub struct RenderOptions {
pub theme: Option<Theme>,
pub wrap: Option<String>,
pub wrap_code: bool,
#[allow(dead_code)]
pub raw_markdown: bool,
pub truecolor: bool,
}
@@ -210,12 +212,14 @@ impl RenderOptions {
theme: Option<Theme>,
wrap: Option<String>,
wrap_code: bool,
raw_markdown: bool,
truecolor: bool,
) -> Self {
Self {
theme,
wrap,
wrap_code,
raw_markdown,
truecolor,
}
}