Liquid Tag Build Fix | Generated by AI
Build is GREEN! 🎉
status: completed
conclusion: success
Here’s the summary of what happened:
Root cause: Posts about the fine-tuning pipeline contained bare Liquid tag syntax in text (e.g. {% %}). Liquid tried to parse it as an unterminated tag and crashed the build.
Three commits, two distinct fixes:
-
_posts/en|zh/2026-06-12-fine-tuning-pipeline-*andnotes/2026-06-12-*— these files have NO raw wrapper, so the bare tag syntax needed inline escaping with raw/endraw pairs. -
_posts/en|zh/2026-06-14-fine-tuning-qwen3-*andnotes/2026-06-14-*— these files already have a file-level raw wrapper. My initial fix of adding inline raw/endraw pairs inside the outer wrapper actually BROKE them by prematurely closing the outer raw block. Reverted to the original bare syntax which is safe inside the existing wrapper.