This commit is contained in:
Jacky Zhao 2023-06-06 00:00:38 -07:00
parent 700036e84c
commit 89e0311a98
3 changed files with 55 additions and 14 deletions

View File

@ -5,6 +5,7 @@ import { findAndReplace } from "mdast-util-find-and-replace"
import { slugify } from "../../path" import { slugify } from "../../path"
import rehypeRaw from "rehype-raw" import rehypeRaw from "rehype-raw"
import { visit } from "unist-util-visit" import { visit } from "unist-util-visit"
import path from "path"
export interface Options { export interface Options {
highlight: boolean highlight: boolean
@ -111,21 +112,56 @@ export class ObsidianFlavoredMarkdown extends QuartzTransformerPlugin {
const backlinkRegex = new RegExp(/!?\[\[([^\[\]\|\#]+)(#[^\[\]\|\#]+)?(\|[^\[\]\|\#]+)?\]\]/, "g") const backlinkRegex = new RegExp(/!?\[\[([^\[\]\|\#]+)(#[^\[\]\|\#]+)?(\|[^\[\]\|\#]+)?\]\]/, "g")
return (tree: Root, _file) => { return (tree: Root, _file) => {
findAndReplace(tree, backlinkRegex, (value: string, ...capture: string[]) => { findAndReplace(tree, backlinkRegex, (value: string, ...capture: string[]) => {
const [fp, rawHeader, rawAlias] = capture
const anchor = rawHeader?.trim() ?? ""
const alias = rawAlias?.slice(1).trim()
// embed cases
if (value.startsWith("!")) { if (value.startsWith("!")) {
// TODO: handle embeds const ext = path.extname(fp).toLowerCase()
} else { const url = slugify(fp.trim()) + ext
const [path, rawHeader, rawAlias] = capture if ([".png", ".jpg", ".jpeg", ".gif", ".bmp", ".svg"].includes(ext)) {
const anchor = rawHeader?.trim() ?? "" const dims = alias ?? ""
const alias = rawAlias?.slice(1).trim() ?? path let [width, height] = dims.split("x", 2)
const url = slugify(path.trim() + anchor) width ||= "auto"
return { height ||= "auto"
type: 'link', return {
url, type: 'image',
children: [{ url,
type: 'text', data: {
value: alias hProperties: {
}] width, height
}
}
}
} else if ([".mp4", ".webm", ".ogv", ".mov", ".mkv"].includes(ext)) {
return {
type: 'html',
value: `<video src="${url}" controls></video>`
}
} else if ([".mp3", ".webm", ".wav", ".m4a", ".ogg", ".3gp", ".flac"].includes(ext)) {
return {
type: 'html',
value: `<audio src="${url}" controls></audio>`
}
} else if ([".pdf"].includes(ext)) {
return {
type: 'html',
value: `<iframe src="${url}"></iframe>`
}
} }
// otherwise, fall through to regular link
}
// internal link
const url = slugify(fp.trim() + anchor)
return {
type: 'link',
url,
children: [{
type: 'text',
value: alias ?? fp
}]
} }
}) })
} }

View File

@ -92,7 +92,7 @@ export function createFileParser(baseDir: string, fps: string[], verbose: boolea
console.log(`[process] ${fp} -> ${file.data.slug}`) console.log(`[process] ${fp} -> ${file.data.slug}`)
} }
} catch (err) { } catch (err) {
console.log(chalk.red(`Failed to process \`${fp}\`: `) + err) console.log(chalk.red(`\nFailed to process \`${fp}\`: `) + err)
process.exit(1) process.exit(1)
} }
} }

View File

@ -219,3 +219,8 @@ section {
padding: 0 1em padding: 0 1em
} }
} }
audio, video {
width: 100%;
border-radius: 5px;
}