Skip to content

yukinoda/markdown-highlight-note-important-warning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 

Repository files navigation

Examples

Input:

> [!NOTE]  
> Highlights information that users should take into account, even when skimming.

> [!IMPORTANT]  
> Crucial information necessary for users to succeed.

> [!WARNING]  
> Critical content demanding immediate user attention due to potential risks.

Becomes:

Note

Highlights information that users should take into account, even when skimming.

Important

Crucial information necessary for users to succeed.

Warning

Critical content demanding immediate user attention due to potential risks.

Reference

[Markdown] An option to highlight a "Note" and "Warning" using blockquote (Beta)

Outdated

The below does not highlight "note" and "warning" anymore in GitHub markdowns

Input:

> **Note**
> This is a note

> **Warning**
> This is a warning

Just becomes:

Note This is a note

Warning This is a warning