Last active
January 15, 2025 15:56
-
-
Save jtmuller5/3f2522133fc0b4c3abbb8054c4e73e48 to your computer and use it in GitHub Desktop.
Astro, GitHub, and Hugo callouts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"GitHub Callout": { | |
"scope": "markdown", | |
"prefix": "githubCallout", | |
"body": [ | |
"> [!${1|NOTE,TIP,IMPORTANT,WARNING,CAUTION|}]", | |
"> $2" | |
], | |
"description": "GitHub Callout" | |
}, | |
"Astro Callout": { | |
"scope": "markdown", | |
"prefix": "astroCallout", | |
"body": [ | |
":::${1|note,tip,caution,danger|}", | |
"$2", | |
":::" | |
], | |
"description": "Astro Callout" | |
}, | |
"Astro Custom": { | |
"scope": "markdown", | |
"prefix": "astroCustom", | |
"body": [ | |
":::tip[$1]", | |
"$2", | |
":::" | |
], | |
"description": "Astro Custom" | |
}, | |
"Hugo Callout": { | |
"scope": "markdown", | |
"prefix": "hugoCallout", | |
"body": [ | |
"> [!${1|ABSTRACT,CAUTION,CODE,CONCLUSION,DANGER,ERROR,EXAMPLE,EXPERIMENT,GOAL,IDEA,IMPORTANT,INFO,MEMO,NOTE,NOTIFY,QUESTION,QUOTE,SUCCESS,TASK,TIP,WARNING|}]", | |
"> $2" | |
], | |
"description": "Hugo Callout" | |
}, | |
"Hugo Custom": { | |
"scope": "markdown", | |
"prefix": "hugoCustom", | |
"body": [ | |
"> [!${1|ABSTRACT,CAUTION,CODE,CONCLUSION,DANGER,ERROR,EXAMPLE,EXPERIMENT,GOAL,IDEA,IMPORTANT,INFO,MEMO,NOTE,NOTIFY,QUESTION,QUOTE,SUCCESS,TASK,TIP,WARNING|}] ${2}", | |
"> $3" | |
], | |
"description": "Hugo Callout" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://starlight.astro.build/guides/authoring-content/#note-aside
https://github.com/orgs/community/discussions/16925
https://github.com/KKKZOZ/hugo-admonitions