diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-04 12:16:51 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-04 12:16:58 +0200 |
commit | faca28020f4894bdfcf5a4b164ebbc75864d8776 (patch) | |
tree | 93377413ae8c355e2d804f7e700241693b228e70 /src/construct/mod.rs | |
parent | e1cae8c705e66669d043f5269e9f58c09c7b0eaa (diff) | |
download | markdown-rs-faca28020f4894bdfcf5a4b164ebbc75864d8776.tar.gz markdown-rs-faca28020f4894bdfcf5a4b164ebbc75864d8776.tar.bz2 markdown-rs-faca28020f4894bdfcf5a4b164ebbc75864d8776.zip |
Add support for attention (emphasis, strong)
Diffstat (limited to '')
-rw-r--r-- | src/construct/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/construct/mod.rs b/src/construct/mod.rs index 9e3dfb0..66b2a3c 100644 --- a/src/construct/mod.rs +++ b/src/construct/mod.rs @@ -14,7 +14,7 @@ //! //! The following constructs are found in markdown: //! -//! * attention (strong, emphasis) +//! * [attention (strong, emphasis)][attention] //! * [autolink][] //! * [blank line][blank_line] //! * block quote @@ -61,6 +61,7 @@ //! example `ascii_punctuation` refers to //! [`char::is_ascii_punctuation`][char::is_ascii_punctuation]. +pub mod attention; pub mod autolink; pub mod blank_line; pub mod character_escape; |