aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorPolesznyák Márk <contact@pml68.dev>2025-10-20 01:31:15 +0200
committerPolesznyák Márk <contact@pml68.dev>2025-10-20 01:31:15 +0200
commit2a6e3a98a2452045622a4746558ec46cdfa8fc1d (patch)
tree195dd69196b6828e9ca9ad8d4267518437c361fc /src/lib.rs
parentchore: add a to-do list (diff)
downloadiced_selection-2a6e3a98a2452045622a4746558ec46cdfa8fc1d.tar.gz
feat(wip): add markdown support
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index ce5a124..a4c6a44 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -2,11 +2,13 @@
//!
//! [`Paragraph`]: https://docs.iced.rs/iced_graphics/text/paragraph/struct.Paragraph.html
+pub mod markdown;
pub mod selection;
pub mod text;
use iced_widget::core;
use iced_widget::graphics::text::Paragraph;
+pub use markdown::view as markdown;
#[doc(no_inline)]
pub use text::Text;