From c56abbb2e12f8671dd5144cfcdfc77eded6cee21 Mon Sep 17 00:00:00 2001 From: "Kenneth G. Franqueiro" Date: Wed, 9 Oct 2024 16:19:42 -0400 Subject: [PATCH] Formatting pass --- 11ty/CustomLiquid.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/11ty/CustomLiquid.ts b/11ty/CustomLiquid.ts index 536ddfe9ef..72f5357ceb 100644 --- a/11ty/CustomLiquid.ts +++ b/11ty/CustomLiquid.ts @@ -89,7 +89,7 @@ export class CustomLiquid extends Liquid { const isIndex = indexPattern.test(filepath); const isTechniques = techniquesPattern.test(filepath); const isUnderstanding = understandingPattern.test(filepath); - + if (!isTechniques && !isUnderstanding) return super.parse(html); const $ = flattenDom(html, filepath); @@ -517,7 +517,7 @@ export class CustomLiquid extends Liquid {

${$el.html()}

`); }); - + // Add header to example sections in Key Terms (aside) and Conformance (div) $("aside.example, div.example").each((_, el) => { const $el = $(el);