diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-19 11:03:46 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-19 11:03:46 +0200 |
commit | f98836b85ce71157adaa10c9d5ef5c0ee527e67a (patch) | |
tree | 45b1f610ed4e627962b3f1df464f24d95d5fbefa /src/lib.rs | |
parent | f18bcde990944af345ab8d1dedd99d826708792b (diff) | |
download | markdown-rs-f98836b85ce71157adaa10c9d5ef5c0ee527e67a.tar.gz markdown-rs-f98836b85ce71157adaa10c9d5ef5c0ee527e67a.tar.bz2 markdown-rs-f98836b85ce71157adaa10c9d5ef5c0ee527e67a.zip |
Remove unneeded `rust` language flags
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -270,7 +270,7 @@ pub struct Options { /// /// ## Examples /// - /// ```rust + /// ``` /// use micromark::{micromark, micromark_with_options, Options}; /// /// // micromark is safe by default: @@ -299,7 +299,7 @@ pub struct Options { /// /// ## Examples /// - /// ```rust + /// ``` /// use micromark::{micromark, micromark_with_options, Options}; /// /// // micromark is safe by default: @@ -336,7 +336,7 @@ pub struct Options { /// /// ## Examples /// - /// ```rust + /// ``` /// use micromark::{micromark, micromark_with_options, Options, LineEnding}; /// /// // micromark uses `\n` by default: @@ -364,7 +364,7 @@ pub struct Options { /// /// ## Examples /// - /// ```rust + /// ``` /// use micromark::{micromark, micromark_with_options, Options, Constructs}; /// /// // micromark follows CommonMark by default: @@ -395,7 +395,7 @@ pub struct Options { /// /// ## Examples /// -/// ```rust +/// ``` /// use micromark::micromark; /// /// let result = micromark("# Hello, world!"); @@ -411,7 +411,7 @@ pub fn micromark(value: &str) -> String { /// /// ## Examples /// -/// ```rust +/// ``` /// use micromark::{micromark_with_options, Options}; /// /// let result = micromark_with_options("<div>\n\n# Hello, world!\n\n</div>", &Options { |