strip classes from table instead of ignoring table

This commit is contained in:
Sam
2015-07-20 17:05:24 +10:00
parent e93665b9f7
commit ecf50a741c
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ var emitter = function(contents) {
};
var tableBlock = {
start: /(<table>)([\S\s]*)/igm,
start: /(<table[^>]*>)([\S\s]*)/igm,
stop: /<\/table>/igm,
rawContents: true,
emitter: emitter,