FEATURE: DiscourseEvent hook for server side markdown context.

This commit is contained in:
Guo Xiang Tan
2016-01-29 22:59:15 +08:00
parent 7d5fdd0997
commit 28ac5fb17c
2 changed files with 2 additions and 2 deletions

View File

@ -218,8 +218,7 @@ module PrettyText
context.eval('opts["categoryHashtagLookup"] = function(c){return helpers.category_hashtag_lookup(c);}')
context.eval('opts["lookupAvatar"] = function(p){return Discourse.Utilities.avatarImg({size: "tiny", avatarTemplate: helpers.avatar_template(p)});}')
context.eval('opts["getTopicInfo"] = function(i){return helpers.get_topic_info(i)};')
# TODO: @tgxworld this broke the build
# DiscourseEvent.trigger(:markdown_context, context)
DiscourseEvent.trigger(:markdown_context, context)
baked = context.eval('Discourse.Markdown.markdownConverter(opts).makeHtml(raw)')
end