From 6256b85fba7d6b8dbd19250741c1f81c772b5b39 Mon Sep 17 00:00:00 2001 From: George <31376482+george-gca@users.noreply.github.com> Date: Thu, 27 Apr 2023 12:02:50 -0300 Subject: [PATCH] Fixed bug when using latex in title and description (#1361) Fixes #1252. Signed-off-by: George Araujo --- _sass/_base.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/_sass/_base.scss b/_sass/_base.scss index fac137832dc6..c9e44b8912e3 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -414,6 +414,12 @@ footer.sticky-bottom { } } +.post-title { + mjx-container[jax="CHTML"][display="true"] { + display: unset; + } +} + .post-list { margin: 0; margin-bottom: 40px; @@ -446,6 +452,10 @@ footer.sticky-bottom { color: var(--global-theme-color); } } + + mjx-container[jax="CHTML"][display="true"] { + display: unset; + } } }