Skip to content
| Marketplace
Sign in
Visual Studio Code>Visualization>Nord Markdown Preview 2New to Visual Studio Code? Get it now.
Nord Markdown Preview 2

Nord Markdown Preview 2

bluebird

|
3 installs
| (0) | Free
A Markdown preview extension supporting YAML metadata, Mermaid diagrams, Math rendering, Tab Groups, Checkboxes, YouTube, Vimeo, and image scaling, with the ability to export as PDF or HTML.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Nord Markdown Preview

A Markdown preview extension supporting YAML metadata, Mermaid diagrams, Math rendering, Tab Groups, Checkboxes, YouTube, Vimeo, and image scaling, with the ability to export as PDF or HTML.

Table of Contents

  • Nord Markdown Preview
    • Features
      • Export as PDF and Html
      • Light / Dark Mode
      • Math
      • Youtube Video
      • Vimeo Video
      • Local Video
      • Mermaid
      • YAML Metadata
      • Headings
      • Header Sync
      • Inline Formatting
      • Code Blocks with Syntax Highlighting
      • Tables
      • Task List
      • Image Scale
      • Admonitions
      • Tab Groups
      • Buttons
    • Usage
    • Installation

Features

Export as PDF and Html

alt text

Light / Dark Mode

Click the Sun and Moon icon on the toolbar to switch the Light And Dark Theme.

alt text

alt text

Math

Inline and block math via $...$ and \(...\) syntax (requires MathJax/KaTeX in the render pipeline):

$p(x|y) = \frac{p(y|x)p(x)}{p(y)}$, \(p(x|y) = \frac{p(y|x)p(x)}{p(y)}\).

alt text

Youtube Video

  • Right-click on the YouTube video
  • Click Copy embed code
  • Paste it into the MkDocs .md file

A Maximize button is available in the top-right corner of the embedded video.

<iframe width="650" height="450" src="https://www.youtube.com/embed/YE7VzlLtp-4" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowMaximize></iframe>

alt text

Vimeo Video

A Maximize button is available in the top-right corner of the embedded video.

<iframe title="vimeo-player" src="https://player.vimeo.com/video/1084537?h=b1b3ab5aa2" width="640" height="360" frameborder="0" referrerpolicy="strict-origin-when-cross-origin" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share"   allowfullscreen></iframe>

alt text

Local Video

<video controls src="https://github.com/yonge123/nord-markdown-preview/raw/HEAD/../sources/videos/big_buck_bunny.mp4" width=70%></video>

alt text

Mermaid

```mermaid
graph LR
    A[Square Rect] -- Link text --> B((Circle))
    A --> C(Round Rect)
    B --> D{Rhombus}
    C --> D

```

alt text

```mermaid
sequenceDiagram
    Alice ->> Bob: Hello Bob, how are you?
    Bob-->>John: How about you John?
    Bob--x Alice: I am good thanks!
    Bob-x John: I am good thanks!
    Note right of John: Bob thinks a long<br/>long time, so long<br/>that the text does<br/>not fit on a row.

    Bob-->Alice: Checking with John...
    Alice->John: Yes... John, how are you?
```

alt text

YAML Metadata

Metadata blocks at the top of a file are rendered as a styled metadata table.

---
title: My Document
author: Author
tags:
  - markdown
  - document
---

alt text

Headings


# H1
## H2
### H3
#### H4
##### H5
##### H6

alt text

Header Sync

Click any heading to sync the scroll position between the editor and preview.

Inline Formatting

*italic*  _italic_
**bold**  __bold__
**bold with _nested italic_**
<del>strikethrough</del>
<mark>highlighted text</mark>
`inline code`

alt text

Code Blocks with Syntax Highlighting

Fenced code blocks are highlighted using the One Dark Pro palette (via highlight.js).

```python
def read_from_file(path):
    with open(path) as f:
        return f.read()
```

alt text

Supported languages include Python, JavaScript, Ruby, C, C++, C#, Bash, and more.

Tables

| header 1 | header 2 | header 3 |
| :------- | :------: | -------: |
| cell 1   |  cell 2  |   cell 3 |

alt text

Alternating row stripes and hover highlight included.

Task List

- [x] item 1
    * [x] item A
    * [ ] item B
        + [x] item a
        + [ ] item b

alt text

Checked items are rendered with a strikethrough in Nord cyan.

Image Scale

Standard syntax plus Kramdown-style attribute blocks for resizing:

![picture](https://github.com/yonge123/nord-markdown-preview/raw/HEAD/sources/images/icon.png)
![picture](https://github.com/yonge123/nord-markdown-preview/raw/HEAD/sources/images/icon.png){: style="height:100px;width:100px"}
<img src="https://github.com/yonge123/nord-markdown-preview/raw/HEAD/sources/images/icon.png" width="30" height="30">

alt text

Admonitions

MkDocs / Material-style !!! type blocks:

Supported types: note, abstract, info, tip, success, question, warning, failure, danger, bug, example, quote

!!! note
    Body text here.

!!! warning "Custom Title"
    Body text here.

alt text

Tab Groups

MkDocs === tab syntax:


=== "C"

    ``` c
    #include <stdio.h>

    int main(void) {
      printf("Hello world!\n");
      return 0;
    }
    ```

=== "C++"

    ``` c++
    #include <iostream>

    int main(void) {
      std::cout << "Hello world!" << std::endl;
      return 0;
    }
    ```

=== "Python"

    ```python
    def main():
        print("Hello World!")
        return 0
    ```

alt text

Buttons

[Label](https://github.com/yonge123/nord-markdown-preview/blob/HEAD/url){ .md-button }
[Label](https://github.com/yonge123/nord-markdown-preview/blob/HEAD/url){ .md-button .md-button--primary }

alt text

Usage

Open any .md file and press Ctrl+Shift+V (Cmd+Shift+V on Mac) to open the split preview panel.

The preview icon also appears in the editor title bar and right-click context menus for .md files.

Installation

  1. Download the .vsix file
  2. In VSCode: Extensions → ··· menu → Install from VSIX…
  3. Select the downloaded file and reload
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft