Search Apps Documentation Source Content File Folder Download Copy Actions Download

mdtitle.gno

0.21 Kb · 12 lines
 1package mdtitle
 2
 3var title string
 4var body = "This is the official body of the proposal."
 5
 6func SetTitle(cur realm, t string) {
 7	title = t
 8}
 9
10func Render(_ string) string {
11	return "# " + title + "\n\n" + body
12}