From 7382953b1aa3c96914a2d6c8f21f9bb63407a14f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20F=C3=A4rber?= <01mf02@gmail.com> Date: Mon, 6 Jan 2025 14:08:41 +0100 Subject: [PATCH] Apply `small` class to `
` instead of ``. --- docs/filters/filter.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/filters/filter.lua b/docs/filters/filter.lua index f6539de34d..2a6daf42e8 100644 --- a/docs/filters/filter.lua +++ b/docs/filters/filter.lua @@ -48,11 +48,11 @@ function Div(el) if FORMAT == "html" then local summary = pandoc.Plain{ - pandoc.RawInline("html", ''), pandoc.Str 'Examples', + pandoc.RawInline("html", ''), pandoc.Str 'Examples', pandoc.RawInline("html", "") } return { - pandoc.RawBlock("html", '
'), summary, el, + pandoc.RawBlock("html", '
'), summary, el, pandoc.RawBlock("html", '
') } end