VSCode with Markdown editor

Working with Markdown files in Visual Studio Code is simple, straightforward, and fun. Besides VS Code's basic editing, there are a several Markdown-specific features that help you be more productive.

Markdown preview

You can also right-click on the editor Tab and select Open Preview (Ctrl+Shift+V) or use the Command Palette (Ctrl+Shift+P) to run the Markdown: Open Preview to the Side command (Ctrl+K V).

Outline view

The Outline view is a separate section in the bottom of the File Explorer. When expanded, it shows the symbol tree of the currently active editor. For Markdown files, the symbol tree is the Markdown file's header hierarchy.

Extension

  • markdownlint
  • Markdown All in One
  • Markdown Preview Github Styling
  • Markdown Preview Enhanced
  • Markdown Table Prettifier

Markdown syntax

Bold/Italics

  • I just love bold text./I just love bold text.
  • I just love bold text./I just love bold text.
  • Loveisbold./Loveisbold

Blockquotes

It is Markdown.

It is also Markdown.

same here. > indent > > indent

The quarterly results look great!

  • Revenue was off the chart.
  • Profits were higher than ever.

Everything is going according to plan.

Lists

  1. First item
  2. Second item
  3. Third item
    1. Indented item
    2. Indented item
  4. Fourth item

Or,

  • First item
  • Second item
  • Third item
    • Indented item
    • Indented item
  • Fourth item

Or,

  1. First item
  2. Second item
  3. Third item
    • Indented item
    • Indented item
  4. Fourth item

Code and Highlighting

1
2
#!/bin/sh
echo "Hello world"
1
import numpy as np
1
2
3
4
5
6
7
#include <iostream>
using namespace std;

int main() {
cout << "Hello World!";
return 0;
}
1
2
3
4
5
6
#include <stdio.h>
int main() {
// printf() displays the string inside quotation
printf("Hello, World!");
return 0;
}

Table

You first have to understand table structure: a table element consists of a head and a body (thead and tbody). Both of them in turn are made up of row (tr) elements. And every row consists of th (for a table head) or td elements which are finally defining the table cells themselves.

One detail many people want are lines dividing the columns and rows. That, however, is not something you can set for the whole table. Instead, you have to specify a border for the td and th cells:

1
2
3
4
table :is(td, th) {
border: 1px solid black;
padding: 0.3em;
}

Here, table :is(td.th) is an abbreviation for table td, table th.

Edit markdown.styl

Syntax Description
Header Title
Paragraph 1 Text 1
Paragraph 2 Text 2
Left-Aligned Center Aligned Right Aligned
Row 1 Cell 2 Cell 3
Row 2 Cell 5 Cell 6
Row 3 Cell 8 Cell 9
Left-Aligned Center Aligned Right Aligned
Row 1 Bold Cell 3
Row 2 Italic Cell 6
Row 3 Strike Cell 9
Row 3 Link Cell 9

https://nabeelvalley.co.za/blog/2021/23-03/custom-styles-in-markdown/

Row 1 Bold Cell 3
Row 2 Italic Cell 6
Row 3 Strike Cell 9
elec_physics nssl_ipelec nssl_idischarge outputs
1 2 1 ?
1 3 1 scalar:scr,scw,sci,scs,sch,schl,sciona;
state:rscghis_2d,sctot,noninduc,induc,pot,
elecmag,elecx,elecy,elecz,light,lightdens,lightdis
1 3 2 state:flshi,flshn,flshp,flshfedic,
flshfedicp,flshfedicn,flshfedcg,flshfedcgp,flshfedcgn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph 1| Text 1|
| Paragraph 2 | Text 2|

| Left-Aligned | Center Aligned | Right Aligned |
|:------------- |:---------------:| -------------:|
| Row 1 | Cell 2 | Cell 3 |
| Row 2 | Cell 5 | Cell 6 |
| Row 3 | Cell 8 | Cell 9 |

| Left-Aligned | Center Aligned | Right Aligned |
|:------------- |:---------------:| -------------:|
| Row 1 | **Bold** | Cell 3 |
| Row 2 | *Italic* | Cell 6 |
| Row 3 | ~~Strike~~ | Cell 9 |
| Row 3 | [Link](dot.com) | Cell 9 |

| <!-- --> | <!-- --> | <!-- --> |
|:-------------:|:---------------:|:-------------:|
| Row 1 | **Bold** | Cell 3 |
| Row 2 | *Italic* | Cell 6 |
| Row 3 | ~~Strike~~ | Cell 9 |

| elec_physics | nssl_ipelec | nssl_idischarge | outputs |
|:------------- |:---------------:|:---------------:| :-------------|
| 1 | 2 | 1 | ? |
| 1 | 3 | 1 | scalar:scr,scw,sci,scs,sch,schl,sciona; <br> state:rscghis_2d,sctot,noninduc,induc,pot, <br> elecmag,elecx,elecy,elecz,light,lightdens,lightdis |
| 1 | 3 | 2 | state:flshi,flshn,flshp,flshfedic, <br> flshfedicp,flshfedicn,flshfedcg,flshfedcgp,flshfedcgn |

To create a link, enclose the link text in brackets (e.g., [Duck Duck Go]) and then follow it immediately with the URL in parentheses (e.g., (https://duckduckgo.com)).

It is GNU Compiler Collection (GCC).

URLs and Email Addresses

https://www.markdownguide.org

Task List

  • [x] Write the press release
  • [ ] Update the website
  • [ ] Contact the media

Image

  1. Open the file containing the Linux.

    Tux, the Linux mascot
    Tux, the Linux mascot
  2. Close the file.

Tux, the Linux mascot
Tux, the Linux mascot

In Fluid theme,

便签

可选便签:

  • primary
  • secondary
  • success
  • danger
  • warning
  • info
  • light

primary: 文字 或者 markdown 均可

secondary: 文字 或者 markdown 均可

success: 文字 或者 markdown 均可

danger: 文字 或者 markdown 均可

warning: 文字 或者 markdown 均可

info: 文字 或者 markdown 均可

light: 文字 或者 markdown 均可

1
2
3
{% note primary %}
primary: 文字 或者 `markdown` 均可
{% endnote %}

TeXt - Mermaid,

set mermaid: true

1
2
3
4
5
6
# 流程图,基于 mermaid-js,具体请见:https://hexo.fluid-dev.com/docs/guide/#mermaid-流程图
# Flow chart, based on mermaid-js, see: https://hexo.fluid-dev.com/docs/en/guide/#mermaid
mermaid:
# 开启后文章默认可用,自定义页面如需使用,需在 Front-matter 中指定 `mermaid: true`
# If you want to use mermaid on the custom page, you need to set `mermaid: true` in Front-matter
enable: false

and,

1
npm install hexo-filter-mermaid-diagrams
pie title NETFLIX
         "Time spent looking for movie" : 90
         "Time spent watching it" : 10
flowchart TD
    Start --> Stop

Flowchart

graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;
<pre class="mermaid">    graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;</pre>

Sequence Diagram

sequenceDiagram
    participant Alice
    participant Bob
    Alice->John: Hello John, how are you?
    loop Healthcheck
        John->John: Fight against hypochondria
    end
    Note right of John: Rational thoughts 
prevail... John-->Alice: Great! John->Bob: How about you? Bob-->John: Jolly good!
<pre class="mermaid">    sequenceDiagram
    participant Alice
    participant Bob
    Alice->John: Hello John, how are you?
    loop Healthcheck
        John->John: Fight against hypochondria
    end
    Note right of John: Rational thoughts <br/>prevail...
    John-->Alice: Great!
    John->Bob: How about you?
    Bob-->John: Jolly good!</pre>

Gant Diagrams

gantt
    dateFormat  YYYY-MM-DD
    title Adding GANTT diagram functionality to mermaid
    section A section
        Completed task            :done,    des1, 2014-01-06,2014-01-08
        Active task               :active,  des2, 2014-01-09, 3d
        Future task               :         des3, after des2, 5d
        Future task2              :         des4, after des3, 5d
    section Critical tasks
        Completed task in the critical line :crit, done, 2014-01-06,24h
        Implement parser and jison          :crit, done, after des1, 2d
        Create tests for parser             :crit, active, 3d
        Future task in critical line        :crit, 5d
        Create tests for renderer           :2d
<pre class="mermaid">    gantt
    dateFormat  YYYY-MM-DD
    title Adding GANTT diagram functionality to mermaid
    section A section
        Completed task            :done,    des1, 2014-01-06,2014-01-08
        Active task               :active,  des2, 2014-01-09, 3d
        Future task               :         des3, after des2, 5d
        Future task2              :         des4, after des3, 5d
    section Critical tasks
        Completed task in the critical line :crit, done, 2014-01-06,24h
        Implement parser and jison          :crit, done, after des1, 2d
        Create tests for parser             :crit, active, 3d
        Future task in critical line        :crit, 5d
        Create tests for renderer           :2d</pre>
gantt
    title A Gantt Diagram
    dateFormat YYYY-MM-DD
    section Section
        A task          :a1, 2014-01-01, 30d
        Another task    :after a1, 20d
    section Another
        Task in Another :2014-01-12, 12d
        another task    :24d
    section Another 2
        Task in Another :2014-01-12, 12d
        another task    :24d
<pre class="mermaid">    gantt
    title A Gantt Diagram
    dateFormat YYYY-MM-DD
    section Section
        A task          :a1, 2014-01-01, 30d
        Another task    :after a1, 20d
    section Another
        Task in Another :2014-01-12, 12d
        another task    :24d
    section Another 2
        Task in Another :2014-01-12, 12d
        another task    :24d</pre>

Math block

set
mathjax: true
mathjax_autoNumber: true {:.info}

In TeXt theme, MathJax is used.

  1. MathJax 語法補帖
  2. MathJax 语法快速指南

edit waipangsze.github.io/_includes/markdown-enhancements/mathjax.html and add

1
displayMath: [ ['$$','$$'], ['\\[','\\]'] ]

and,

1
2
3
4
5
6
7
8
9
<script type="text/x-mathjax-config">
var _config = { tex2jax: {
inlineMath: [ ['$','$'], ['\\(','\\)'] ],
displayMath: [ ['$$','$$'], ['\\[','\\]'] ]
}};
_config.TeX = { equationNumbers: { autoNumber: "all" } };
MathJax.Hub.Config(_config);
</script>
<script type="text/javascript" src="https://cdn.bootcss.com/mathjax/2.7.4/MathJax.js?config=TeX-MML-AM_CHTML" async></script>

Inline math: \(x^2\)

\[ \left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right) \]

\[ a+1 = b\\ c+2 = d \]

\[ \begin{align} a &= 1 \\ b &= 2 \end{align} \tag{1} \]

\[ \begin{equation} \begin{split} A & = \frac{\pi r^2}{2} \\ & = \frac{1}{2} \pi r^2 \end{split} \end{equation} \tag{2} \]

\[ \begin{align*} & \phi(x,y) = \phi \left(\sum_{i=1}^n x_ie_i, \sum_{j=1}^n y_je_j \right) = \sum_{i=1}^n \sum_{j=1}^n x_i y_j \phi(e_i, e_j) = \\ & (x_1, \ldots, x_n) \left( \begin{array}{ccc} \phi(e_1, e_1) & \cdots & \phi(e_1, e_n) \\ \vdots & \ddots & \vdots \\ \phi(e_n, e_1) & \cdots & \phi(e_n, e_n) \end{array} \right) \left( \begin{array}{c} y_1 \\ \vdots \\ y_n \end{array} \right) \end{align*} \]

\[ a = 1 \\ b + 1 = 2 \\ c + 1 + 2 = 3 \]

\[ \begin{cases} a_1x + b_1y + c_1z = d_1\\ a_2x + b_2y + c_2z = d_2\\ a_3x + b_3y + c_3z = d_3\\ \end{cases} \]


VSCode with Markdown editor
https://waipangsze.github.io/2024/05/29/VSCode_markdown_editor/
Author
wpsze
Posted on
May 29, 2024
Updated on
January 20, 2025
Licensed under