+ Folded content
+
+Use a `` HTML tag:
+
+```md
+
+ Fold/Open
+ Folded content
+
+```
+
+
+
+
+ Include images
+
+Add an image:
+
+```md
+
+![description][reference name]
+```
+
+Control width and height:
+
+```md
+
+```
+
+Align in the center:
+
+```md
+
+```
+
+
+
+
+ Math
+
+Inline expressions: surround the expression with `$`.
+
+```md
+$\sum_{n=1}^{10} n^2$
+```
+
+$\sum_{n=1}^{10} n^2$
+
+Block expressions: surround the expression with `$$`.
+
+```md
+$$\sum_{n=1}^{10} n^2$$
+```
+
+$$\sum_{n=1}^{10} n^2$$
+
+
+
+
+ Syntax highlighting in code blocks
+
+Specify the language right after the code block's opening:
+
+```ruby
+def index
+ puts "hello world"
+end
+```
+
+```csharp
+private void index(){
+ MessageBox.Show("hello world");
+}
+```
+
+
+
+
+ To do lists
+
+Use `[ ]` after the bullet point or numbered list character to switch them for an empty ballot box, and `[x]` for a
+checked one.
+
+1. [ ] 1
+1. [ ] 2
+ - [x] a
+
+- [x] Point 3
+
+
+
## Troubleshooting
### Escape the backtick character
@@ -159,7 +176,7 @@ Render it in an inline code block using double backticks instead of single backt
Alternatively, use a code block. This will wrap everything in a `` HTML tag.
To do this, either indent 4 spaces to start a code block, or use fenced code blocks if supported.
-### VS Code and mermaid graph in Markdown preview
+### Render mermaid.js graphs in VS Code's Markdown preview
Install and enable [`bierner.markdown-mermaid`][bierner.markdown-mermaid]'s extension.