Search Apps Documentation Source Content File Folder Download Copy Actions Download

mdhtml.gno

0.14 Kb · 11 lines
 1package mdhtml
 2
 3var content string
 4
 5func SetContent(cur realm, c string) {
 6	content = c
 7}
 8
 9func Render(_ string) string {
10	return content
11}