Home
last modified time | relevance | path

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

/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php3174 $tab_end_width = $tab_width - ($pos % $tab_width); //Moved out of the look as it doesn't change within the loop
3175 if (($pos & 1) || 1 == $tab_end_width) {
3176 $str .= substr($tab_string, 6, $tab_end_width);
3178 $str .= substr($tab_string, 0, $tab_end_width+5);
3181 $pos += $tab_end_width;