mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 09:36:19 -05:00
FEATURE: DiscourseEvent hook for server side markdown context.
This commit is contained in:
parent
7d5fdd0997
commit
28ac5fb17c
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -78,6 +78,7 @@ describe PostCreator do
|
|||
DiscourseEvent.expects(:trigger).with(:after_validate_topic, anything, anything).once
|
||||
DiscourseEvent.expects(:trigger).with(:before_create_topic, anything, anything).once
|
||||
DiscourseEvent.expects(:trigger).with(:after_trigger_post_process, anything).once
|
||||
DiscourseEvent.expects(:trigger).with(:markdown_context, anything).at_least_once
|
||||
creator.create
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue