Removed unused text formatting functions

Этот коммит содержится в:
hmhealey
2015-11-04 09:56:27 -05:00
родитель 559ca09f2c
Коммит 1a4584f3da

Просмотреть файл

@@ -64,22 +64,6 @@ export function doFormatText(text, options) {
return output;
}
export function doFormatEmoticons(text) {
const tokens = new Map();
let output = Emoticons.handleEmoticons(text, tokens);
output = replaceTokens(output, tokens);
return output;
}
export function doFormatMentions(text) {
const tokens = new Map();
let output = autolinkAtMentions(text, tokens);
output = replaceTokens(output, tokens);
return output;
}
export function sanitizeHtml(text) {
let output = text;