2015-01-16 05:21:33 +08:00
|
|
|
/**
|
|
|
|
* Encode/escape certain characters inside Markdown code runs.
|
|
|
|
* The point is that in code, these characters are literals,
|
|
|
|
* and lose their special Markdown meanings.
|
|
|
|
*/
|
2017-01-30 03:28:30 +08:00
|
|
|
showdown.subParser('encodeCode', function (text, options, globals) {
|
2015-01-19 19:37:21 +08:00
|
|
|
'use strict';
|
2015-01-16 05:21:33 +08:00
|
|
|
|
2017-01-30 03:28:30 +08:00
|
|
|
text = globals.converter._dispatch('encodeCode.before', text, options, globals);
|
|
|
|
|
2015-01-19 19:37:21 +08:00
|
|
|
// Encode all ampersands; HTML entities are not
|
|
|
|
// entities within a Markdown code span.
|
2017-01-28 10:46:34 +08:00
|
|
|
text = text
|
|
|
|
.replace(/&/g, '&')
|
2015-01-19 19:37:21 +08:00
|
|
|
// Do the angle bracket song and dance:
|
2017-01-28 10:46:34 +08:00
|
|
|
.replace(/</g, '<')
|
|
|
|
.replace(/>/g, '>')
|
2015-01-19 19:37:21 +08:00
|
|
|
// Now, escape characters that are magic in Markdown:
|
2017-01-30 03:38:45 +08:00
|
|
|
.replace(/([*_{}\[\]\\=~-])/g, showdown.helper.escapeCharactersCallback);
|
2015-01-16 05:21:33 +08:00
|
|
|
|
2017-01-30 03:28:30 +08:00
|
|
|
text = globals.converter._dispatch('encodeCode.after', text, options, globals);
|
2015-01-19 19:37:21 +08:00
|
|
|
return text;
|
2015-01-16 05:21:33 +08:00
|
|
|
});
|