Alice Johnson

Getting Started with Markdown

By Alice Johnson||Tools & Productivity

Getting Started with Markdown

Markdown is a lightweight markup language that you can use to add formatting elements to plaintext documents. This guide covers all the essential syntax.

Text Formatting

Here are the basic text formatting options:

  • bold text using double asterisks
  • italic text using single asterisks
  • bold and italic using triple asterisks
  • strikethrough using double tildes

Lists

Unordered Lists

  • First item
  • Second item
    • Nested item
    • Another nested item
  • Third item

Ordered Lists

  1. First step
  2. Second step
  3. Third step

Code

Inline code: const greeting = "Hello World";

Code block:

1function fibonacci(n) { 2 if (n <= 1) return n; 3 return fibonacci(n - 1) + fibonacci(n - 2); 4}

Links and Images

Visit OpenAI

Alt text for image

Blockquotes

This is a blockquote. It can span multiple lines and is great for highlighting important information or quotes from other sources.

  • Author Name

Tables

FeatureSupportedNotes
HeadersYesH1-H6
ListsYesOrdered & Unordered
CodeYesInline & Blocks

Horizontal Rule


Conclusion

Markdown makes writing for the web simple and intuitive!

Comments

to leave a comment
Loading comments...