Search Apps Documentation Source Content File Folder Download Copy Actions Download

mdbq.gno

0.23 Kb · 15 lines
 1package mdbq
 2
 3var comments []string
 4
 5func AddComment(cur realm, c string) {
 6	comments = append(comments, c)
 7}
 8
 9func Render(_ string) string {
10	out := "## Comments\n\n"
11	for _, c := range comments {
12		out += c + "\n\n"
13	}
14	return out
15}