// blog post

Rendering Test

A rendering test to ensure LaTeX and Markdown render properly.

created May 8, 2026 updated May 10, 2026 3 min read

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

  1. First item
  2. Second item
    1. Sub item one
    2. Sub item two
  3. 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 AColumn BColumn C
Cell oneCell twoCell three
Cell fourCell fiveCell six
Cell sevenCell eightCell nine

7. Images

Example landscape image

Another example image


8. Inline LaTeX

Euler's identity: eiπ+1=0e^{i\pi} + 1 = 0

Quadratic formula: x=b±b24ac2ax = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}

Pythagorean theorem: a2+b2=c2a^2 + b^2 = c^2

Bayes' theorem: P(AB)=P(BA)P(A)P(B)P(A|B) = \frac{P(B|A)P(A)}{P(B)}

Standard deviation: σ=1Ni=1N(xiμ)2\sigma = \sqrt{\frac{1}{N}\sum_{i=1}^{N}(x_i - \mu)^2}


9. Block LaTeX

ex2dx=π\int_{-\infty}^{\infty} e^{-x^2} \, dx = \sqrt{\pi} ×B=μ0J+μ0ε0Et\nabla \times \mathbf{B} = \mu_0\mathbf{J} + \mu_0\varepsilon_0\frac{\partial \mathbf{E}}{\partial t} f^(ξ)=f(x)e2πixξdx\hat{f}(\xi) = \int_{-\infty}^{\infty} f(x) e^{-2\pi i x \xi} \, dx (abcd)(efgh)=(ae+bgaf+bhce+dgcf+dh)\begin{pmatrix} a & b \\ c & d \end{pmatrix} \begin{pmatrix} e & f \\ g & h \end{pmatrix} = \begin{pmatrix} ae+bg & af+bh \\ ce+dg & cf+dh \end{pmatrix} ex=n=0xnn!=1+x+x22!+x33!+e^x = \sum_{n=0}^{\infty} \frac{x^n}{n!} = 1 + x + \frac{x^2}{2!} + \frac{x^3}{3!} + \cdots

10. Mixed Content

Paragraph with f(x)=x2f(x) = x^2 inline math alongside inline code and bold text all together.

Blockquote with inline math: the area of a circle is A=πr2A = \pi r^2.

ConceptFormulaNotes
EntropyH=plogpH = -\sum p \log pInformation theory
EnergyE=mc2E = mc^2Relativity
ForceF=maF = maNewtonian mechanics