Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

utils.scm 315B

123456789101112
  1. (module utils (render-markdown replace-extension)
  2. (import
  3. scheme
  4. lowdown
  5. (chicken port)
  6. (chicken string))
  7. (define (replace-extension s old new)
  8. (string-append (string-chomp s old) new))
  9. (define (render-markdown content)
  10. (with-output-to-string (lambda () (markdown->html content)))))