Release Notes
0.0.1-dev.2: ?? (??-??-????)
Features
- Allow 
titleto be specified as a markdown header in the callout’s content. 
::: todo
## Todo with Title Defined as Markdown in Content
Hello there!
:::- Added Lua type definitions for the 
custom-calloutfilter. 
Documentation
Bugfixes
0.0.1: Can you hear me now? (10-21-2024)
Features
custom-calloutenables the creation of custom callouts in a Quarto HTML document’s YAML header.- Specify the custom callout by using a unique key under the 
custom-calloutheader and setting the following properties:icon-symbol: Set the icon symbol for the callout using a valid string, emoji, or FontAwesome 6 icon.color: Set the color of the callout using a hex code or valid CSS color name.icon: Set totrueto display an icon.title: Set the title of the callout.appearance: Set the appearance of the callout to:"default"(icon, border and background coloring)"simple"(icon and border coloring), or"minimal"(border coloring).
 
---
title: "Custom Callout Examples"
format: html
custom-callout:    
  todo:
    icon-symbol: "📝"
    color: "pink"
  jjb:
    icon: true
    title: "fix for JJB"
    icon-symbol: "fa-clock"
    color: "#FFA500"
    appearance: "simple"
filters:
  - custom-callout
---
::: todo
Hello there!
:::
::: jjb
Please address this issue ...
:::