import remarkFrontmatter from 'remark-frontmatter' import remarkMdxFrontmatter from 'remark-mdx-frontmatter' import remarkGfm from 'remark-gfm' /** * Shared MDX remark pipeline. * Includes GFM so tables/task-lists/strikethrough/footnotes render correctly. */ export const mdxRemarkPlugins = [ remarkFrontmatter, remarkMdxFrontmatter, remarkGfm, ]