Post

Chirpy Callouts

How to use callouts in your Chirpy blog.

Chirpy Callouts

Callouts are special blocks in Markdown that help highlight important information or provide additional context. They are visually distinct from regular text, often featuring colored backgrounds and icons.

The formula is as follows:

1
2
3
4
5
>Insert your text here. 
{: .prompt-tip}
{: .prompt-info}
{: .prompt-warning}
{: .prompt-danger}


Tip Callout

1
2
>An example showing the tip type prompt. 
{: .prompt-tip }

An example showing the tip type prompt.


Info Callout

1
2
>An example showing the tip type prompt. 
{: .prompt-info }

An example showing the info type prompt.


Warning Callout

1
2
>An example showing the warning type prompt. 
{: .prompt-warning }

An example showing the warning type prompt.


Danger Callout

1
2
>An example showing the danger type prompt. 
{: .prompt-danger }

An example showing the danger type prompt.

This post is licensed under CC0 1.0 by the author.