From f98836b85ce71157adaa10c9d5ef5c0ee527e67a Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Tue, 19 Jul 2022 11:03:46 +0200 Subject: Remove unneeded `rust` language flags --- src/lib.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs index 196eb4e..4dc15e6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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("
\n\n# Hello, world!\n\n
", &Options { -- cgit