summaryrefslogtreecommitdiffstats
path: root/vendor/mdbook/test_book/src/individual/code.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/mdbook/test_book/src/individual/code.md')
-rw-r--r--vendor/mdbook/test_book/src/individual/code.md31
1 files changed, 31 insertions, 0 deletions
diff --git a/vendor/mdbook/test_book/src/individual/code.md b/vendor/mdbook/test_book/src/individual/code.md
new file mode 100644
index 000000000..26f2d564c
--- /dev/null
+++ b/vendor/mdbook/test_book/src/individual/code.md
@@ -0,0 +1,31 @@
+# Code
+
+This section only does simple code blocks and inline code, detailed syntax highlight and stuff is in the languages section
+
+---
+
+```
+This is a codeblock
+```
+
+---
+
+This line contains `inline code`
+
+---
+
+````
+escaping ``` in ```, fun, isn't is?
+````
+
+---
+
+```bash,editable
+This is an editable codeblock
+```
+
+---
+
+```rust
+// This links to a playpen
+```