summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Milligan <tom.milligan@uipath.com>2023-09-09 08:25:05 +0100
committerTom Milligan <tommilligan@users.noreply.github.com>2023-09-09 08:28:21 +0100
commit4dad5a86c8722a5a5d7cd45c97cfd8ce629bc6af (patch)
tree7e46b142f3e3de12b851396f5add5bc9f114fc33
parent7e774f46553377352dda5e7b0e55fd1873f9acc2 (diff)
chore: fix clippy
-rw-r--r--src/markdown.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/markdown.rs b/src/markdown.rs
index fb811e3..a685d8e 100644
--- a/src/markdown.rs
+++ b/src/markdown.rs
@@ -418,7 +418,7 @@ Will have bonus classnames
```
"#;
- let expected = r##"
+ let expected = r#"
<div id="admonition-default" class="admonition note">
<div>
@@ -427,7 +427,7 @@ Will have bonus classnames
</div>
</div>
-"##;
+"#;
assert_eq!(expected, prep(content));
}
@@ -684,7 +684,7 @@ A simple admonition.
Text
"#;
- let expected = r##"# Chapter
+ let expected = r#"# Chapter
<div id="admonition-default" class="admonition note">
<div>
@@ -694,7 +694,7 @@ A simple admonition.
</div>
</div>
Text
-"##;
+"#;
let preprocess_result = preprocess(
content,
@@ -718,7 +718,7 @@ A simple admonition.
Text
"#;
- let expected = r##"# Chapter
+ let expected = r#"# Chapter
<div id="admonition-default" class="admonition note">
<div>
@@ -728,7 +728,7 @@ A simple admonition.
</div>
</div>
Text
-"##;
+"#;
assert_eq!(expected, prep(content));
}