Donation°CodeCopy Code ContentCopy Code ExampleCopy Code Block ExampleCode Block Wrapping LayoutCaption & Auto-numbering°ButtonsKeyboard KeysButton LinksText ButtonsIcon + Text ButtonsCard-Style Links°Cover & Back CoverMinimal Document Cover ExampleExample of this document's cover contentExample of this document's back cover content°ColumnsList ColumnsTwo-column List ExampleThree-column List ExampleFour-column List ExampleFive-column List ExampleList Columns Nested Within Blockquote Columns ExampleBlockquote ColumnsSingle-line Two-column Blockquote Example (No Subtitles)Single-line Two-column Blockquote ExampleSingle-line Three-column Blockquote ExampleSingle-line Four-column Blockquote ExampleBlockquote Columns Nested Within Blockquotes ExampleGitHub Style Alert Columns°CaptionHow to Set Caption?Image Caption & Auto-numberingTable Caption & Auto-numberingCode Block Caption & Auto-numberingMultimedia Caption & Auto-numberingMermaid Chart Caption & Auto-numberingMath Formula Caption & Auto-numbering°Tab GroupSimple ExampleMulti-type Content Tab GroupsBlockquote Tab GroupsGitHub Style Alert Tab Groups°Content MarkingGitHub Style AlertBelow are examples with richer formatting contentTagSingle-level TagMulti-level TagTag LinkProgress BarBreadcrumbsScratch CardsScratch Card ExamplesPhonetic NotationSuperscript Phonetic NotationPhonetic Example-1Phonetic Example-2Code-style Phonetic NotationPhonetic Example-1Phonetic Example-2°MermaidMermaid Style Optimization & ExtensionMermaid FlowchartMermaid Class DiagramMermaid Mind MapMermaid's Sequence DiagramMermaid Caption & Auto-numbering°FormulaMore Practical & Beautiful FormulaInline Mixed FormulaFormula in TablesFormula Caption & Auto-numbering°MultimediaStreaming PlatformsBilibili VideosDouyin VideosXigua VideosTencent VideosYouTube VideosVideoAudioStandard Interface ExampleMini Interface ExampleCaption & Auto-numbering
Select language ❯ 🇨🇳 简体中文
Thanks to donors who supported VLOOK™ (partial list) / Thanks for donate VLOOK™ (partial donors)
PeterPuOgRd、绿邃清幽CyBuAq、李导996CyBuAq、fankyCyBuAq、*丽CyBuAq、杨琛CyBuAq、*哦GnBn、*豫GnBn、l*aGnBn、*oGnBn、K*y、行川、*山、*魂、*狗、*R、*Z、*川、l*n、*朽、*杰、A*C、W*l、*山、J*o、韩宗辉、*星、一叶知秋、d*、*军、*鹏、*无、H*t、*二、*宇、*辉、*秋、*笑、*心、整*9、*国、*哥、乌拉、*龙、远方眼前、*应、*销、E*y、…
If you like VLOOK™, consider buying me a coffee
Gn
I like VLOOK™, I donate a cup of coffee
Se
Markdown FansQ
「For code and code blocks generated by Markdown, hope to copy content with one click~」
VLOOKA
T2 VLOOK™ automatically enhances Markdown code blocks, supporting current line highlighting, copying all code, and adapting to Dark Mode!
Applicable Scope •••
Editing
✓ Not SupportedGyExport HTML
✓ SupportedGn
Click this code
to copy its content
tab
VLOOK™ Code Block Example_Programming Language: C++_
1// ================================================== //
2// VLOOK™ supports auto-folding for long code blocks //
3// ================================================== //
4/**
5 * Quick Sort
6 * @param arr Target data to sort
7 * @param left Left value of sort range
8 * @param right Right value of sort range
9 */
10void quickSort(int arr[], int left, int right) {
11 int i = left, j = right, tmp, pivot = arr[(left + right) / 2];
12 /* partition */
13 while (i <= j) {
14 while (arr[i] < pivot)
15 i++;
16 while (arr[j]>pivot)
17 j--;
18 if (i <= j) {
19 tmp = arr[i];
20 arr[i] = arr[j];
21 arr[j] = tmp;
22 i++;
23 j--;
24 }
25 };
26 /* recursion */
27 if (left < j)
28 quickSort(arr, left, j);
29 if (i < right)
30 quickSort(arr, i, right);
31}
32// ================================================== //
Tip
It is recommended to enable line numbers for code blocks in Typora for a better experience.
Enable method: 「Typora ▸ Preferences ▸ Markdown ▸ Code Blocks ▸ Show line numbers」
Applicable Scope •••
Editing
✓ Not SupportedGyExport HTML
✓ SupportedGn
Code blocks wrap automatically by default, and can be switched to non-wrapping mode as needed.
Tip
After exporting to HTML, you can manually switch the "Wrapping Layout" via the code block Content Assistant.
About code block caption and auto-numbering
If you have more needs or suggestions about the above content, feel free to provide feedback~
Applicable Scope •••
Editing
✓ SupportedGnExport HTML
✓ SupportedGn
VLOOK™ theme supports <kbd>
tag, and VLOOK™ provides button styles closer to physical keyboards, examples:
Q W E R T 1 2 3 4 5
ESC Enter
Ctrl Alt Shift
Ctrl + C 、Ctrl + Shift + V
Ctrl + P
Ctrl + S
Tip
Suitable for software manuals, training documents, making shortcut key instructions more intuitive and clear.
Markdown FansQ
「Buttons are essential for interactive web documents, hope Markdown documents can keep up」
VLOOKA
T2 By enhancing Typora's existing <kbd>
feature, you can implement various styles of button links - let's get started!
Applicable Scope •••
Editing
✓ SupportedGnExport HTML
✓ SupportedGn
VLOOK™ implements "text links" to "button links" conversion, and provides three button styles~
For example with this text link:
Markdown content: [Visit GitHub](github.com)
Text link effect: Visit GitHub
■ Standard Button
Just wrap the text with
<kbd>
~
[<kbd>Visit</kbd>](...)
Example: Visit GitHub
□ Secondary Button
Set the "standard button" to italic~
*[<kbd>Visit</kbd>](...)*
Example: Visit GitHub
🌈 Super Button
Set the "standard button" to index-en.mdbold~
**[<kbd>Visit</kbd>](...)**
Example: index-en.mdVisit GitHub
Centered display when button link is alone in a line
Centered when standalone Centered when standalone
Centered when standalone Centered when standalone index-en.mdCentered when standalone
Tip
To avoid "center alignment", just add a plain space before or after~
Besides pure text buttons, also supports adding images as button icons (any size), icons will automatically adapt to icon layout.
tab
Text + Image/Icon
Directly insert "image URL" inside
<kbd>
of above "text buttons":
Markdown:
[<kbd>VLOOK </kbd>]
Effect:
Icon Only
Replace text content in "text buttons" with "image URL":
Markdown:
[<kbd></kbd>]
Effect:
Important
For images in buttons to automatically adapt colors to button styles (effective after HTML export), recommend using svg
format and set as "Image Silhouette".
Availability •••
While Editing
✓ SupportedGnExported HTML
✓ SupportedGn
Markdown Fan Q
「Wants to present multiple different links, brief descriptions, and icons in a clean and elegant card layout within Markdown documents」
VLOOK A
T2 Just flexibly combine the previously mentioned Blockquote Subtitles / Columns, Paragraph Underline, Image Icon Styles, and Button Links as needed~
Here’s an example of a three-column link card layout:
This is a simple description of the link
Card Subtitle 1
This is a summary description of the link target. This is a summary description of the link target.
Card Subtitle 2
This is a summary description of the link target with emphasis style
If you have more needs or suggestions about the above content, feel free to provide feedback~
Markdown FansQ
「How to make Markdown documents support covers and back covers (like this document's cover and back cover)?」
VLOOKA
T2 After applying VLOOK™'s "Template Theme", using standard Markdown syntax can make documents support covers and back covers by following VLOOK™ conventions.
Applicable Scope •••
Editing
✓ SupportedGnExport HTML
✓ SupportedGn
Activate "Cover"
Input a
Level 6
heading at the index-en.mdvery beginning of the documentExample:
###### This is the cover title
Shortcut
Select text for cover content, then press Cmd / Control + 6
Tip
If there's YAML or [TOC] content, add it after them.
T1
Activate "Back Cover"
Input a
Level 1
heading at the index-en.mdlast line of the documentExample:
# This is the back cover message
Shortcut
Select text for back cover content, then press Cmd / Control + 1
T2
After successfully activating cover and back cover, corresponding entries will appear in Typora's outline panel for quick navigation.
Below are automatic formatting rules for specific information in "Cover":
tab
Title
Default format is title format, just input directly;
Can combine subscript and underline formats for "subtitle, secondary title":
Subtitle:
<sub>Subtitle with spaces</sub>
or~Subtitle without spaces~
Secondary title:
<u>This is the secondary title</u>
Document Type, Security Level
Use VLOOK™'s multi-level tag syntax:
*Security Level`Public*_~Gn~_
*Security Level`Internal*_~Og~_
*Security Level`Confidential*_~Rd~_
Author
Use Markdown "bold" format for "author info", automatically prefixed with
By
, or specify via Custom Theme
Example:
**Author Name**
Copyright Info
Use Markdown "italic" format for "copyright info" (automatically reduces font size and bold)
Example:
*(C)2020. All Rights Reserved*
Tip
How to add line breaks in cover/back cover?
Directly input HTML line break tag <br>
.
tab
xxxxxxxxxx
11###### Fill document title here<br>**Fill author here**<br>*Fill copyright owner info here*
xxxxxxxxxx
11###### ~VLOOK™~<br>Give your Markdown a new way to _^play^_<br>──<br><u>Quick Reference Manual<br>(Part.II)</u><br>*Latest version`V30.0`*<br><br>**MAX°Mengzhao**<br>*COPYRIGHT © 2016-2025. MAX°DESIGN.*
xxxxxxxxxx
11# The End
If you want a more personalized cover and back cover design, you can subscribe to VLOOK™’s Custom Theme Service .
Explore More About Custom Themes
If you have more needs or suggestions about the above content, feel free to provide feedback~
"Columns" and "Tab Groups" are two very practical, widely applicable, and complementary typesetting features.
"Columns" meet the need to simultaneously display multiple sets of information in the same area, sharing display space, suitable when content is limited;
"Tab Groups" meet the need to alternately display multiple sets of information in the same area, occupying display space exclusively, suitable when content is abundant.
Markdown FansQ
「Markdown natively doesn't support column typesetting. Some users reluctantly use tables as substitutes, which remains uncomfortable~」
VLOOKA
T2 With VLOOK, you only need 1 action to instantly make your "blockquotes, lists, GitHub Style Alert" achieve column arrangement!
Markdown FansQ
「Hope to display long lists in columns, but Markdown standards don't seem to support this practical typesetting method~」
VLOOKA
T2 By extending specific combinations of Markdown syntax, we can meet your flexible typesetting needs!
Applicable Scope •••
Editing
✓ SupportedGnExport HTML
✓ SupportedGn
Mainly suitable for column needs with subtitles, where content is organized via lists, e.g.: task boards, etc.
Syntax
Add a specified number of "horizontal dividers"
---
before the "list" that needs column typesetting
Add 1 horizontal divider to enable "⬛︎ ⬛︎ Two-column" mode
Add 2 horizontal dividers to enable "⬛︎ ⬛︎ ⬛︎ Three-column" mode
Add 3 horizontal dividers to enable "⬛︎ ⬛︎ ⬛︎ ⬛︎ Four-column" mode
Add 4 horizontal dividers to enable "⬛︎ ⬛︎ ⬛︎ ⬛︎ ⬛︎ Five-column" mode
Column Syntax Example
x1---
2
3- List 1
4- List item 1-1
5- List item 1-2
6- List 2
7- List item 2-1
Tip
After normal addition, corresponding column count prompts will automatically appear at the horizontal divider, e.g. "⬛︎ ⬛︎ 2 Columns of List ⬛︎ ⬛︎"
List 1
This is list item 1-1
This is list item 1-2
List 2
This is list item 2-1
This is list item 2-2
List 3
This is list item 3-1
This is list item 3-2
Blockquote within list
List 4
This is list item 4-1
This is list item 4-2
List 1
This is list item 1-1
This is list item 1-2
List 2
This is list item 2-1
This is list item 2-2
List 3
This is list item 3-1
This is list item 3-2
List 4
This is list item 4-1
List 5
This is list item 5-1
List 1
This is list item 1-1
This is list item 1-2
List 2
This is list item 2-1
This is list item 2-2
List 3
This is list item 3-1
This is list item 3-2
List 4
This is list item 4-1
This is list item 4-2
List 5
This is list item 5-1
List 6
This is list item 6-1
List 7
This is list item 7-1
List 1
This is list item 1-1
This is list item 1-2
List 2
This is list item 2-1
This is list item 2-2
List 3
This is list item 3-1
This is list item 3-2
List 4
This is list item 4-1
This is list item 4-2
List 5
This is list item 5-1
This is list item 5-2
List 6
This is list item 6-1
List 7
This is list item 7-1
List 8
This is list item 8-1
List 9
This is list item 9-1
List 1
This is list item 1-1
This is list item 1-2
List 2
This is list item 2-1
This is list item 2-2
Markdown FansQ
「Hope to display blockquotes in columns, but Markdown standards don't seem to support this practical typesetting method~」
VLOOKA
T2 By extending specific combinations of Markdown syntax, we can meet your flexible typesetting needs!
Applicable Scope •••
Editing
✓ SupportedGnExport HTML
✓ SupportedGn
Mainly suitable for organizing similar content in blocks, where content isn't suitable for list-based organization.
Syntax
Add a specified number of "horizontal dividers"
---
before the "blockquotes" that need column typesetting
Add 1 horizontal divider to enable "⬛︎ ⬛︎ Two-column" mode
Add 2 horizontal dividers to enable "⬛︎ ⬛︎ ⬛︎ Three-column" mode
Add 3 horizontal dividers to enable "⬛︎ ⬛︎ ⬛︎ ⬛︎ Four-column" mode
Column Blockquote Syntax Example
xxxxxxxxxx
71---
2
3> Blockquote 1
4> Content of blockquote 1
5
6> Blockquote 2
7> Content of blockquote 2
Tip
After normal addition, corresponding column count prompts will automatically appear at the horizontal divider, e.g. "⬛︎ ⬛︎ 2 Columns of Quote ⬛︎ ⬛︎
Column 1
Content of column 1
Column 2
Content of column 2
Two-column Subtitle 1
Column 1
Two-column Subtitle 2
Column 2
Three-column Subtitle 1
Row 1 Column 1
Three-column Subtitle 2
Row 1 Column 2
Three-column Subtitle 3
Row 1 Column 2
Three-column Subtitle 4
Row 1 Column 1
Three-column Subtitle 5
Row 1 Column 2
Three-column Subtitle 6
Row 1 Column 3
Four-column Subtitle 1
Row 1 Column 1
Rd!
Four-column Subtitle 2
Row 1 Column 2
Gn!
Four-column Subtitle 3
Row 1 Column 3
Bu!
Four-column Subtitle 4
Row 1 Column 4
Pu!
Blockquote Columns Nested Within Blockquotes
Nested Column 1 (Non-H6)
Row 1 Column 1
Rd!
Nested Column 2 (Non-H6)
Row 1 Column 2
Gn!
Nested Column 3 (Non-H6)
Row 1 Column 3
Bu!
Nested Column 4
Row 1 Column 4
Pu!
Gy
Applicable Scope •••
Editing
✓ SupportedGnExport HTML
✓ SupportedGn
Supports displaying GitHub Style Alert in columns, following the same familiar approach as "Blockquote Columns" above~
Note
Memo. Highlight information users should consider even when skimming
Tip
Tip. Optional information to help users achieve greater success
Important
Important. Information crucial for user success
Warning
Caution. Key content requiring immediate user attention due to potential risks
Caution
Warning/Prohibition. Potential negative consequences of an action
If you have more needs or suggestions about the above content, feel free to provide feedback~
Markdown FansQ
「How to add caption and auto-numbering to tables, illustrations, code blocks, etc. in documents like Word?」
VLOOKA
T2 With simple markup, you can add caption to tables, images, code blocks, formulas, etc., with auto-numbering like Table 1
Figure 2.3-2
. Caption content also automatically serves as anchors for cross-referencing and jumping within documents~
Applicable Scope •••
Editing
✓ Not SupportedGyExport HTML
✓ SupportedGn
tab
Set Caption: Method 1 (Images only)
For images, caption are primarily generated based on "image title" and "optional subtitle" in Markdown standard syntax.
Memo
Bu This method supports "dual captions", where "optional subtitle" content serves as the second caption.
Set Caption: Method 2
Caption content needs to index-en.mdoccupy a standalone paragraph, formatted as: first "italic", then "highlight"
Corresponding Markdown syntax:
*==This is caption content==*
Tip
Gn This method supports "dual captions".Shortcut
Select content, then press Cmd/Ctrl + i for italic, then Cmd/Ctrl + ⇧ Shift + h for highlight
Note
When correctly formatted in Typora, visual prompts appear
By default, auto-generates caption and numbering for tables, illustrations, code blocks, etc. Adjust via:
For images, specify non-illustration layouts like: icon, Logo, frame, etc. (see Image Display Layouts);
Adjust auto-numbering grouping by chapter via plugin parameter capgroup
(see Plugin Tuning Parameters);
tab
Dual Captions
The second caption appears below tables. index-en.mdSetting method:
Step 1 Complete first caption content via "Method 2" above;
Step 2 Add second caption content after first, wrapped in underscores
_
;Corresponding Markdown syntax:
*==First caption content_Second caption_==*
.
Cross-referencing
Both caption methods support index-en.mdanchor jumps (cross-referencing) within or between documents after exporting HTML;
Current doc cross-ref example:
External doc cross-ref example: Normal cell horizontal & vertical merging example
Follow Markdown syntax for adding images:

Single caption:
Image title
serves as "Caption 1" contentDual captions:
Optional subtitle
serves as "Caption 2" content (optional)(Plugin prioritizes using above content as caption. If none, supports adding via "Method 2")
Caption generated via "Method 2"
Column A | Column B | Column C | Column D | Column E |
---|---|---|---|---|
Cell content | Cell content | Cell content | Cell content | Cell content |
Example: This is first caption content_This is second caption content_
Column A | Column B | Column C | Column D | Column E |
---|---|---|---|---|
Cell content | Cell content | Cell content | Cell content | Cell content |
Cell content | Cell content | Cell content | Cell content | Cell content |
Add caption via "Method 2" above
(Method 3) Italic+highlight code block caption_The best programming language PASCAL! No rebuttals accepted!_
xxxxxxxxxx
41Program HelloWorld(output);
2begin
3 writeln('Hello, world!')
4end
For streaming platforms multimedia, use "Method 2" above
For Video, audio, caption method matches image caption
Add caption via "Method 2" above
Mermaid chart caption example, click here to see ❯
Add caption via "Method 2" above
Formula caption example, click here to see ❯
If you have more needs or suggestions about the above content, feel free to provide feedback~
"Columns" and "Tab Groups" are two very practical, widely applicable, and complementary typesetting features.
"Columns" meet the need to simultaneously display multiple sets of information in the same area, sharing display space, suitable when content is limited;
"Tab Groups" meet the need to alternately display multiple sets of information in the same area, occupying display space exclusively, suitable when content is abundant.
Markdown FansQ
「Markdown natively doesn't support "Tab Group" typesetting, unable to leverage web interactivity~」
VLOOKA
T2 With VLOOK, freely specify continuous content (tables/illustrations/blockquotes/code blocks/GitHub Style Alert) to display as tab groups!
Applicable Scope •••
Editing
✓ Not SupportedGyExport HTML
✓ SupportedGn
Syntax
Before the first content in continuous content to be displayed as tab groups, add an empty line, input any content (e.g.
tab
), then format as:First "italic", then "superscript" (standalone paragraph)
Corresponding Markdown syntax:
_^tab^_
or*^tab^*
Shortcut
Select content, then press Cmd/Ctrl + i for italic, then ⇧ Shift + 6 for highlight;
Tip
Gn After exporting HTML, supports switching tabs via tab, ⇧ Shift + tab.
Important
When correctly formatted in Typora, visual prompts appear;
"Continuous content" refers to content uninterrupted by other types (e.g. headings, lists, empty lines, dividers);
To display caption category & numbering info on tabs, enable via parameter captab
(see Plugin Tuning Parameters);
tab
Current Tab
This is the content corresponding to the current tab.
On Hover
This is the content corresponding to the tab when hovered.
Other Tabs
This is the content corresponding to other tabs.
Caution
This is the content of a GitHub Style Alert.
Below shows continuous content of different types (tables, illustrations, blockquotes, code blocks, videos, audio, formulas, GitHub Style Alert) specified to display as "Tab Groups":
tab
Problem
Given a 0-indexed string s containing only digits 0-9. A string t is semi-repetitive if it has at most one pair of adjacent equal characters. Return the length of the longest semi-repetitive substring in s.
Tip
Optional information to help a user be more successful. Learn More
xxxxxxxxxx
201class Solution {
2 public int longestSemiRepetitiveSubstring(String s) {
3 int n = s.length();
4 if (n <= 2)
5 return n;
6 int[] pre = new int[50];
7 int ans = 0, k = 0; // k records pre length for traversal
8 pre[0] = 1; // Loop starts from 1, need to add first 1
9 for (int i = 1; i < n; i++) {
10 if (s.charAt(i-1) == s.charAt(i))
11 k++;
12 pre[k]++;
13 }
14
15 ans = pre[0];
16 for (int i = 1; i <= k; i++)
17 ans = Math.max(ans, pre[i-1] + pre[i]);
18 return ans;
19 }
20}
Python Example
xxxxxxxxxx
131class Solution:
2 def longestSemiRepetitiveSubstring(self, s: str) -> int:
3 if len(s) <= 2:
4 return len(s)
5 pre = [1] # Loop starts from 1, need to add first 1
6 for i in range(1, len(s)):
7 pre[len(pre)-1] += 1
8 if s[i-1] == s[i]:
9 pre.append(0)
10 ans = pre[0]
11 for i in range(1, len(pre)):
12 ans = max(ans, pre[i-1] + pre[i])
13 return ans
Column A | Column B | Column C | Column E |
---|---|---|---|
Note
Highlights information that users should take into account, even when skimming. Learn More
Online Video
When tab items or content are too long, horizontal scrolling is supported (also supports keyboard Tab / ⇧ Shift + Tab for switching):
tab
What is Markdown?
In 2004, John Gruber created
Markdown, a
text markup language
specifically designed for web writing. Using Markdown, you only need to insert a small number of markup symbols during writing to easily format text (such as setting headings, bold, lists, blockquotes, etc.);Markdown documents are stored in
plain text format
, which means they can be opened with almost any text editor. At the same time, they can be exported as formatted rich text documents, HTML web pages, etc. through Markdown editors. Pure, concise, easy to use, flexible are all reasons why people love Markdown.Markdown Logo
Markdown Standardization Project (CommonMark)
The current Markdown standardization project is CommonMark;
Standardized index-en.mdCommonMark syntax reference: Learn Markdown in 60 Seconds, Dive Deeper into Markdown in 10 Minutes
What is Github Flavored Markdown?
GitHub Flavored Markdown (GFM) is a popular markup language that adds some additional features to standard Markdown to better adapt to GitHub platform needs. These additional features include task list, automatic links, tables, etc.;
Typora currently mainly adopts this standard Details ❯
What is AsciiDoc?
AsciiDoc is a text format specification designed to solve the problem of book-scale writing, serving as an upgrade or alternative to Markdown;
Compared to Markdown, it supports more formats, including document attributes, setting authors, version information, syntax highlighting, tables, Include functionality, etc.;
AsciiDoc can be converted to various formats such as HTML5, DocBook, EPUB, PDF, etc. through the AsciiDoctor toolchain;
AsciiDoctor also provides template engines and performance improvements, making it suitable for scenarios requiring rich formats and custom output.
(The above information is generated by Baidu AI)
Why hasn't AsciiDoc become popular?
First, index-en.mdhigher learning cost. Although AsciiDoc supports more formats than Markdown, these features also increase its learning difficulty. For simple document writing, these features of AsciiDoc are not necessary, while simple documents like blogs tend to use Markdown with lower learning cost;
Second, index-en.mdrelatively limited functionality. Although it supports more formats, compared to Markdown, AsciiDoc's flexibility in specific scenarios is slightly insufficient. Markdown can achieve similar functionality through self-extended syntax or using HTML, while AsciiDoc requires more custom block syntax and extensibility, which may bring inconvenience in some cases;
Finally, index-en.mdlack of widespread community support. Although AsciiDoc has certain applications in specific fields (such as e-book production), its overall community and user base are relatively small, limiting its promotion and use in broader application scenarios.
(The above information is generated by Baidu AI)
The following shows GitHub Style Alert presented in "Tab Group" form while retaining highlighting styles:
tab
Note
Highlights information that users should take into account, even when skimming. Learn More
(Memo. Highlight information that users should also consider when browsing) Learn More
Learn More
Tip
Optional information to help a user be more successful. Learn More
(Tip. Optional information to help users achieve greater success) Learn More
Learn More
Important
Crucial information necessary for users to succeed. Learn More
(Important. Information critical to user success) Learn More
Learn More
Warning
Critical content demanding immediate user attention due to potential risks. Learn More
(Note. Key content requiring immediate user attention due to potential risks) Learn More
Learn More
Caution
Negative potential consequences of an action. Learn More
(Warning/Prohibition. Potential negative consequences of actions) Learn More
Learn More
Currently, 3 styles are available for “Tab Groups”. If you wish to specify a particular style, you can subscribe to VLOOK™’s Custom Theme Service .
Explore More About Custom Themes
Markdown FansQ
「Does VLOOK™ theme support GitHub Style Alert? (Requires Typora1.8.3+
or higher version)」
VLOOKA
T2 Has adapted and optimized in terms of typesetting styles, while supporting automatic matching of "information category names" in multilingual environments.
Applicable Scope •••
Editing
✓ SupportedGnExport HTML
✓ SupportedGn
GitHub Style Alert is primarily used in documents for reminders, notes, or emphasizing key information through specific typesetting styles, consisting of corresponding information category icons, names, content, etc.
VLOOK™ Optimizations for GSA
Provides multiple style options including "Regular, Flat, Emphasized", which can be specified through Custom Theme configuration;
Adapts styling for "text links, buttons, highlights" within to match the color scheme of corresponding information categories.
Below shows the "Flat" style example. For more style examples, please preview through VLOOK™'s preset Hope and Joint themes.
Syntax
Input any of the following GitHub Style Alert category identifiers in the first line of a "blockquote" to enable automatic recognition and rendering:
[!NOTE]
[!TIP]
[!IMPORTANT]
[!WARNING]
[!CAUTION]
Reference Example
xxxxxxxxxx
21> [!NOTE]
2> Highlights information that users should take into account, even when skimming.
For more GitHub Style Alert information, see Typora Release Notes
Note
Highlights information that users should take into account, even when skimming. Learn More
(Memo. Emphasizes information users should consider even while browsing) Learn More
Learn More
Tip
Optional information to help a user be more successful. Learn More
(Tip. Optional information to help users achieve greater success) Learn More
Learn More
Important
Crucial information necessary for users to succeed. Learn More
(Important. Information critical for user success) Learn More
Learn More
Warning
Critical content demanding immediate user attention due to potential risks. Learn More
(Warning. Critical content requiring immediate attention due to potential risks) Learn More
Learn More
Caution
Negative potential consequences of an action. Learn More
(Caution/Prohibition. Potential negative consequences of an action) Learn More
Learn More
Note
Memo. Highlight information that users should also consider when browsing.
This is Blockquote Subtitle 1
This is a task list item
This is unordered list item
This is ordered list item
This is Collapsed Column 1
Note Code Block
xxxxxxxxxx
11/* Code Block */ public void hello()
This is text link, this is Button Link ❯
Tip
Tip. Optional information to help users achieve greater success.
This is Blockquote Subtitle 2
This is a task list item
This is unordered list item
This is ordered list item
This is Collapsed Column 2
Tip Code Block
xxxxxxxxxx
11/* Code Block */ public void hello()
This is text link, this is Button Link ❯
Important
Important. Information critical to user success.
This is Blockquote Subtitle 3
This is a task list item
This is unordered list item
This is ordered list item
This is Collapsed Column 3
Important Code Block
xxxxxxxxxx
11/* Code Block */ public void hello()
This is text link, this is Button Link ❯
Warning
Note. Key content requiring immediate user attention due to potential risks.
This is Blockquote Subtitle 4
This is a task list item
This is unordered list item
This is ordered list item
This is Collapsed Column 4
Warning Code Block
xxxxxxxxxx
11/* Code Block */ public void hello()
This is text link, this is Button Link ❯
Caution
Warning/Prohibition. Potential negative consequences of actions.
This is Blockquote Subtitle 5
This is a task list item
This is unordered list item
This is ordered list item
This is Collapsed Column 5
Caution Code Block
xxxxxxxxxx
11/* Code Block */ public void hello()
This is text link, this is Button Link ❯
Blockquote Embedded GSA
Note
NOTE
Tip
TIP
Important
IMPORTANT
Warning
WARNING
Caution
CAUTION
VLOOK™ also supports column layout for GitHub Style Alert
If you have more needs or suggestions about the above content, feel free to provide feedback~
Markdown FansQ
「When writing documents with Markdown, how can I highlight key content using modern visual elements like "tag"?」
VLOOKA
T2 Set the "inline code" content in Markdown (like `tag`
) to "italic" to achieve beautiful and practical "tag" formatting!
Applicable Scope •••
Editing
✓ SupportedGnExport HTML
✓ SupportedGn
For example, these "single-level tag": this tag
Rd or that tag
Bu! can also be gradient tag
T1T2
For example, these "multi-level tag": This is titleThis is content
Bn Chemical formulaH₂O
is water💦Se, or like this Enabledlight
Gn light
DisabledGy
Continue reading below to see how this is achieved~
Single-level tag are the most basic form of tag without further classification or structure. They are simple and easy to use, typically used to identify specific common information.
For example VIP
BnGd Pending
Rd Follow-up needed
Bu Important
Pu!
tab
Syntax
Wrap the text to be set as a tag with code symbols
`
, and set it to "italic"Corresponding Markdown syntax:
*`This is a tag`*
Shortcut
Select the text, then press Cmd / Control + i to set as italic, then press ` to automatically wrap
Tip
Supports adding preset color codes after the tag to specify index-en.mdcolors (supports regular/emphasized styles) or index-en.mdgradient colors. If not specified, defaults to T2
;
To modify the default color code, use the "Plugin Adjustment Parameters" tag
to specify.
tab
Tag (Regular Style) Preset Color Codes and Examples
index-en.mdPreset Color Code | Recommended Application Scenarios | Rendering Effect |
---|---|---|
Wn | Warning, Danger, Critical Items, Deletion | Wn Regular Style Wn |
Rd | : | Rd Regular Style Rd |
Og | Reminder, Notice, Fix | Og Regular Style Og |
Ye | Attention, Optimization, Memo, Explanation | Ye Regular Style Ye |
Lm | Hint, Reference, New | Lm Regular Style Lm |
Gn | : | Gn Regular Style Gn |
Mn | : | Mn Regular Style Mn |
Ol | : | Ol Regular Style Ol |
Aq | Quote Block, Announcement | Aq Regular Style Aq |
Cy | : | Cy Regular Style Cy |
Bu | Information, News | Bu Regular Style Bu |
Se | : | Se Regular Style Se |
La | : | La Regular Style La |
Vn | : | Vn Regular Style Vn |
Pu | Extension, Expansion, Reserved, Backup | Pu Regular Style Pu |
Ro | Youthful, Personality, Female | Ro Regular Style Ro |
Pk | : | Pk Regular Style Pk |
Gd | VIP, Finance, Engineering | Gd Regular Style Gd |
Bn | : | Bn Regular Style Bn |
Gy | Invalid, Deferred, Disabled, Ended | Gy Regular Style Gy |
Wt | Black & White | Wt Regular Style Wt |
Bk | : | Bk Regular Style Bk |
T1 | Current VLOOK™ Theme Primary Color | T1 Regular Style T1 |
T2 | Current VLOOK™ Theme Secondary Color | T2 Regular Style T2 |
Tag (Emphasized Style) Preset Color Codes and Examples
index-en.mdPreset Color Code | Recommended Application Scenarios | Rendering Effect |
---|---|---|
Wn! | Warning, Danger, Critical Items, Deletion | Wn Emphasized Style Wn! WnMn Gradient Style WnMn |
Rd! | : | Rd Emphasized Style Rd! RdGn Gradient Style RdGn |
Og! | Reminder, Notice, Fix | Og Emphasized Style Og! OgCy Gradient Style OgBu |
Ye! | Attention, Optimization, Memo, Explanation | Ye Emphasized Style Ye! YeGd Gradient Style YeAq |
Lm! | Hint, Reference, New | Lm Emphasized Style Lm! LmAq Gradient Style LmYe |
Gn! | : | Gn Emphasized Style Gn! GnRd Gradient Style GnRd |
Mn! | : | Mn Emphasized Style Mn! MnWn Gradient Style MnAq |
Ol! | : | Ol Emphasized Style Ol! OlCy Gradient Style OlOg |
Aq! | Quote Block, Announcement | Aq Emphasized Style Aq! AqLm Gradient Style AqLm |
Cy! | : | Cy Emphasized Style Cy! CyYe Gradient Style CyYe |
Bu! | Information, News | Bu Emphasized Style Bu! BuOl Gradient Style BuOl |
Se! | : | Se Emphasized Style Se! SeBn Gradient Style SeOg |
La! | : | La Emphasized Style La! LaYe Gradient Style LaYe |
Vn! | : | Vn Emphasized Style Vn! VnPu Gradient Style VnRo |
Pu! | Extension, Expansion, Reserved, Backup | Pu Emphasized Style Pu! PuVn Gradient Style PuYe |
Ro! | Youthful, Personality, Female | Ro Emphasized Style Ro! RoRd Gradient Style RoRd |
Pk! | : | Pk Emphasized Style Pk! PkGd Gradient Style PkLm |
Gd! | VIP, Finance, Engineering | Gd Emphasized Style Gd! GdYe Gradient Style GdYe |
Bn! | : | Bn Emphasized Style Bn! BnSe Gradient Style BnGd |
Gy! | Invalid, Deferred, Disabled, Ended | Gy Emphasized Style Gy! GyCy Gradient Style GyCy |
Wt! | Black & White | Wt Emphasized Style Wt! WtOg Gradient Style WtOg |
Bk! | : | Bk Emphasized Style Bk! BkOg Gradient Style BkOg |
T1! | Current VLOOK™ Theme Primary Color | T1 Emphasized Style T1! T1T2 Gradient Style T1T2 |
T2! | Current VLOOK™ Theme Secondary Color | T2 Emphasized Style T2! T2T1 Gradient Style T2T1 |
Multi-level tag are used for more complex tagging scenarios, generally dividing tag into two or three levels. Unlike single-level tag with single information, multi-level tag can reflect multi-dimensional information.
Two-level structure examples Customer LevelVIP
BnGd Customer LevelRegular Customer
Gy Document Classification
PublicBu Document Classification
ConfidentialRoRd Interaction Type
Email
Three-level structure examples Project PhaseRequirement Analysis
Feasibility Report Latest VersionV2.3
betaBuOg
tab
Syntax
First complete the setup according to "Tag";
Add corresponding content before or after the content wrapped by code symbols
`
Corresponding Markdown syntax:
*Segment 1`Segment 2`Segment 3*
Extended Usage
Adding content only after a single-level tag is equivalent to reversing the left-right style of a two-level multi-level tag, example: Before
Tag-A
Tag-A
AfterHighlight variable styles: For "Segment 2", supported variable formats:
{{variable}}
%variable%
$variable$
${variable}
#{variable}
var(variable)
Tip
Supports adding preset color codes after multi-level tag to specify index-en.mdcolors (default is emphasized style) or index-en.mdgradient colors. If not specified, defaults to T1
To modify the default color code, use the "Plugin Adjustment Parameters" badge
to specify.
tab
Multi-level Tag Preset Color Code Examples
index-en.mdPreset Color Code | Recommended Application Scenarios | Rendering Effect |
---|---|---|
Wn | Warning, Danger, Critical, Deletion | TitleContent {{Variable 1}} Wn TitleContent {{Variable 1}} GradientWnMn |
Rd | : | TitleContent %Variable 2% Rd TitleContent %Variable 2% GradientRdGn |
Og | Reminder, Notice, Vitality, Fix | TitleContent $Variable 3$ Og TitleContent $Variable 3$ GradientOgBu |
Ye | Attention, Optimization, Memo, Explanation | TitleContent ${Variable 4} Ye TitleContent ${Variable 4} GradientYeAq |
Lm | Hint, Memo, Reference, New | TitleContent #{Variable 5} Lm TitleContent #{Variable 5} GradientLmYe |
Gn | : | TitleContent var(Variable 6) Gn TitleContent var(Variable 6) GradientGnRd |
Mn | : | TitleTag Content Mn TitleTag Content GradientMnAq |
Ol | : | TitleTag Content Ol TitleTag Content GradientOlOg |
Aq | Quote Block, Icy, Announcement | TitleTag Content Aq TitleTag Content GradientAqLm |
Cy | : | TitleValue 1 Cy TitleValue 1 GradientCyYe |
Bu | Information, News, Ocean | TitleValue 2 Bu TitleValue 2 GradientBuOl |
Se | : | TitleValue 3 Se TitleValue 3 GradientSeOg |
La | : | TitleValue 4 La TitleValue 4 GradientLaYe |
Vn | : | TitleValue 5 Vn TitleValue 5 GradientVnRo |
Pu | Extension, Expansion, Important, Reserved | TitleTag Content Pu TitleTag Content GradientPuYe |
Ro | Youthful, Personality, Female | TitleTag Content Ro TitleTag Content GradientRoRd |
Pk | : | TitleTag Content Pk TitleTag Content GradientPkLm |
Gd | VIP, Finance, Engineering, Reward | TitleContent {{Variable 1}} Gd TitleContent {{Variable 1}} GradientGdYe |
Bn | : | TitleContent %Variable 2% Bn TitleContent %Variable 2% GradientBnGd |
Gy | Regular, Invalid, Deferred, Disabled | TitleContent $Variable 3$ Gy TitleContent $Variable 3$ GradientGyCy |
Wt | Black & White | TitleContent ${Variable 4} Wt TitleContent ${Variable 4} GradientWtOg |
Bk | : | TitleContent ${Variable 4} Bk TitleContent ${Variable 4} GradientBkOg |
T1 | Selected Theme "Primary Color" | TitleContent #{Variable 5} T1 TitleContent #{Variable 5} GradientT1T2 |
T2 | Selected Theme "Secondary Color" | TitleContent var(Variable 6) T2 TitleContent var(Variable 6) GradientT2T1 |
More Multi-level Tag Examples
index-en.mdFormat | Rendering Effect | More Rendering Examples |
---|---|---|
Three-segment | TitleContent 1 Content 2T1 | H₂+O= H₂OBu Pi3.14 1592653T2 |
: | : | Chemical FormulaH₂O is Water💦Se CircleInternal Angles 180 DegreesYe |
No Title (Segment 1) | Content 1 Content 2Gy | Light OFFGy National Day October 1stRd |
Markdown FansQ
「I hope to add hyperlinks to tag for easy association with other documents or external information related to the tag」
VLOOKA
T2 Supports adding hyperlinks to tag. Just select the tag and directly set it according to Markdown hyperlink syntax.
Applicable Scope •••
Editing
✓ Not SupportedGyExport HTML
✓ SupportedGn
Here are tag with hyperlinks, try them out~
VIP Custom Theme
BnGd VLOOK@GitHub
VLOOKGitHub
@MadMaxChowT1T2 🎁 VIP
Submit My Custom RequirementsBnGdBnGdBn
Tip
Since clicking a "tag" is copying tag content, after exporting to HTML, hovering over the tag will show a separate entry to open the link.
If you have more needs or suggestions about the above content, feel free to provide feedback at any time~
Markdown FansQ
「When making documents with Markdown, I hope to visualize progress-related information more intuitively」
VLOOKA
T2 This is really very Easy for VLOOK™, just combine Markdown's "bold, highlight" these two standard formats to achieve it easily
Applicable Scope •••
Editing
✓ Not SupportedGyExport HTML
✓ SupportedGn
tab
Syntax
Set the progress numerical content to the following format combination: first "bold", then "highlight"
Corresponding Markdown syntax:
**==Progress Value==**
Shortcut
Select the text, then press Cmd / Control + B to set as bold, then press Cmd / Control + ⇧ Shift + H to set as highlight
Supports adding preset color codes after the progress bar to specify colors. If not specified, it will automatically adapt colors based on specific values, as shown in the table below:
Progress Value Explanation
When it's a specific value, directly specify a fixed value, examples:
Regular: index-en.md80.5
Overflow: index-en.md120 index-en.md-35
When it's
?
, automatically calculate the completion progress of all subtasks in the following task list.index-en.md( The progress during editing is illustrative, the actual progress is subject to the rendering after exporting HTML )index-en.md
Static Progress Bar Examples
Static Progress Bar Different Color Examples
Default Auto-Adapt Color index-en.mdSupports Specifying Preset Color Codes == index-en.md-25 Wn index-en.md5.5Wn index-en.md0 Rd index-en.md10Rd index-en.md5 Og index-en.md15Og index-en.md19 Ye index-en.md20Ye index-en.md20 Lm index-en.md25Lm index-en.md39 Gn index-en.md30Gn index-en.md40 Mn index-en.md35Mn index-en.md59 Ol index-en.md40Ol index-en.md60 Aq index-en.md45Aq index-en.md79 Cy index-en.md50Cy index-en.md80 Bu index-en.md55Bu index-en.md99 Se index-en.md60Se index-en.md100 La index-en.md65La index-en.md125 Vn index-en.md70Vn - Gy index-en.md75Gy : Bk index-en.md80Bk : Pu index-en.md85Pu : Ro index-en.md90Ro : Pk index-en.md95Pk : Gd index-en.md100Gd : Bn index-en.md120Bn : T1 index-en.md-35T1 : T2 index-en.md0T2 Gy
Automatically Calculate Task Item Completion Progress Example
Overall Task Progress index-en.md?
1. Analyze Target Market Demand index-en.md?
Survey Target Customer Groups index-en.md?
Develop Questionnaire or Face-to-Face Interview Plan
Collect Customer Needs and Preference Information for Products or Services
Research Competitors index-en.md?
Analyze Competitor Products, Pricing Strategies and Market Share
Discover Competitor Strengths and Weaknesses, and Compare with Own
2. Collect Market Data index-en.md?
Consult Industry Reports and Data index-en.md?
Consult Industry Reports and Statistics Released by Industry Associations
Collect Information on Industry Trends and Development Forecasts
Analyze Market Trends index-en.md?
Process Market Data Through Data Analysis Tools or Software
Discover and Explain Market Trends to Guide Project Decisions
Gy
If you have more needs or suggestions about the above content, feel free to provide feedback at any time~
Markdown FansQ
「When writing tutorials or guidance documents, for menu sequences, step operations, directory hierarchies and other contents, I hope to have simple and efficient typesetting」
VLOOKA
T2 This is really very Easy for VLOOK™, just combine Markdown's "italic, highlight" these two standard formats to achieve easily.
Applicable Scope •••
Editing
✓ SupportedGnExport HTML
✓ SupportedGn
Syntax
Set the breadcrumb content to the following format combination: first "italic", then "highlight"
Shortcut
Select content, then press Cmd / Control + i to set as italic, then press Cmd / Control + ⇧ Shift + h to set as highlight
Corresponding Markdown syntax:
*==This is breadcrumb content==*
Supported segment symbols:
>
/
\
->
→
▸
▶︎
During editing previews main style, and after exporting to HTML supports:
Automatically optimize style for "segment symbols"
Click to copy its original information
Caution
When the entire paragraph contains only breadcrumb content, it will be prioritized as caption format for "tables/illustrations/code blocks/multimedia" etc.;
Breadcrumb starting content cannot contain formatting (like bold, italic) or text links.
This describes menu sequence example: Menu > File > Export > Export Configuration, can also add text links for certain operations as needed
This describes step operation example: Login Account ▸ Preferences ▶︎ Modify Personal Information, can be used to show entry guidance for target operations
This describes directory hierarchy example: /Root Directory/Subdirectory 1/Subdirectory 1.1, C:\Program Files\Applications
Breadcrumbs in Tables Example
Directory Hierarchy Example in Table (Non-exclusive) | Menu Sequence in Table (Exclusive) |
---|---|
Directory: /Root Directory/Subdirectory 1/Subdirectory 1.1 | Menu -> File → Export > Export Configuration |
If you have more needs or suggestions about the above content, feel free to provide feedback at any time~
Markdown FansQ
「When making training documents with Markdown, hope to hide 'answers' like scratch cards, only showing when clicked」
VLOOKA
T2 This is really very Easy for VLOOK™, just combine Markdown "italic, bold" these two standard formats to achieve easily.
Applicable Scope •••
Editing
✓ SupportedGnExport HTML
✓ SupportedGn
Syntax
Set content to be hidden to following format combination: first "italic", then "bold"
Shortcut
Select content, then press Cmd / Control + i to set as italic, then press Cmd / Control + b to set as bold
Hint text defaults to
••••
Bk! , to specify just add directly before bold
Corresponding Markdown syntax:
*Hint Text**Hidden Content***
(Supports adding preset color codes after scratch card to specify color, defaults to
Gy
if not specified)
Tip
To modify default color code, use "Plugin Adjustment Parameters" coating
to specify.
index-en.mdPreset Color Code | Rendering Effect |
---|---|
(Uses default when not specified) | index-en.mdThis is scratch card without specified hint |
: | Favorite bamboo-eating animal?Panda |
Rd | Per ␣sistenceRd Un ␣remittingRd |
Og | "Good night" in Cantonese?早[zou2] 唞[tau5]Og |
Ye | 「Water」in English Me???Meter ❌Ye Wa???Water ✅Ye |
Lm | How to say "thank you" in English?Thank youLm |
Gn | AppSecret Application Keycf67c3839f0214dcGn |
Aq | Third planet in solar system?EarthAq |
Cy | Largest ocean on Earth?PacificCy |
Bu | Largest of 7 continents?AsiaBu |
Se | World's highest peak?Mount EverestSe |
Vn | Largest human organ?SkinVn |
Pu | Smallest planet?MercuryPu |
Ro | Country with most islands?NorwayRo |
Pk | Which city is famous for its leaning tower?PisaPk |
Gd | Longest river?NileGd |
Bn | Largest planet in solar system?JupiterBn |
Gy | World's deepest trench?MarianaGy |
T1 | World's largest freshwater lake?BaikalT1 |
T2 | World's largest land mammal?African ElephantT2 |
If you have more needs or suggestions about the above content, feel free to provide feedback at any time~
Markdown FansQ
「Hope Markdown documents can conveniently add phonetic notation (like: pinyin, foreign language comparison), so my language training documents and e-books can be more outstanding」
VLOOKA
T2 By extending Markdown superscript syntax ^ ^
, easily meets practical "phonetic notation" typesetting needs!
Applicable Scope •••
Editing
✓ SupportedGnExport HTML
✓ SupportedGn
Syntax
Add corresponding phonetic notation content after any character needing phonetic notation, and set this content to following format combination: First "italic", then "superscript"
Corresponding Markdown syntax:
_^Phonetic Notation^_
tab
Important
To distinguish Typora's default single asterisk *italic*
marked italics, italic in color codes recommends using Markdown's other italic mark syntax: underscore _italic_
Note
After exporting HTML, effect equals HTML 5 index-en.mdruby, index-en.mdrp, index-en.mdrt tag, and supports online definition or translation when clicking phonetic notation.
「Waydào begets one; one begets two; two begetsshēng three; three begets myriadwàn thingswùBuRoGn」── Dao De Jing•Laozi
Multilingual Phonetic Application Example_Chinese/Japanese/Korean/English_
Category | Following is Markdown Format Content | Rendering Effect |
---|---|---|
Phonetic | 道_^ㄉㄠ^_ 德_^ㄉㄜ^_ 经_^ㄐㄧㄥˉ^_ | 道ㄉㄠ德ㄉㄜ经ㄐㄧㄥˉ |
Mandarin | 道_^dào^_ 德_^dé^_ 经_^jīng^_ | 道dào德dé经jīng |
Cantonese | 道_^dou^_ 德_^däk^_ 经_^gïng^_ | 道dou德däk经gïng |
Japanese | 鳥_^とり^_山_^やま^_ 明_^あきら^_ | 鳥とり山やま明あきら |
Korean | 대_^Dae^_ 한_^Han^_ 민_^Min^_ 국_^Gug^_ | 대Dae한Han민Min국Gug |
Chinese Phonetic Online Definition Service
When phonetic notation content is index-en.mdChinese, provided by
![]()
Click phonetic to open "汉典" official site, show corresponding "character" definition
Rd!
Non-Chinese Phonetic Online Translation Service
When phonetic notation content is index-en.mdnot Chinese, provided by
![]()
Click phonetic to open "Bing Translator" official site, automatically translate Japanese "kana" parts
Other cases, translate the "character" being annotated
Bu!
Applicable Scope •••
Editing
✓ Not SupportedGyExport HTML
✓ SupportedGn
Caution
Code-style phonetic notation is old phonetic syntax, not recommended for new documents!
This feature only supports existing documents, or when needing to add same phonetic notation to multiple characters simultaneously. Future versions may remove support for this syntax.
Syntax:
`{text}(symbol)`
text
: Characters needing "phonetic notation, pinyin, annotation"
symbol
: Corresponding phonetic notation, pinyin symbols, or annotation content
After exporting HTML, effect equals HTML 5 index-en.mdruby, index-en.mdrp, index-en.mdrt tag, and supports online definition or translation when clicking phonetic notation.
Gy
「{道}(dào)
生一,一生二,二{生}(shēng)
三,三生{万物}(wàn wù)
」── 道德经•老子
Multilingual Phonetic Application_Chinese/Japanese/Korean/English_
Category | Following is Markdown Format Content | Rendering Effect |
---|---|---|
Phonetic | `{道}(ㄉㄠˋ)` `{德}(ㄉㄜˊ)` `{经}(ㄐㄧㄥˉ)` | {道}(ㄉㄠˋ) {德}(ㄉㄜˊ) {经}(ㄐㄧㄥˉ) |
Mandarin | `{道}(dào)` `{德}(dé)` `{经}(jīng)` | {道}(dào) {德}(dé) {经}(jīng) |
Cantonese | `{道德经}(dou däk gïng)` | {道德经}(dou däk gïng) |
Japanese | `{鳥山}(とりやま)` `{明}(あきら)` | {鳥山}(とりやま) {明}(あきら) |
Korean | `{대 한 민 국}(Dae Han Min Gug)` | {대 한 민 국}(Dae Han Min Gug) |
Chinese-English | `{道德经}(The Scripture of Ethics)` | {道德经}(The Scripture of Ethics) |
English-Chinese 1 | `{The Scripture}(经)` of `{Ethics}(道德)` | {The Scripture}(经) of {Ethics}(道德) |
English-Chinese 2 | `{The Scripture of Ethics}(道德经)` | {The Scripture of Ethics}(道德经) |
If you have more needs or suggestions about the above content, feel free to provide feedback at any time~
Note
More scripted chart styles, and script writing specifications combined with VLOOK™ related content详见《Scripted Charts for Markdown》。
Markdown FansQ
「If don't like Mermaid's default styles, and hope to automatically adapt to Dark Mode, what to do?」
VLOOKA
T2 Automatically provides deep style optimization.
Applicable Scope •••
Editing
✓ SupportedGnExport HTML
✓ SupportedGn
Unified and Optimized Styles
Flowchart Example(Above "Branch Flow" content continued by below chart)
子图
子图的子图
分支
分支
分支
重要分支
条件1
条件2
条件3
条件4
开始
准备
节点
可选
子流程
存档
A
(同页)
数据
文件
双圈圆
点击可访问
Github
判断?
结束
手工输入
手动操作
B (离页)
A
(同页)
Branch Flow Example (Continuing from Above Diagram)
B (离页)
节点
结束
Class Diagram Example
Inheritance
继承
Composition
组合
Aggregation
聚合
Association
关联
Link (Solid)
Dependency
依赖
Realization
实现
Link (Dashed)
«interface»
classA
+public attribute
-private attribute
#protected attribute
~package attribute
+public method()
-private method()
#protected method()
~package method()
classB
«enumeration»
classC
Rd
Bu
Gn
WHITE
BLACK
classD
classE
classF
classG
classH
classI
classJ
classK
classL
classM
classN
classO
classP
Mind Map Example
Markup Extensions for "Sequence Diagrams"
Supports marking different types of roles (important systems, external systems) to present different styles
Optimizes the appearance of
opt
Pualt / else
Rdloop
Cypar
Og tag with different styles, and automatically translates them based on the browser's current languageFor more details about markup extensions, see here ❯❯
Sequence diagram with multiple different roles, clearer and more friendly
About caption and auto-numbering for Mermaid diagrams
If you have more needs or suggestions about the above content, feel free to provide feedback~
Applicable Scope •••
Editing
✓ SupportedGnExport HTML
✓ SupportedGn
This is an inline mixed "mathematical formula"
Check the LaTeX code for the above inline formulas
Mathematical formula code:
$\lim_{x \to \infty} \exp{-x} = 0$
Chemical formula code:
$\ce{CH4 + 2 $\left( \ce{O2 + 79/21 N2} \right)$}$
Standalone formula block (```math syntax)
Check the Gitlab/GitHub style code for the above formula
xxxxxxxxxx
31```math
2x = {-b \pm \sqrt{b^2-4ac} \over 2a}
3```
Standalone formula block ($$ syntax)Second caption
You can also index-en.mdreference block formula numbers for navigation, for example refer to formula:
Check the LaTeX code for the above standalone formula block
xxxxxxxxxx
111
2$$
3\begin{align*}
4y = y(x,t) &= A e^{i\theta} \\
5&= A (\cos \theta + i \sin \theta) \label{mymath-1}\tag{My Math - 1} \\
6&= A (\cos(kx - \omega t) + i \sin(kx - \omega t)) \\
7&= A\cos(kx - \omega t) + i A\sin(kx - \omega t) \\
8&= A\cos \Big(\frac{2\pi}{\lambda}x - \frac{2\pi v}{\lambda} t \Big) + i A\sin \Big(\frac{2\pi}{\lambda}x - \frac{2\pi v}{\lambda} t \Big) \label{mymath-2}\tag{My Math - 2} \\
9&= A\cos \frac{2\pi}{\lambda} (x - v t) + i A\sin \frac{2\pi}{\lambda} (x - v t) \label{mymath-3}\tag{My Math - 3}
10\end{align*}
11$$
index-en.mdTitle | Formula | Description |
---|---|---|
Euler's Formula | ||
Pythagorean Theorem (Pythagoras' Theorem) | In a right-angled triangle on a plane, the square of the hypotenuse equals the sum of the squares of the other two sides. If the lengths of the two perpendicular sides are | |
Mass-Energy Equivalence | Where: | |
Einstein Field Equations | What attracts you is not gravity, but curved spacetime | |
Maxwell's Equations | Maxwell's Equations |
About caption and auto-numbering for Formula
If you have more needs or suggestions about the above content, feel free to provide feedback~
Markdown FansQ
「Hope Markdown can embed videos from mainstream streaming platforms~」
VLOOKA
T2 To better utilize the rich video resources from mainstream streaming platforms (like: Bilibili, Xigua, YouTube), provides theme style adaptation and optimization support~
Applicable Scope •••
Editing
✓ SupportedGnExport HTML
✓ SupportedGn
Tip
Embedded videos from streaming platforms also support "caption, auto-numbering", the method is consistent with adding caption and auto-numbering to "tables" ... Details ❯
Embedded Bilibili Video (Landscape)
How to get Bilibili video's "embed code"?
(If you find the video cannot play after exporting to HTML, please check if the src content in the embed code doesn't have the
https:
prefix, add it and try again)
Recommended to disable autoplay
Since Bilibili videos autoplay by default, if you want to adjust this, you can add
autoplay=0
at the end of thesrc
field in the embed code, example:Example of adding "no autoplay" tag
xxxxxxxxxx
11<iframe src="https://player.bilibili.com/player.html?bvid=BV1zhaiegE73&page=1&autoplay=0" scrolling="no" border="0" frameborder="no" framespacing="0" allowfullscreen="true"> </iframe>
Embedded Douyin Video (Portrait)
How to get Douyin video's "embed code"?
Since Douyin doesn't provide an official "embed code" sharing method like Bilibili, you can use Bilibili's embed code as a template, replacing the
src
with Douyin's video stream link.The Douyin video stream link specifies the video identifier through
vid
, which can be copied from the address bar after opening the video through a computer browser on Douyin homepage. Example:Address bar content after opening Douyin video in browser
xxxxxxxxxx
11https://www.douyin.com/discover?modal_id=7365002781440085275
Example template for Douyin video "embed code"
xxxxxxxxxx
11<iframe src="https://open.douyin.com/player/video?vid=7122698345268743431#portrait" scrolling="no" border="0" frameborder="0" framespacing="0" allowfullscreen="true"></iframe>
Tip
Videos from all streaming platforms are displayed in "landscape" by default. If you want to display in "portrait", just add #pt
at the end of the src
content in the video embed code~
Embedded Xigua Video
How to get Xigua video's "embed code"?
Embedded Tencent Video
How to get Tencent video's "embed code"?
Embedded YouTube Video (Landscape)
Embedded YouTube Video (Portrait)
How to get YouTube video's "embed code"?
Markdown FansQ
「Hope Markdown can support videos, so I can create multimedia documents~」
VLOOKA
T2 Currently Markdown tools don't have support for videos, but now it can be achieved at almost "zero" cost!
Applicable Scope •••
Editing
× Not SupportedGyExport HTML
✓ SupportedGn
The syntax is completely consistent with Markdown's image insertion!
Syntax:

Syntax Example:

Supported Video Formats: Ogg (.ogv), MPEG4 (.mp4), WebM (.webm)
In addition to basic video controls, it also supports W3C standard control features!
Achieved by adding VLOOK™ standard parameters to the "Video URL", details as follows:
Advanced Application Instructions for Video Control
index-en.mdCustomizable Features | URL Parameters | Example |
---|---|---|
Enable Autoplay | autoplay=true | |
Enable Loop | loop=true | |
Enable Preload | preload=true | |
Specify Width | width=pixel value | Specify video width (unit: px) |
Specify Height | height=pixel value | Specify video height (unit: px) |
Tip
Since the syntax is the same as images, videos also support "caption, auto-numbering" ... Details ❯
Note
If you have questions about using "URL parameters, URL anchors", you can learn more at "Image Address Extension Notes"~
Markdown FansQ
「Hope Markdown can support audio, so I can create electronic audiobooks~」
VLOOKA
T2 Currently Markdown tools don't have support for audio, but now it can be achieved at almost "zero" cost!
Applicable Scope •••
Editing
× Not SupportedGyExport HTML
✓ SupportedGn
The syntax is completely consistent with Markdown's image insertion!
Syntax:

Syntax Example:

Supported Audio Formats: MP3 (.mp3), Ogg (.ogg), Wav (.wav), M4a (.m4a)
Want to try changing the default audio interface?
Audio defaults to the browser's "standard interface", in VLOOK™ it also supports a customized "Mini interface", AMAZING!
Achieved by adding VLOOK™ standard parameters to the "Audio URL":
URL Parameter:
controls=mini
Parameter Example:
media/whistle.mp3?controls=mini
index-en.md◄ Click to play
In addition to basic audio controls, it also supports W3C standard control features!
Achieved by adding VLOOK™ standard parameters to the "Audio URL", details as follows:
Advanced Application Instructions for Audio Control
index-en.mdCustomizable Features | VLOOK™ Standard URL Parameters | Example |
---|---|---|
Enable Mini Mode Playback Controls | controls=mini | |
Enable Play/Pause Mode (Default is Play/Stop) | pause=true ⚠️ Note Rd! index-en.mdOnly effective in Mini mode | |
Show Audio Duration | duration=true ⚠️ Note Rd! index-en.mdOnly effective in Mini mode | |
Enable Autoplay | autoplay=true | |
Enable Loop | loop=true | |
Enable Preload | preload=true |
Tip
Since the syntax is the same as images, when audio is displayed in "standard mode", it also supports "caption, auto-numbering" ... Details ❯
Note
If you have questions about using "URL parameters, URL anchors", you can learn more at "Image Address Extension Notes"~
About caption and auto-numbering for multimedia