Markdown Reference

A test page for the MDX processor.

2 mins
⚙ meta

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.

Caption is the alt text.
Caption is the alt text.

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. KaTeX\KaTeX 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

Ordered🔗

Code
### Ordered

1. Lorem ipsum dolor sit amet
2. Consectetur adipiscing elit
3. Integer molestie lorem at massa
  1. Lorem ipsum dolor sit amet
  2. Consectetur adipiscing elit
  3. 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 OptionCenter Aligned Description
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension 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 KaTeX\KaTeX.

p(θâˆŖD)=p(DâˆŖθ)p(θ)p(D)(1)\tag{1} p(\theta \mid \mathcal{D}) = \frac{p(\mathcal{D}\mid \theta)p(\theta)}{p(\mathcal{D})}

Footnotes🔗

  1. Comments should lazily load below. ↩

  2. This is a footnote. ↩