From ce87d08d7169e6b1a1a1889e7fd67325b47c1754 Mon Sep 17 00:00:00 2001 From: Antonio Prates Date: Sun, 17 Oct 2021 13:40:14 +0800 Subject: [PATCH] Remove ul extra spacing --- src/gmi-to-html.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gmi-to-html.c b/src/gmi-to-html.c index f948851..5842274 100755 --- a/src/gmi-to-html.c +++ b/src/gmi-to-html.c @@ -45,8 +45,8 @@ string postProcess(number linesCount, stringList lines) { body = replaceWord(body, "\n
", ""); body = replaceWord(body, "
\n
", "
"); body = replaceWord(body, "
\n
  • ", "
  • "); - body = replaceWord(body, "
    \n
    \n", "\n
    "); - body = replaceWord(body, "
    \n", "\n
    "); + body = replaceWord(body, "
    \n
    \n", ""); + body = replaceWord(body, "
    \n", ""); // wrap body into html boilerplate (add title to head) string head = -- 2.34.2