From 51a009d38cde3efef43f6822e2217e33d4e26912 Mon Sep 17 00:00:00 2001 From: j4nk Date: Wed, 4 Jan 2023 15:14:28 -0500 Subject: [PATCH] Eliminated slash from br tags, as per validator suggestion --- md4tj_parse.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/md4tj_parse.el b/md4tj_parse.el index c896d35..bda3b32 100644 --- a/md4tj_parse.el +++ b/md4tj_parse.el @@ -118,7 +118,7 @@ (cond ((or (eq (nth 1 state) 'code) (eq (nth 1 state) 'begincode)) (md4tj-clean-code-for-html cleanline)) ((string-match "^#+ " cleanline) (md4tj-process-header (md4tj-process-line cleanline))) ((string= "---" cleanline) "
") ;; horizontal line - ((= (length cleanline) 0) "
") ;; blank line + ((= (length cleanline) 0) "
") ;; blank line (t (md4tj-process-paragraph (md4tj-process-line cleanline)))) ;; End of multiline block