Eliminated slash from br tags, as per validator suggestion
This commit is contained in:
parent
264e323597
commit
51a009d38c
|
@ -118,7 +118,7 @@
|
||||||
(cond ((or (eq (nth 1 state) 'code) (eq (nth 1 state) 'begincode)) (md4tj-clean-code-for-html cleanline))
|
(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-match "^#+ " cleanline) (md4tj-process-header (md4tj-process-line cleanline)))
|
||||||
((string= "---" cleanline) "<hr>") ;; horizontal line
|
((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))))
|
(t (md4tj-process-paragraph (md4tj-process-line cleanline))))
|
||||||
|
|
||||||
;; End of multiline block
|
;; End of multiline block
|
||||||
|
|
Loading…
Reference in New Issue