Markdown Reference
A test page for the MDX processor.
This is a reference page to see all Markdown elements and styling rendered. All headings have an attached anchor link.
ℹ️ See The Stack for all tools powering this website.
Text Formatting
Code
## Text Formatting
This is a paragraph. **Bold**, _italics_, ~~strikethrough~~, and [links](#text-formatting) as usual.
A blockquote is below.
> Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus.
Footnotes can be defined too [^a].
[^a]: This is a footnote.
Emojis are supported :heart:.
Images are rendered with `figure` and `figcaption`.
![Caption is the alt text.](https://octodex.github.com/images/minion.png)
This is a paragraph. Bold, italics, strikethrough, and links as usual.1
A blockquote is below.
Lorem ipsum dolor sit amet, graecis denique ei vel, at duo primis mandamus.
Footnotes can be defined too 2.
Emojis are supported ❤️.
Images are rendered with figure
and figcaption
.
Hints
Code
!> :white_check_mark: This is a note. $\KaTeX$ works too.
?> :warning: This is a warning.
x> :x: This is an error.
✅ This is a note. works too.
⚠️ This is a warning.
❌ This is an error.
Lists
Unordered
Code
### Unordered
- Lorem ipsum dolor sit amet
- Nulla volutpat aliquam velit
- Phasellus iaculis neque
- Purus sodales ultricies
- Lorem ipsum dolor sit amet
- Nulla volutpat aliquam velit
- Phasellus iaculis neque
- Purus sodales ultricies
Ordered
Code
### Ordered
1. Lorem ipsum dolor sit amet
2. Consectetur adipiscing elit
3. Integer molestie lorem at massa
- Lorem ipsum dolor sit amet
- Consectetur adipiscing elit
- Integer molestie lorem at massa
Tables
Code
| Left Aligned Option | Center Aligned Description |
| :------------------ | :-----------------------------------------------------------------------: |
| data | path to data files to supply the data that will be passed into templates. |
| engine | engine to be used for processing templates. Handlebars is the default. |
| ext | extension to be used for dest files. |
Left Aligned Option | Center Aligned Description |
---|---|
data | path to data files to supply the data that will be passed into templates. |
engine | engine to be used for processing templates. Handlebars is the default. |
ext | extension to be used for dest files. |
Code Highlighting
Code
Inline code looks like `<p>Inline</p>`.
\```js
console.log('Hello World');
\```
Inline code looks like <p>Inline</p>
.
console.log("Hello World");
Math via KaTeX
Code
$$
\tag{1} p(\theta \mid \mathcal{D}) = \frac{p(\mathcal{D}\mid \theta)p(\theta)}{p(\mathcal{D})}
$$
Block equations are supported via .