From 312f1bceac96c8a295d381c9eddf7a82aef36573 Mon Sep 17 00:00:00 2001 From: Peter Mosses <18308236+pdmosses@users.noreply.github.com> Date: Mon, 4 Jul 2022 21:24:58 +0200 Subject: [PATCH] Suppress Liquid processing in CSS comments (#686) Fix #685 - Wrap scss file in comments with `{% raw %}` and `{% endraw %}` tags Co-authored-by: Matt Wang --- _sass/code.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/_sass/code.scss b/_sass/code.scss index c0ce04d..684a764 100644 --- a/_sass/code.scss +++ b/_sass/code.scss @@ -3,6 +3,8 @@ // // stylelint-disable selector-no-qualifying-type, declaration-block-semicolon-newline-after,declaration-block-single-line-max-declarations, selector-no-type, selector-max-type +// {% raw %} + code { padding: 0.2em 0.15em; font-weight: 400; @@ -131,3 +133,5 @@ figure.highlight { border-top-right-radius: 0; } } + +// {% endraw %}