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 fe0a415 commit 2823475Copy full SHA for 2823475
src/doc/rustdoc/src/what-is-rustdoc.md
@@ -98,21 +98,21 @@ documentation for them as well!
98
`rustdoc` can also generate HTML from standalone Markdown files. Let's
99
give it a try: create a `README.md` file with these contents:
100
101
-```text
102
- # Docs
+````text
+# Docs
103
104
- This is a project to test out `rustdoc`.
+This is a project to test out `rustdoc`.
105
106
- [Here is a link!](https://www.rust-lang.org)
+[Here is a link!](https://www.rust-lang.org)
107
108
- ## Subheading
+## Subheading
109
110
- ```rust
111
- fn foo() -> i32 {
112
- 1 + 1
113
- }
114
- ```
+```rust
+fn foo() -> i32 {
+ 1 + 1
+}
115
```
+````
116
117
And call `rustdoc` on it:
118
0 commit comments