Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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)))))