markdown.mx raw

   1  //go:build !wasm
   2  //:build !wasm
   3  
   4  package markdown
   5  
   6  // Render converts markdown text to HTML using markdown-it with linkify enabled.
   7  // Handles commonmark syntax and unicode-aware URL auto-linking.
   8  func Render(text string) (s string) { panic("jsbridge") }
   9