Guest User

Untitled

a guest
Aug 6th, 2021
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nim 0.24 KB | None | 0 0
  1. import  prologue, markdown
  2.  
  3. from std/strutils import replace
  4.  
  5. proc index*(ctx: Context) {.async.} =
  6.   let file = readFile("README.md")
  7.   let md = markdown(file)
  8.  
  9.   resp replace(readFile("website/templates/index.html"), "%Markdown%", md)
Advertisement
Add Comment
Please, Sign In to add comment