Sotaro KARASAWA 10 лет назад
Родитель
Сommit
393edd1f1d
1 измененных файлов с 0 добавлено и 1 удалено
  1. 0 1
      resource/js/crowi.js

+ 0 - 1
resource/js/crowi.js

@@ -183,7 +183,6 @@ Crowi.rendererType.markdown.prototype = {
   preFormatMarkdown: function(content){
     var x = content
       .replace(/^(#{1,})([^\s]+)?(.*)$/gm, '$1 $2$3') // spacer for section
-      .replace(/^(\s*)(\*|\-)([^\s]+)?(.*)$/gm, '$1$2 $3$4') // spacer for list
       .replace(/>[\s]*\n>[\s]*\n/g, '> <br>\n> \n');
     return x;
   },