feat: embed webp images (#666)
This commit is contained in:
		@@ -201,7 +201,7 @@ export const ObsidianFlavoredMarkdown: QuartzTransformerPlugin<Partial<Options>
 | 
			
		||||
                if (value.startsWith("!")) {
 | 
			
		||||
                  const ext: string = path.extname(fp).toLowerCase()
 | 
			
		||||
                  const url = slugifyFilePath(fp as FilePath)
 | 
			
		||||
                  if ([".png", ".jpg", ".jpeg", ".gif", ".bmp", ".svg"].includes(ext)) {
 | 
			
		||||
                  if ([".png", ".jpg", ".jpeg", ".gif", ".bmp", ".svg", ".webp"].includes(ext)) {
 | 
			
		||||
                    const dims = alias ?? ""
 | 
			
		||||
                    let [width, height] = dims.split("x", 2)
 | 
			
		||||
                    width ||= "auto"
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user