Skip to content
Snippets Groups Projects
Commit e205b721 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

fixed broken table alignment

darcs-hash:20070124201255-7ad00-532c5d1ddc4d24aab980ff2cf6f521b051c73be2.gz
parent 1f82fabe
No related branches found
No related tags found
No related merge requests found
......@@ -590,9 +590,9 @@ class Doku_Handler {
case DOKU_LEXER_MATCHED:
if ( $match == ' ' ){
$this->_addCall('cdata', array($match), $pos);
} else if ( strpos('\t',$match) !== false ) {
} else if ( preg_match('/\t+/',$match) ) {
$this->_addCall('table_align', array($match), $pos);
} else if ( strpos(' ',$match) !== false ) {
} else if ( preg_match('/ {2,}/',$match) ) {
$this->_addCall('table_align', array($match), $pos);
} else if ( $match == "\n|" ) {
$this->_addCall('table_row', array(), $pos);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment