From 6c00330042b57f3024fb86da4d8e4a19e5a5b053 Mon Sep 17 00:00:00 2001 From: TLSM Date: Mon, 20 Jun 2022 20:45:05 -0400 Subject: [PATCH] Fix markdown ordered lists breaking after index. Previously, Markdown ordered lists in user content (in posts, comments, previews, etc) would display like this: 1. Foo bar baz. This is because sanitize populates them as
  • Foo bar baz.

  • Rather than mess with the Markdown engine and still not have backwards compatibility, this has been solved in the frontend using CSS to force the

    to display inline. --- files/templates/util/assetcache.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/templates/util/assetcache.html b/files/templates/util/assetcache.html index fd7662b33..13f8006c2 100644 --- a/files/templates/util/assetcache.html +++ b/files/templates/util/assetcache.html @@ -1,6 +1,6 @@ {%- set CACHE_VER = { - 'css/main.css': 340, + 'css/main.css': 341, 'css/4chan.css': 61, 'css/classic.css': 61,