Writing your second post

#guide#markdown

Here’s a quick reference for the Markdown you can use when writing posts.

You can make text bold, italic, or add a link.

Lists

  • First item
  • Second item
  • Third item
  1. Step one
  2. Step two

Quotes

A blog is a great way to think out loud.

Code

Inline code works, and so do fenced blocks:

const greet = (name) => `Hello, ${name}!`;
console.log(greet('world'));

When you’re ready, duplicate this file, change the frontmatter, and start writing your own.