Searched refs:tab_width (Results 1 – 2 of 2) sorted by relevance
| /plugin/markdownextra/ |
| D | markdown.php | 229 var $tab_width = MARKDOWN_TAB_WIDTH; variable in Markdown_Parser 364 $less_than_tab = $this->tab_width - 1; 405 $less_than_tab = $this->tab_width - 1; 964 $less_than_tab = $this->tab_width - 1; 1125 [ ]{'.$this->tab_width.'} # Lines must start with a tab or a tab-width of spaces 1129 ((?=^[ ]{0,'.$this->tab_width.'}\S)|\Z) # Lookahead for non-space at line-start, or end of doc 1633 return preg_replace('/^(\t|[ ]{1,'.$this->tab_width.'})/m', '', $text); 1665 $amount = $this->tab_width - 1666 $strlen($line, 'UTF-8') % $this->tab_width; 1857 $less_than_tab = $this->tab_width - 1; [all …]
|
| /plugin/markdownextra/lib/meltdown/js/lib/ |
| D | js-markdown-extra.js | 165 this.tab_width = MARKDOWN_TAB_WIDTH; 323 var less_than_tab = this.tab_width - 1; 505 var less_than_tab = this.tab_width - 1; 918 var less_than_tab = this.tab_width - 1; 1078 … '[ ]{' + this.tab_width + ',}' + // Lines must start with a tab or a tab-width of spaces 1083 …'((?=^[ ]{0,' + this.tab_width + '}\\S)|(?:\\n*(?=\\x03)))', // Lookahead for non-space at line-s… 1650 return text.replace(new RegExp('^(\\t|[ ]{1,' + this.tab_width + '})', 'mg'), ''); 1675 var amount = self.tab_width - line.length % self.tab_width; 2340 var less_than_tab = this.tab_width - 1; 2476 var less_than_tab = this.tab_width - 1; [all …]
|