Markdown Example

Jan. 01, 1980 / #example

Generated by Gemini3 πŸ˜„

Text Basics

You can make text bold or italic. You can also use strikethrough or highlight inline code variables.

Headings

Acknowledge that we recommend using h1 (in markdown, single #) only for the title (that is, the title attribute in front matter). The titles in post content should start with h2.

h3

h4

h5 and h6 are not recommended to use. (Actually I didn't implement a style for them lol) Try use lists to replace them.

Lists & Checkboxes

Unordered List:

  • Apple
  • Banana
    • Cavendish
    • Plantain
  • Cherry

Ordered List:

  1. Initialize repo
  2. Stage files
  3. Commit

Task List:

  • Draft content
  • Review for typos
  • Publish

Click here for Google

Placeholder Image

Code Blocks

Python:

def greet(name):
    return f"Hello, {name}!"

JavaScript:

const numbers = [1, 2, 3];
numbers.forEach(num => console.log(num));

Tables

FeatureSupportedNotes
TablesYesPipes and dashes
AlignmentYesColons define it
ComplexityLowKeep it simple

Math Formulas (LaTeX)

Markdown renders math using LaTeX syntax. Refer to the configuration post for how to use it.

Inline: The mass-energy equivalence is $e=mc^2$.

Block (Display):

$$
f(x)=\int_{-\infty}^\infty \hat f(\xi)e^{2\pi i\xi x}d\xi
$$

Blockquotes

"Code is like humor. When you have to explain it, it’s bad." β€” Cory House

GitHub-Style Alerts

This is a note useful for the reader.

Here is a helpful tip to improve your workflow.

This information is crucial for correct functionality.

Be careful! This action might have side effects.

This action causes data loss. Proceed with extreme care.

Footnotes

Here is a sentence with a footnote reference1.

Horizontal Rules


(The line above is a horizontal rule)

  1. This is the actual footnote content at the bottom of the page. ↩