From 0e01415ec8de0ef97557ee12c33bc37781e7df40 Mon Sep 17 00:00:00 2001 From: Pk11 Date: Mon, 21 Feb 2022 00:17:33 -0600 Subject: [PATCH] Improve table and inline code on mobile --- _layouts/wiki.html | 3 ++- _sass/base.scss | 7 ++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/_layouts/wiki.html b/_layouts/wiki.html index 474c347..ecbd46c 100644 --- a/_layouts/wiki.html +++ b/_layouts/wiki.html @@ -53,8 +53,9 @@ layout: compress

{{ page.long_title | default: page.title }}


{% if page.layout == "faq" %} - {{ content }} + {{ content | replace: "", '
' | replace: "
", "" }} {% else %} + {% assign content = content | replace: "", '
' | replace: "
", "" %} {% include anchor-headings.html html=content anchorBody="#" anchorClass="header-anchor" %} {% endif %}