-
-
Notifications
You must be signed in to change notification settings - Fork 127
Open
Labels
Description
When using a Callout quote block, unless something is next to the admonition of [!NOTE]
, the 'callout-title-inner' div is empty
Example:
> [!Note]
> blah
Generates the following HTML
<div data-callout="important" class="callout">
<div class="callout-title">
<div class="callout-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="svg-icon lucide-pencil">
<line x1="18" y1="2" x2="22" y2="6"></line>
<path d="M7.5 20.5 19 9l-4-4L3.5 16.5 2 22z"></path>
</svg>
</div>
<div class="callout-title-inner"></div>
<div></div>
</div>
<div class="callout-content ">
<p>blah</p>
</div>
</div>
You currently have to do the following to replicate Obsidian behaviour
> [!Note] Note
> blah