1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-29 23:40:45 +00:00

fixed issue #314

This commit is contained in:
Stephan Hradek 2013-12-29 23:51:22 +01:00
parent bd7db62da0
commit 8e080eac0a

View File

@ -51,6 +51,16 @@ var processRow = function(prevColumns) {
colSpanCount++;
// Move to just before the `|` terminating the cell
this.parser.pos = cellRegExp.lastIndex - 1;
} else if(cellMatch[1] === "<" && prevCell) {
try {
colSpanCount = 1+prevCell.attributes.colspan.value;
} catch (e) {
colSpanCount = 2;
}
$tw.utils.addAttributeToParseTreeNode(prevCell,"colspan",colSpanCount);
colSpanCount = 1;
// Move to just before the `|` terminating the cell
this.parser.pos = cellRegExp.lastIndex - 1;
} else if(cellMatch[2]) {
// End of row
if(prevCell && colSpanCount > 1) {