Skip to content

Commit

Permalink
Fix leading spaces in multiline footnotes
Browse files Browse the repository at this point in the history
  • Loading branch information
lexi-lambda authored Mar 25, 2021
1 parent 119f4a3 commit fc03a27
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion info.rkt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#lang info
(define version "0.26")
(define version "0.27")
(define collection 'multi)
(define deps '(["base" #:version "6.3"]
["parsack" #:version "0.4"]
Expand Down
2 changes: 1 addition & 1 deletion markdown/parse.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@

(define $raw-lines
(>>= (many1 $raw-line)
(compose1 return string-join)))
(compose1 return string-append*)))

(define $reference-title
;; Not quite the same as $link-title. 1. Title may be grouped in
Expand Down
2 changes: 1 addition & 1 deletion markdown/test.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
(p () "The first paragraph of the definition.")
(p () "Paragraph two of the definition.")
(blockquote () (p () "A blockquote with multiple lines."))
(pre () (code () "a code block\n here"))
(pre () (code () "a code block\nhere"))
(p ()
"A final paragraph."
nbsp
Expand Down

0 comments on commit fc03a27

Please sign in to comment.