Files
send-mail/node_modules/showdown/src/subParsers/ellipsis.js

12 lines
308 B
JavaScript
Raw Normal View History

showdown.subParser('ellipsis', function (text, options, globals) {
'use strict';
text = globals.converter._dispatch('ellipsis.before', text, options, globals);
text = text.replace(/\.\.\./g, '…');
text = globals.converter._dispatch('ellipsis.after', text, options, globals);
return text;
});