您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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