Notepad Markdown: Windows 11 Notepad and Notepad++ Setup

September 11, 2026 · 9 min read

Notepad Markdown: Windows 11 Notepad and Notepad++ Setup

Notepad markdown support comes in two very different forms on Windows. Windows 11 Notepad now renders bold, italic, headings, links, lists, tables and strikethrough natively, with a toggle to see the raw syntax. Notepad++ needs a user-defined language for highlighting and a plugin for preview. This guide sets up both and shows where each one stops.

Does Notepad Have Markdown?

Yes, since 2025. Microsoft added text formatting to Windows 11 Notepad in version 11.2504.50.0, announced on the Windows Insider blog on 30 May 2025. The first release covered bold and italic, hyperlinks, simple lists and headings, and it stores that formatting as Markdown syntax rather than a proprietary format.

Later builds filled in the gaps. Version 11.2510.6.0 (November 2025) added tables, which you can insert from the toolbar or type as pipe syntax. Version 11.2512.10.0 (January 2026) added strikethrough and nested lists. Version 11.2606.15.0 (July 2026) fixed formatting for .md and .markdown files and improved pasting of nested lists, per the Notepad release notes on Microsoft Learn. If you don't see a formatting toolbar, update Notepad from the Microsoft Store.

This is a real markdown notepad now, not a text box with bold buttons. But it's a small one, and the section on what it doesn't render matters as much as this one. Notepad also stays a .txt editor first: formatting is a layer on top, and you can turn it off if you only ever edit config files.

How to Turn On Markdown Formatting in Windows 11 Notepad

Formatting is on by default in current builds. Here's how to work with it and how to switch views. The steps are the same whether you searched for a markdown notepad for Windows 11 or simply opened a README and noticed it looked different.

  1. Open Notepad and create a new file, or open an existing .md file.
  2. Use the formatting toolbar above the text area for bold, italic, headings, lists, links and tables, or type the Markdown syntax directly. Typing # Title produces a heading; typing **word** produces bold.
  3. To see the raw syntax, switch views. The View menu has an option to change between the formatted Markdown view and the Markdown syntax view, and the status bar has a toggle button that does the same.
  4. To strip formatting from a selection, use Clear formatting on the Edit menu.
  5. To turn formatting off entirely, open Settings (the gear icon) and disable formatting support there.

We recommend leaving the syntax view on while you learn, because you see exactly what is written to disk. The file stays plain text, so anything you write in Notepad opens unchanged in VS Code, Obsidian or a browser editor. The syntax itself is the standard set from our Markdown cheat sheet.

What Windows Notepad Markdown Does Not Render

The release notes to date list bold, italic, strikethrough, headings, hyperlinks, simple and nested lists and tables. Nothing else has been announced as of the July 2026 build, so expect the following to show as plain text:

  • Fenced code blocks and inline code.
  • Images, whether by URL or local path.
  • Task lists (- [ ] checkboxes).
  • Footnotes, math and Mermaid diagrams.

Blockquotes and horizontal rules are also absent from every release note, so treat them as unsupported until Microsoft says otherwise. For a README, a technical note or anything with code in it, that list is a deal breaker. The honest use case for Notepad is quick formatted notes and editing an existing .md file without opening a heavier app. When you hit one of the missing elements, the free online editor renders all of them and needs no install. That is the real answer to the "notepad markdown online" search. Paste the file in, check the preview, and export through the Markdown to PDF converter if someone needs a printable copy.

If you find yourself doing that daily, the Notepad half of your workflow has run its course. Our round-up of Markdown editors compares the desktop apps that render everything, several of them free.

Can I Use Markdown in Notepad++?

Yes. Notepad++ has no built-in preview, but it ships with a preinstalled Markdown user-defined language (UDL) that colours headings, emphasis, links and code. Open a .md file and check the bottom of the Language menu for the Markdown entry. If the file isn't recognised, pick it there.

The preinstalled UDL is a basic theme. The markdown-plus-plus project maintains hand-written UDLs for a dozen Notepad++ themes (Default, Zenburn, Solarized, Obsidian, Material and others), with dark-mode variants. Installing one takes four steps:

  1. Download the zip from the latest release (v3.4.0 at the time of writing) and open the udl folder.
  2. Copy the XML for your theme into %AppData%\Notepad++\userDefineLangs\. Create the folder if it doesn't exist.
  3. Restart Notepad++. The new language appears at the bottom of the Language menu.
  4. Alternatively, import it through the menu: Language, then User Defined Language, then Define your language, then Import.

The Notepad++ user manual on UDLs documents the folder and the import dialog. If .md files still open as plain text, open Define your language, select the Markdown UDL, and type md markdown in the Ext. box so both extensions map to it.

UDL highlighting is purely visual: it doesn't check syntax and it doesn't render. It also can't tell a heading from a line that starts with a hash inside a code block, so expect the odd mis-coloured line. For a rendered view you need a plugin.

What Is the Best Markdown Plugin for Notepad++?

Open Plugins, then Plugins Admin, and search for "markdown". As of Notepad++ 8.9.8 the official plugin list carries four preview options.

PluginVersionWhat it does
Markdown Panel (NppMarkdownPanel)0.9.3Lightweight docked preview using WebView2, can save the rendered HTML, updated July 2026
MarkdownViewer++0.8.2Docked CommonMark preview with HTML and PDF export
Another Markdown0.1.12Customisable preview and edit panel
Preview HTML1.4.6.0WebView2 browser panel that can preview Markdown through an external converter

We prefer Markdown Panel: it's the most recently updated, it installs in one click, and it renders through the WebView2 engine with dark mode support, per its README. It needs .NET Framework 4.7.2 or later. Tick it, click Install, and Notepad++ restarts with a small purple toolbar icon that toggles the panel. Add Markdown Table Editor (11.2.0) from the same list if you write pipe tables by hand, because it aligns columns and moves rows for you.

One limitation applies to all four. The preview reflects the plugin's renderer, not GitHub's, so alerts, footnotes and emoji shortcodes may differ from what your README shows once pushed. If you're on Windows and outgrow Notepad++, VS Code's built-in preview is the usual next step, and our VS Code Markdown guide covers the setup.

Test the Same Document in Notepad, Notepad++ and the Browser

Paste this document into all three. In Windows Notepad the heading, bold, list and table render and the code block, task list and image stay as text. In Notepad++ with Markdown Panel the preview renders all of it. In the editor below everything renders and you can export it.

Sprint notes

Owner: Priya | Status: on track

  • Migrate database
  • Update docs
Task Hours
API 6
Tests 4

Run the suite with:

npm test

Build badge

42 words260 characters17 lines
Markdown

Common Notepad Markdown Mistakes

Expecting code blocks in Windows Notepad. Three backticks stay as three backticks. Write the code in Notepad if you like, but render it elsewhere. Nothing in the release notes suggests this is coming soon.

Saving as .txt and wondering where the formatting went. Notepad stores formatting as Markdown syntax, so the text is intact, but other apps only render .md files. Rename the file with File, then Save as, and choose the .md extension.

Editing the UDL in the dialog and losing the dark-mode flag. In Notepad++, the Define your language dialog rewrites the XML. If you use a _DM (dark mode) UDL from markdown-plus-plus, edit the XML file directly instead.

Notepad Markdown FAQ

For quick notes, Windows 11 Notepad is a genuine notepad markdown editor with a syntax view that keeps your files portable. For anything with code, Notepad++ plus a UDL and Markdown Panel gets you highlighting and a live preview. When you need the full set of elements rendered and exported, paste the file into the editor and carry on from there.