testmarkdowndocumentation

Markdown Style Test

June 1, 2024

Heading Level 1

This is the largest heading

Heading Level 2

Second largest heading

Heading Level 3

Medium heading

Heading Level 4

Smaller heading

Heading Level 5

Even smaller heading

Heading Level 6

Smallest heading

Text Formatting

Bold text is written with double asterisks

Italic text is written with single asterisks

Bold and italic text combines both

Strikethrough text uses double tildes

Lists

Unordered List

  • Item 1
  • Item 2
    • Nested item 2.1
    • Nested item 2.2
  • Item 3

Ordered List

  1. First item
  2. Second item
    1. Nested item 2.1
    2. Nested item 2.2
  3. Third item

Link to Zenith Website

Example Image

Code

Inline code: const greeting = 'Hello World';

Code block with syntax highlighting:

function greet(name) {
  return `Hello, ${name}!`;
}

const result = greet('Zenith User');
console.log(result);

Blockquotes

This is a blockquote.

It can span multiple paragraphs.

And it can be nested.

Tables

FeatureSupportedNotes
HeadingsYesSix levels
ListsYesOrdered and unordered
CodeYesInline and blocks
TablesYesWith alignment options

Horizontal Rule

Above this line


Below this line

Task Lists

  • Completed task
  • Incomplete task
  • Another task to do

Combining Elements

A heading in a blockquote

  • With a list
  • And some formatting
// And even code
const amazing = true;