From 8a9a8a345d03883ed978eacedd5bdd651e1505b9 Mon Sep 17 00:00:00 2001
From: PLanCompS <18308236+pdmosses@users.noreply.github.com>
Date: Tue, 7 Jul 2020 19:54:31 +0200
Subject: [PATCH] Optimisations

Optimised CSS selectors.
Changed markup in `linenos-test` to inhibit line numbers appearing in YAML examples when testing code fences.
---
 _sass/code.scss      |  4 ++--
 docs/linenos-test.md | 20 ++++++++++----------
 2 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/_sass/code.scss b/_sass/code.scss
index a28addd1..5fd7df98 100644
--- a/_sass/code.scss
+++ b/_sass/code.scss
@@ -83,8 +83,8 @@ figure.highlight {
   border: 0;
   box-shadow: none;
 
-  tr > td,
-  td > pre {
+  td,
+  pre {
     @include fs-2;
     min-width: 0;
     padding: 0;
diff --git a/docs/linenos-test.md b/docs/linenos-test.md
index 8d6962eb..cdb19a90 100644
--- a/docs/linenos-test.md
+++ b/docs/linenos-test.md
@@ -13,30 +13,30 @@ produced by Jekyll (4.1.1 or earlier) for line numbers from highlighted code
 To avoid non-conforming HTML and unsatisfactory layout, HTML compression
 can be turned off by using the following configuration option:
 
-```yaml
+{% highlight yaml %}
 compress_html:
   ignore:
     envs: all
-```
+{% endhighlight %}
 
 When using Kramdown code fences, line numbers are turned on globally by the
 following configuration option:
 
-```yaml
+{% highlight yaml %}
 kramdown:
   syntax_highlighter_opts:
     block:
       line_numbers: false
-```
+{% endhighlight %}
 
 Line numbers can then be suppressed locally using Liquid tags (_without_ the
 `linenos` option) instead of fences:
 
-```
+{% highlight yaml %}
 {% raw %}{% highlight some_language %}
 Some code
 {% endhighlight %}{% endraw %}
-```
+{% endhighlight %}
 
 # Workarounds
 
@@ -47,7 +47,7 @@ be replaced by `code` -- but note that `code=code` cannot be removed).
 
 ## Code fences
 
-````
+{% highlight default %}
 {% raw %}{% capture some_var %}
 ```some_language
 Some code
@@ -55,18 +55,18 @@ Some code
 {% endcapture %}
 {% assign some_var = some_var | markdownify %}
 {% include fix_linenos.html code=some_var %}{% endraw %}
-````
+{% endhighlight %}
 
 ## Liquid highlighting
 
-```
+{% highlight default %}
 {% raw %}{% capture some_var %}
 {% highlight some_language linenos %}
 Some code
 {% endhighlight %}
 {% endcapture %}
 {% include fix_linenos.html code=some_var %}{% endraw %}
-```
+{% endhighlight %}
 
 _Credit:_ The original version of the above workaround was suggested by
 Dmitry Hrabrov at
-- 
GitLab