File size: 3,469 Bytes
0bd62e5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
import adapter from "@sveltejs/adapter-static";
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
import { redirects } from "./src/routes/redirects.js";
import fs from "fs";
import path from "path";
import { fileURLToPath } from "url";
import { mdsvex, code_highlighter } from "mdsvex";
import slugify from "@sindresorhus/slugify";
import { toString as to_string } from "hast-util-to-string";
const currentDir = path.dirname(fileURLToPath(import.meta.url));
let version = "4.0.0";
const get_version = async () => {
try {
const versionPath = path.join(
currentDir,
"src",
"lib",
"json",
"version.json"
);
if (!fs.existsSync(versionPath)) {
console.error(
"Using fallback version 4.0.0 as version.json was not found. Run `generate_jsons/generate.py` to get the latest version."
);
return version;
} else {
const versionData = fs.readFileSync(versionPath, "utf8");
const versionJson = JSON.parse(versionData);
version = versionJson.version;
}
} catch (error) {
console.error(
"Using fallback version 4.0.0 as version.json was not found. Run `generate_jsons/generate.py` to get the latest version."
);
}
return version;
};
get_version();
export function make_slug_processor() {
return function (name) {
const slug = slugify(name, { separator: "-", lowercase: true });
return slug;
};
}
const doc_slug = [];
function plugin() {
const get_slug = make_slug_processor();
return function transform(tree) {
tree.children.forEach((n) => {
if (n.type === "element" && ["h3"].includes(n.tagName)) {
const str_of_heading = to_string(n);
const slug = get_slug(str_of_heading);
doc_slug.push({
text: str_of_heading,
href: `#${slug}`,
level: parseInt(n.tagName.replace("h", ""))
});
if (!n.children) n.children = [];
n.properties.className = ["group", "header-tag"];
n.properties.id = [slug];
n.children.push({
type: "element",
tagName: "a",
properties: {
href: `#${slug}`,
className: ["invisible", "group-hover-visible"]
},
children: [
{
type: "element",
tagName: "img",
properties: {
src: "https://raw.githubusercontent.com/gradio-app/gradio/main/js/_website/src/lib/assets/img/anchor.svg",
className: ["anchor-img-small"]
},
children: []
}
]
});
}
});
};
}
/** @type {import('@sveltejs/kit').Config} */
const config = {
extensions: [".svelte", ".svx"],
preprocess: [
mdsvex({
extensions: [".svx"],
rehypePlugins: [plugin],
highlight: {
highlighter: async (code, lang) => {
const h = (await code_highlighter(code, lang, "")).replace(
/\{@html `|`\}/g,
""
);
return `<div class="codeblock"><CopyButton content={\`${code}\`}/>${h}</div>`;
}
}
}),
vitePreprocess()
],
kit: {
prerender: {
crawl: true,
entries: [
"*",
`/${version}/docs`,
`/${version}/guides`,
`/main/docs`,
`/main/guides`,
`/docs/js`,
`/docs/js/storybook`,
`/docs/js/`,
`/main/docs/js`,
`/main/docs/js/storybook`,
`/main/docs/js/`,
...Object.keys(redirects)
],
handleMissingId: "warn"
},
files: {
lib: "src/lib"
},
adapter: adapter(),
paths: {
relative: false
}
}
};
export default config;
|