fmt
This commit is contained in:
		
							parent
							
								
									c55d54f068
								
							
						
					
					
						commit
						aed3f5fccb
					
				
					 1 changed files with 27 additions and 29 deletions
				
			
		| 
						 | 
				
			
			@ -309,11 +309,8 @@ export const ObsidianFlavoredMarkdown: QuartzTransformerPlugin<Partial<Options>
 | 
			
		|||
                const titleContent =
 | 
			
		||||
                  match.input.slice(calloutDirective.length).trim() || capitalize(calloutType)
 | 
			
		||||
                const titleNode: Paragraph = {
 | 
			
		||||
                  type: 'paragraph',
 | 
			
		||||
                  children: [
 | 
			
		||||
                    {type: 'text', value: titleContent + " "},
 | 
			
		||||
                    ...restChildren
 | 
			
		||||
                  ]
 | 
			
		||||
                  type: "paragraph",
 | 
			
		||||
                  children: [{ type: "text", value: titleContent + " " }, ...restChildren],
 | 
			
		||||
                }
 | 
			
		||||
                const title = mdastToHtml(titleNode)
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -352,7 +349,8 @@ export const ObsidianFlavoredMarkdown: QuartzTransformerPlugin<Partial<Options>
 | 
			
		|||
                node.data = {
 | 
			
		||||
                  hProperties: {
 | 
			
		||||
                    ...(node.data?.hProperties ?? {}),
 | 
			
		||||
                    className: `callout ${collapse ? "is-collapsible" : ""} ${defaultState === "collapsed" ? "is-collapsed" : ""
 | 
			
		||||
                    className: `callout ${collapse ? "is-collapsible" : ""} ${
 | 
			
		||||
                      defaultState === "collapsed" ? "is-collapsed" : ""
 | 
			
		||||
                    }`,
 | 
			
		||||
                    "data-callout": calloutType,
 | 
			
		||||
                    "data-callout-fold": collapse,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue