How to Use Markdown in Notepad

Markdown is a lightweight markup language used to format text using simple symbols and syntax. It is widely used for writing documentation, README files, blog posts, and web content because it allows you to format text quickly without complex formatting tools.

Although Notepad in Windows 11 is a basic text editor and does not include built-in Markdown rendering like specialized editors, you can still write and edit Markdown files using Notepad. The formatted output can then be viewed in Markdown-compatible editors or platforms that support Markdown syntax.

If you want to write Markdown in Notepad, follow the steps below.

How to Use Markdown in Notepad

These steps explain how to create and write Markdown documents using Notepad.

1. Create a Markdown File

Markdown files usually use the .md extension.

  1. Press Windows + S and search for Notepad.
  2. Open Notepad.
  3. Click File > Save As.
  4. In the File name field, type a name with the .md extension, for example:
notes.md
  1. Set Save as type to All Files.
  2. Click Save.

This creates a Markdown file that can be edited in Notepad.

2. Add Headings

Markdown uses the # symbol to create headings.

Example:

# Heading 1
## Heading 2
### Heading 3

The number of # symbols determines the heading level.

3. Format Text

You can format text using simple symbols.

Examples:

**Bold Text**
*Italic Text*
~~Strikethrough~~

These symbols will format the text when viewed in a Markdown-compatible viewer.

4. Create Lists

Markdown supports both unordered and ordered lists.

Unordered list example:

- Item One
- Item Two
- Item Three

Ordered list example:

1. First item
2. Second item
3. Third item

Lists help organize information clearly.

5. Add Links

You can create hyperlinks using Markdown syntax.

Example:

[OpenAI](https://www.openai.com)

The text inside brackets is the clickable text, and the URL is inside parentheses.

6. Insert Images

Markdown also supports images.

Example:

![Image description](image-url.jpg)

This will display an image when viewed in a Markdown-compatible application.

7. Add Code Blocks

Markdown allows you to format code snippets.

Inline code example:

`code`

Code block example:





print(“Hello World”)





This keeps code formatting intact.

8. Preview Markdown Content

Since Notepad cannot render Markdown formatting, you can preview it using other tools.

Common options include:

  • Markdown editors (such as VS Code or Typora)
  • GitHub or GitLab repositories
  • Online Markdown preview tools

Open your .md file in one of these tools to see the formatted output.

Conclusion

Markdown is a simple and efficient way to format text using basic symbols and syntax. Although Notepad does not provide a built-in Markdown preview, it can still be used to create and edit Markdown files easily.

By saving files with the .md extension and using Markdown formatting syntax for headings, lists, links, and code blocks, you can write structured documents that can be viewed and rendered in any Markdown-compatible application or platform.

Posted by Raj Bepari

I’m a digital content creator passionate about everything tech.