Skip to main content

html2md_rs/
lib.rs

1#![forbid(unsafe_code)]
2#![cfg_attr(
3    not(test),
4    deny(
5        clippy::expect_used,
6        clippy::indexing_slicing,
7        clippy::panic,
8        clippy::unreachable,
9        clippy::unwrap_used
10    )
11)]
12#![warn(missing_docs)]
13#![doc = include_str!("../README.md")]
14
15mod escape;
16pub mod parser;
17pub mod structs;
18pub mod to_md;