Tucker McKnight <tmcknight@instructure.com> | Sat Jun 20 2026
Remove test hack that skipped markdown content rendering I was testing with a large repo (buildawesome), and markdown rendering wasn't working, so I temporarily skipped it.
196 197 198 199 200 201
eleventyConfig.addAsyncFilter("renderContentIfAvailable", async (contentString: string, branchName: string) => {
// TODO: give the user an option to skip this. E.g. when doing the 11ty repo, complains about missing tags.
const renderer = eleventyConfig?.javascript?.functions?.renderContent
if (false && renderer) {
return await renderer.bind({
data: {
branch: branchName196 197 198 199 200 201
eleventyConfig.addAsyncFilter("renderContentIfAvailable", async (contentString: string, branchName: string) => {
// TODO: give the user an option to skip this. E.g. when doing the 11ty repo, complains about missing tags.
const renderer = eleventyConfig?.javascript?.functions?.renderContent
if (renderer) {
return await renderer.bind({
data: {
branch: branchName