Remove test hack that skipped markdown content rendering

694af1ef12e91e4a80871b6e8768886df1d1342d

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.
main.ts:197
Before
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: branchName
After
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 (renderer) {
      return await renderer.bind({
        data: {
          branch: branchName