An Example Blog Post

An Example Image

This is an example description for a post. Ideally it should be a few sentences containing keywords and information that describe the article. Be sure to always include one!

Introduction

Markdown is a lightweight markup language that allows you to write using a plain text format while still incorporating various formatting elements. In this blog post, we’ll explore different typography and features that Markdown (specifically MDX) has to offer.

Headings

Markdown supports six levels of headings, ranging from # for the main title to ###### for the smallest subheading.

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Emphasis

You can add emphasis to your text using asterisks * or underscores _.

This text is italicized. This text is also italicized.

This text is bold. This text is also bold.

Lists

Markdown supports both ordered and unordered lists.

Unordered List

Ordered List

  1. First item
  2. Second item
    1. Subitem 2.1
    2. Subitem 2.2
  3. Third item

Creating links in Markdown is simple. You can use [text](url) syntax.

Visit My Website

Images

Similarly, you can embed images using the ![alt text](image-url) syntax.

ACM Meeting

Blockquotes

You can create blockquotes using the > symbol.

This is a blockquote. It can be used to highlight important information.

Code

Inline code can be highlighted using backticks code, while code blocks use triple backticks:

function greet(name) {
  console.log(`Hello, ${name}!`);
}

Tags For This Post