123456789101112131415 |
- /**
- * Turn Markdown link shortcuts into XHTML <a> tags.
- */
- showdown.subParser('horizontalRule', function (text, options, globals) {
- 'use strict';
- text = globals.converter._dispatch('horizontalRule.before', text, options, globals);
- var key = showdown.subParser('hashBlock')('<hr />', options, globals);
- text = text.replace(/^ {0,2}( ?-){3,}[ \t]*$/gm, key);
- text = text.replace(/^ {0,2}( ?\*){3,}[ \t]*$/gm, key);
- text = text.replace(/^ {0,2}( ?_){3,}[ \t]*$/gm, key);
- text = globals.converter._dispatch('horizontalRule.after', text, options, globals);
- return text;
- });
|