Searched refs:list_str (Results 1 – 2 of 2) sorted by relevance
| /plugin/markdownextra/lib/meltdown/js/lib/ |
| D | js-markdown-extra.js | 1000 Markdown_Parser.prototype.processListItems = function(list_str, marker_any_re) { argument 1028 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); 1064 return list_str; 2539 MarkdownExtra_Parser.prototype.processDefListItems = function(list_str) { argument 2544 list_str = this.__wrapSTXETX__(list_str); [all …]
|
| /plugin/markdownextra/ |
| D | markdown.php | 1046 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 …]
|