Default Theme Example

This document showcases the features available in the default theme. It provides a clean, readable base for standard Markdown content.

Text Formatting

This is a paragraph with bold text, italic text, and inline code. Links like StyleMD Repo are also styled.

You can create ordered and unordered lists:

  1. Ordered item 1
  2. Ordered item 2
    1. Nested ordered item
  3. Ordered item 3

Code Blocks

<span class="code-line">// Function to greet</span>
<span class="code-line">function greet(name) {</span>
<span class="code-line">  console.log(`Hello, ${name}!`); // Uses template literal</span>
<span class="code-line">}</span>
<span class="code-line">greet('StyleMD User');</span>

Blockquotes

This is a blockquote. It's useful for highlighting important information or quotes. A longer quote might wrap onto multiple lines, demonstrating the left border and padding.

Tables

Feature Supported Notes
Headings Yes Standard HTML tags
Lists Yes Ordered and unordered
Code Blocks Yes With basic syntax styling
Inline Code Yes Highlighted background
Blockquotes Yes Indented with border
Tables Yes Standard HTML table
Horizontal Rule Yes Simple line separator

This theme provides a solid foundation for various types of documentation.