mirror of
https://github.com/alrayyes/wiki.git
synced 2025-05-02 14:58:14 +00:00
fix: allow formatting in callout titles
This commit is contained in:
parent
22de92f6c4
commit
7cb1c291c8
2 changed files with 8 additions and 10 deletions
quartz/plugins/transformers
|
@ -387,10 +387,7 @@ export const ObsidianFlavoredMarkdown: QuartzTransformerPlugin<Partial<Options>
|
|||
match.input.slice(calloutDirective.length).trim() || capitalize(calloutType)
|
||||
const titleNode: Paragraph = {
|
||||
type: "paragraph",
|
||||
children:
|
||||
restOfTitle.length === 0
|
||||
? [{ type: "text", value: titleContent + " " }]
|
||||
: restOfTitle,
|
||||
children: [{ type: "text", value: titleContent + " " }, ...restOfTitle],
|
||||
}
|
||||
const title = mdastToHtml(titleNode)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue