owl-blogs/renderer.go

12 lines
288 B
Go
Raw Normal View History

2022-07-21 17:02:37 +00:00
package kiss
2022-07-21 17:44:07 +00:00
import "strings"
func RenderPost(post Post) (string, error) {
template, _ := post.user.Template()
buf, _ := post.MarkdownData()
postHtml := "<h1>" + post.Title() + "</h1>\n"
postHtml += buf.String()
return strings.Replace(template, "{{content}}", postHtml, -1), nil
2022-07-21 17:02:37 +00:00
}