Eliminated slash from br tags, as per validator suggestion

This commit is contained in:
j4nk 2023-01-04 15:14:28 -05:00
parent 264e323597
commit 51a009d38c
1 changed files with 1 additions and 1 deletions

View File

@ -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) "<hr>") ;; horizontal line
((= (length cleanline) 0) "<br/>") ;; blank line
((= (length cleanline) 0) "<br>") ;; blank line
(t (md4tj-process-paragraph (md4tj-process-line cleanline))))
;; End of multiline block