diff --git a/CONTENT_BRIDGE.md b/CONTENT_BRIDGE.md index dadc0ab..b04f094 100644 --- a/CONTENT_BRIDGE.md +++ b/CONTENT_BRIDGE.md @@ -92,7 +92,9 @@ Use colocated relative assets: Quarto image attributes such as `{width=70%}` were removed during import. Going forward, use normal Markdown and let Astro CSS handle presentation. -Quarto callouts were converted to portable blockquotes: +### Callouts + +Write callouts as portable blockquotes. This is the canonical form: ```markdown > **Note** @@ -100,7 +102,7 @@ Quarto callouts were converted to portable blockquotes: > Text of the callout. ``` -Use the same convention for new notes: +Supported labels are `Note`, `Tip`, `Warning`, `Caution`, and `Aside`: ```markdown > **Warning** @@ -108,12 +110,78 @@ Use the same convention for new notes: > This point needs attention. ``` +Obsidian-style labels also work: + +```markdown +> [!tip] +> This is a tip. +``` + +For quick writing, a few leading emoji markers are recognized and stripped: + +```markdown +> 📝 This becomes a note. +> 💡 This becomes a tip. +> ⚡ This also becomes a tip. +> ⚠️ This becomes a warning. +``` + +In Astro these render as `