Home
last modified time | relevance | path

Searched refs:list_str (Results 1 – 2 of 2) sorted by relevance

/plugin/markdownextra/lib/meltdown/js/lib/
H A Djs-markdown-extra.js1028 list_str = this.__wrapSTXETX__(list_str);
1029 list_str = list_str.replace(/\n{2,}(?=\x03)/m, "\n");
1030 list_str = this.__unwrapSTXETX__(list_str);
1033 list_str = this.__wrapSTXETX__(list_str);
1034 list_str = list_str.replace(new RegExp(
1061 list_str = this.__unwrapSTXETX__(list_str);
2544 list_str = this.__wrapSTXETX__(list_str);
2547 list_str = list_str.replace(/\n{2,}(?=\\x03)/, "\n");
2550 list_str = list_str.replace(new RegExp(
2574 list_str = list_str.replace(new RegExp(
[all …]
/plugin/markdownextra/
H A Dmarkdown.php1046 function processListItems($list_str, $marker_any_re) { argument
1075 $list_str = preg_replace("/\n{2,}\\z/", "\n", $list_str);
1077 $list_str = preg_replace_callback('{
1087 array(&$this, '_processListItems_callback'), $list_str);
1090 return $list_str;
2849 function processDefListItems($list_str) { argument
2857 $list_str = preg_replace("/\n{2,}\\z/", "\n", $list_str);
2860 $list_str = preg_replace_callback('{
2871 array(&$this, '_processDefListItems_callback_dt'), $list_str);
2874 $list_str = preg_replace_callback('{
[all …]