From 2a6e3a98a2452045622a4746558ec46cdfa8fc1d Mon Sep 17 00:00:00 2001 From: Polesznyák Márk Date: Mon, 20 Oct 2025 01:31:15 +0200 Subject: feat(wip): add markdown support --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/lib.rs') 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; -- cgit v1.2.3