I'm planning a new in-soruce documentation tool. Which syntax is better? added by iconmaster on Thu May 31 22:30:12 2018

; the procedure `document` needs a syntax for text formatting.

; would you prefer:
(document procedure (+ . numbers)
  "This procedure returns the sum of " (italic numbers) "."
)

; or:
(document procedure (+ . numbers)
  "This procedure returns the sum of $(italic numbers)."
)