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
- First item
- Second item
- Third item
- Indented item
- Indented item
- Fourth item
Or,
- First item
- Second item
- Third item
- Indented item
- Indented item
- Fourth item
Or,
- First item
- Second item
- Third item
- Indented item
- Indented item
- Fourth item
Code and Highlighting
1 |
|
1 |
|
1 |
|
1 |
|
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 |
|
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 | 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 | 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 |
|
Useful link
Links
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
waipangsze@gmail.com
Task List
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
Image
Open the file containing the Linux.
Tux, the Linux mascot Close the file.

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 |
|
TeXt - Mermaid,
set mermaid: true
1 |
|
and,
1 |
|
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.
edit waipangsze.github.io/_includes/markdown-enhancements/mathjax.html and add
1 |
|
and,
1 |
|
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} \]