// blog post
Rendering Test
A rendering test to ensure LaTeX and Markdown render properly.
Rendering Test
A rendering test to ensure LaTeX and Markdown render properly.
1. Typography
Normal paragraph with bold, italic, bold italic, strikethrough, inline code, and a link. Also superscript and subscript.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
2. Headings
H1 - The Quick Brown Fox
H2 - Jumps Over
H3 - The Lazy Dog
H4 - Somewhere In
H5 - A Field
H6 - Far Away
3. Lists
Unordered
- First item
- Second item
- Nested first
- Nested second
- Deeply nested
- Third item
Ordered
- First item
- Second item
- Sub item one
- Sub item two
- Third item
Task List
- Completed task one
- Completed task two
- Incomplete task one
- Incomplete task two
4. Blockquotes
A single line blockquote with some example text inside it.
Outer quote text
Inner quote text
Deeply nested quote text
5. Code
Inline
Use example command --flag to do something. Run another command --verbose to see more output.
Python
def fizzbuzz(n):
for i in range(1, n + 1):
if i % 15 == 0:
print("FizzBuzz")
elif i % 3 == 0:
print("Fizz")
elif i % 5 == 0:
print("Buzz")
else:
print(i)
fizzbuzz(20)TypeScript
function fizzbuzz(n: number): string[] {
return Array.from({ length: n }, (_, i) => {
i += 1;
if (i % 15 === 0) return "FizzBuzz";
if (i % 3 === 0) return "Fizz";
if (i % 5 === 0) return "Buzz";
return String(i);
});
}
console.log(fizzbuzz(20));6. Tables
| Column A | Column B | Column C |
|---|---|---|
| Cell one | Cell two | Cell three |
| Cell four | Cell five | Cell six |
| Cell seven | Cell eight | Cell nine |
7. Images


8. Inline LaTeX
Euler's identity:
Quadratic formula:
Pythagorean theorem:
Bayes' theorem:
Standard deviation:
9. Block LaTeX
10. Mixed Content
Paragraph with inline math alongside inline code and bold text all together.
Blockquote with inline math: the area of a circle is .
| Concept | Formula | Notes |
|---|---|---|
| Entropy | Information theory | |
| Energy | Relativity | |
| Force | Newtonian mechanics |