mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
bugfix /src/extensions/table.js
table variable needs to be reset after table end to support multiple tbales.
This commit is contained in:
parent
2e102c72b2
commit
81bdab33d2
|
@ -81,6 +81,8 @@
|
|||
tbl.push('</table>');
|
||||
// we are done with this table and we move along
|
||||
out.push(tbl.join('\n'));
|
||||
// and reset tbl in case their are further tables in the document.
|
||||
tbl = [];
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user