Skip to content

Commit

Permalink
chore: remove markdoc.config loader
Browse files Browse the repository at this point in the history
  • Loading branch information
bholmesdev committed Feb 16, 2023
1 parent 3f040e4 commit f0b900a
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions packages/integrations/markdoc/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,6 @@ export default function markdoc(): AstroIntegration {
};
addContentEntryType(contentEntryType);

const markdocConfigUrl = new URL('./markdoc.config', config.srcDir);
const configFileLoad = `if (!config) {
try {
const importedConfig = await import(${JSON.stringify(markdocConfigUrl.pathname)});
console.log({importedConfig})
config = importedConfig.default.transform;
} catch {
config = {};
}
}`;

const viteConfig: InlineConfig = {
plugins: [
{
Expand All @@ -47,10 +36,7 @@ export default function markdoc(): AstroIntegration {
if (!id.endsWith('.mdoc')) return;
return `import { jsx as h } from 'astro/jsx-runtime';\nimport { Markdoc } from '@astrojs/markdoc';\nimport { Renderer } from '@astrojs/markdoc/components';\nexport const body = ${JSON.stringify(
code
)};\nexport function getParsed() { return Markdoc.parse(body); }\nexport async function getTransformed(inlineConfig) {
let config = inlineConfig;\n${
fs.existsSync(markdocConfigUrl) ? configFileLoad : ''
}\nreturn Markdoc.transform(getParsed(), config) }\nexport async function Content ({ config, components }) { return h(Renderer, { content: await getTransformed(config), components }); }\nContent[Symbol.for('astro.needsHeadRendering')] = true;`;
)};\nexport function getParsed() { return Markdoc.parse(body); }\nexport async function getTransformed(inlineConfig) { return Markdoc.transform(getParsed(), inlineConfig) }\nexport async function Content ({ config, components }) { return h(Renderer, { content: await getTransformed(config), components }); }\nContent[Symbol.for('astro.needsHeadRendering')] = true;`;
},
},
],
Expand Down

0 comments on commit f0b900a

Please sign in to comment.