Back to Blog
LandJob Team

Markdown Rendering Test Suite

MarkdownTestTypography

Markdown Rendering Test Suite

This article is designed to test all standard Markdown syntax and GitHub Flavored Markdown (GFM) features supported by our blog system.

Typography

Headings

H1 Heading

H2 Heading

H3 Heading

H4 Heading

H5 Heading
H6 Heading

Text Formatting

  • Bold text
  • Italic text
  • Bold and Italic text
  • Strikethrough text
  • Inline Code
  • Link to Google

Blockquotes

This is a blockquote.

It can span multiple lines.

And can be nested.

Lists

Unordered List

  • Item 1
  • Item 2
    • Sub-item 2.1
    • Sub-item 2.2
  • Item 3

Ordered List

  1. First item
  2. Second item
    1. Sub-item 2.1
    2. Sub-item 2.2
  3. Third item

Task List (GFM)

  • Completed task
  • Incomplete task
  • Another incomplete task

Code

Code Blocks

JAVASCRIPT
function greet(name) { console.log(`Hello, ${name}!`); } greet('World');
PYTHON
def fibonacci(n): if n <= 1: return n return fibonacci(n-1) + fibonacci(n-2) print(fibonacci(10))
CSS
.container { display: flex; justify-content: center; align-items: center; }

Tables (GFM)

FeatureSupportNotes
TablesYesPipes and dashes
AlignmentYesLeft, center, right
MarkdownYesBold inside cells

Media

Images

Placeholder Image

Links

ResumePro Home

Horizontal Rule


HTML Support (if enabled)

Click to expand This content is hidden by default.

Ctrl + C

Mathematical Formulas (if enabled)

$E = mc^2$

Footnotes (if enabled)

Here is a simple footnote1.

Footnotes

  1. This is the footnote text.