diff --git a/collects/scribble/markdown-render.rkt b/collects/scribble/markdown-render.rkt index b50faa3c..c271588f 100644 --- a/collects/scribble/markdown-render.rkt +++ b/collects/scribble/markdown-render.rkt @@ -160,7 +160,17 @@ (define o (open-output-string)) (parameterize ([current-output-port o]) (super render-paragraph p part ri)) - (define to-wrap (regexp-replace* #rx"\n" (get-output-string o) " ")) + ;; 1. Remove newlines so we can re-wrap the text. + ;; + ;; 2. Combine adjacent code spans into one. These result from + ;; something like @racket[(x y)] being treated as multiple + ;; RktXXX items rather than one. (Although it would be + ;; more-correct to handle them at that level, I don't easily see + ;; how. As a result I'm handling it after-the-fact, at the + ;; text/Markdown stage.) + (define to-wrap (regexp-replaces (get-output-string o) + '([#rx"\n" " "] ;1 + [#rx"``" ""]))) ;2 (define lines (wrap-line (string-trim to-wrap) (- 72 (current-indent)))) (write-note) (write-string (car lines)) diff --git a/collects/tests/scribble/markdown-docs/example.md b/collects/tests/scribble/markdown-docs/example.md index 9b5deebf..6a87f9d5 100644 --- a/collects/tests/scribble/markdown-docs/example.md +++ b/collects/tests/scribble/markdown-docs/example.md @@ -66,7 +66,7 @@ Example of a defproc: Returns a new mutable string of length `k` where each position in the string is initialized with the character `char` -Blah blah `(``or/c`` ``string?`` ``bytes?``)`. +Blah blah `(or/c string? bytes?)`. Example of Scribble `examples`: