mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:23:13 +08:00
234694b50f
This adds the markdown.it engine to Discourse. https://github.com/markdown-it/markdown-it As the migration is going to take a while the new engine is default disabled. To enable it you must change the hidden site setting: enable_experimental_markdown_it. This commit is a squash of many other commits, it also includes some improvements to autospec (ability to run plugins), and a dev dependency on the og gem for html normalization.
84 lines
2.6 KiB
JavaScript
84 lines
2.6 KiB
JavaScript
import { register } from 'pretty-text/engines/discourse-markdown/bbcode';
|
|
import { registerOption } from 'pretty-text/pretty-text';
|
|
import { performEmojiUnescape } from 'pretty-text/emoji';
|
|
|
|
registerOption((siteSettings, opts) => {
|
|
opts.enableEmoji = siteSettings.enable_emoji;
|
|
opts.emojiSet = siteSettings.emoji_set;
|
|
});
|
|
|
|
|
|
export function setup(helper) {
|
|
|
|
if (helper.markdownIt) { return; }
|
|
|
|
register(helper, 'quote', {noWrap: true, singlePara: true}, (contents, bbParams, options) => {
|
|
|
|
const params = {'class': 'quote'};
|
|
let username = null;
|
|
const opts = helper.getOptions();
|
|
|
|
if (bbParams) {
|
|
const paramsSplit = bbParams.split(/\,\s*/);
|
|
username = paramsSplit[0];
|
|
|
|
paramsSplit.forEach(function(p,i) {
|
|
if (i > 0) {
|
|
var assignment = p.split(':');
|
|
if (assignment[0] && assignment[1]) {
|
|
const escaped = helper.escape(assignment[0]);
|
|
// don't escape attributes, makes no sense
|
|
if (escaped === assignment[0]) {
|
|
params['data-' + assignment[0]] = helper.escape(assignment[1].trim());
|
|
}
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
let avatarImg;
|
|
const postNumber = parseInt(params['data-post'], 10);
|
|
const topicId = parseInt(params['data-topic'], 10);
|
|
|
|
if (options.lookupAvatarByPostNumber) {
|
|
// client-side, we can retrieve the avatar from the post
|
|
avatarImg = options.lookupAvatarByPostNumber(postNumber, topicId);
|
|
} else if (options.lookupAvatar) {
|
|
// server-side, we need to lookup the avatar from the username
|
|
avatarImg = options.lookupAvatar(username);
|
|
}
|
|
|
|
// If there's no username just return a simple quote
|
|
if (!username) {
|
|
return ['p', ['aside', params, ['blockquote'].concat(contents)]];
|
|
}
|
|
|
|
const header = ['div', {'class': 'title'},
|
|
['div', {'class': 'quote-controls'}],
|
|
avatarImg ? ['__RAW', avatarImg] : "",
|
|
username ? `${username}:` : "" ];
|
|
|
|
if (options.topicId && postNumber && options.getTopicInfo && topicId !== options.topicId) {
|
|
const topicInfo = options.getTopicInfo(topicId);
|
|
if (topicInfo) {
|
|
var href = topicInfo.href;
|
|
if (postNumber > 0) { href += "/" + postNumber; }
|
|
// get rid of username said stuff
|
|
header.pop();
|
|
|
|
let title = topicInfo.title;
|
|
|
|
if (opts.enableEmoji) {
|
|
title = performEmojiUnescape(topicInfo.title, {
|
|
getURL: opts.getURL, emojiSet: opts.emojiSet
|
|
});
|
|
}
|
|
|
|
header.push(['a', {'href': href}, title]);
|
|
}
|
|
}
|
|
|
|
return ['aside', params, header, ['blockquote'].concat(contents)];
|
|
});
|
|
}
|