aboutsummaryrefslogtreecommitdiff
path: root/src/markdown.rs
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-06-26 11:41:52 +0200
committerpml68 <contact@pml68.dev>2025-06-26 11:41:52 +0200
commit602565f98f3a22fa1c39e054c6a88b3c31a36599 (patch)
tree8aea60f9cfdc48a8e04651a7e809bb70ef4bd712 /src/markdown.rs
downloadiced_material-602565f98f3a22fa1c39e054c6a88b3c31a36599.tar.gz
feat: initial commit
Diffstat (limited to '')
-rw-r--r--src/markdown.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/markdown.rs b/src/markdown.rs
new file mode 100644
index 0000000..bc14ffe
--- /dev/null
+++ b/src/markdown.rs
@@ -0,0 +1,10 @@
+use iced_widget::markdown::Catalog;
+
+use super::{Theme, container};
+
+impl Catalog for Theme {
+ fn code_block<'a>() -> <Self as iced_widget::container::Catalog>::Class<'a>
+ {
+ Box::new(container::surface_container_highest)
+ }
+}