예제 #1
0
파일: post.go 프로젝트: EPICPaaS/wetalk
func (m *Post) GetContentCache() string {
	if setting.RealtimeRenderMD {
		return utils.RenderMarkdown(m.Content)
	} else {
		return m.ContentCache
	}
}
예제 #2
0
파일: post.go 프로젝트: EPICPaaS/wetalk
func (m *Comment) GetMessageCache() string {
	if setting.RealtimeRenderMD {
		return utils.RenderMarkdown(m.Message)
	} else {
		return m.MessageCache
	}
}