Getting Started with Markdown Blogging
Writing a blog with markdown support is incredibly efficient and enjoyable. In this post, I'll show you the basics of markdown formatting.
Headings
You can create headings using the #
symbol. The number of #
symbols determines the heading level.
Formatting Text
You can make text bold using double asterisks or underscores.
You can make text italic using single asterisks or underscores.
You can strike through text using double tildes.
Lists
Unordered Lists
- Item 1
- Item 2
- Item 3
Ordered Lists
- First item
- Second item
- Third item
Code Blocks
function helloWorld() { console.log('Hello, world!'); }
Links and Images
You can create links like this.
And add images like this:
Blockquotes
This is a blockquote. You can use it to emphasize a quote or important information.
Tables
Column 1 | Column 2 |
---|---|
Cell 1 | Cell 2 |
Cell 3 | Cell 4 |
That's it for the basics! Enjoy creating your blog posts with markdown.
Comments
No comments yet. Be the first to comment!