|
@@ -1,4 +1,4 @@
|
|
|
-;/*! showdown 19-10-2015 */
|
|
|
+;/*! showdown 30-10-2015 */
|
|
|
(function(){
|
|
|
/**
|
|
|
* Created by Tivie on 13-07-2015.
|
|
@@ -2210,7 +2210,7 @@ showdown.subParser('strikethrough', function (text, options, globals) {
|
|
|
|
|
|
if (options.strikethrough) {
|
|
|
text = globals.converter._dispatch('strikethrough.before', text, options);
|
|
|
- text = text.replace(/(?:~T){2}([^~]+)(?:~T){2}/g, '<del>$1</del>');
|
|
|
+ text = text.replace(/(?:~T){2}([\s\S]+?)(?:~T){2}/g, '<del>$1</del>');
|
|
|
text = globals.converter._dispatch('strikethrough.after', text, options);
|
|
|
}
|
|
|
|