Switch to new bbConvert version

This commit is contained in:
Caleb Gardner
2024-08-19 13:46:19 -05:00
parent 9cc4fa72f0
commit 1dc937fcaf
4 changed files with 11 additions and 9 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ type Blog struct {
func (b *BlogApp) ConvertBlog(blog *Blog) {
//TODO: parse BBCode/Markdown from blog
if !blog.StaticPage {
blog.Blog = b.conv.Convert(blog.Blog)
blog.Blog = b.conv.HTMLConvert(blog.Blog)
}
}