diff options
| author | Polesznyák Márk <contact@pml68.dev> | 2025-10-20 01:31:15 +0200 |
|---|---|---|
| committer | Polesznyák Márk <contact@pml68.dev> | 2025-10-20 01:31:15 +0200 |
| commit | 2a6e3a98a2452045622a4746558ec46cdfa8fc1d (patch) | |
| tree | 195dd69196b6828e9ca9ad8d4267518437c361fc /src/lib.rs | |
| parent | chore: add a to-do list (diff) | |
| download | iced_selection-2a6e3a98a2452045622a4746558ec46cdfa8fc1d.tar.gz | |
feat(wip): add markdown support
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |
