We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b63cc5c commit 28ce0b9Copy full SHA for 28ce0b9
tests/rustdoc/strikethrough-in-summary.rs
tests/rustdoc/test-strikethrough.rs
@@ -1,6 +1,13 @@
1
#![crate_name = "foo"]
2
3
-// @has foo/fn.f.html
4
-// @has - //del "Y"
5
-/// ~~Y~~
+// Test that strikethrough works with single and double tildes and that it shows up on
+// the item's dedicated page as well as the parent module's summary of items.
+
6
+// @has foo/index.html //del 'strike'
7
+// @has foo/index.html //del 'through'
8
9
+// @has foo/fn.f.html //del 'strike'
10
+// @has foo/fn.f.html //del 'through'
11
12
+/// ~~strike~~ ~through~
13
pub fn f() {}
0 commit comments