From 13ba41f59d028528b615a3428942a7543c84dcb4 Mon Sep 17 00:00:00 2001 From: Brenton Farmer Date: Sun, 12 Apr 2026 20:00:01 -0700 Subject: [PATCH] Disable Liquid in local-jekyll.md to fix Pages build local-jekyll.md documents Liquid syntax (literal '{% include %}' etc. in code blocks). Jekyll processes Liquid before rendering, even content inside backticks, so it tries to parse those as actual directives and fails with 'Invalid syntax for include tag'. Fix: front-matter 'render_with_liquid: false' on this file. --- docs/site/local-jekyll.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/site/local-jekyll.md b/docs/site/local-jekyll.md index ade9f4b..b704332 100644 --- a/docs/site/local-jekyll.md +++ b/docs/site/local-jekyll.md @@ -1,3 +1,6 @@ +--- +render_with_liquid: false +--- # Running Jekyll Docs Locally (Docker) Reusable recipe for previewing `just-the-docs` / GitHub Pages sites locally