bypass table when normalizing.

This commit is contained in:
Sam 2015-07-20 17:25:27 +10:00
parent e3d6c476f5
commit d873e68059
1 changed files with 5 additions and 0 deletions

View File

@ -17,6 +17,11 @@ require 'reverse_markdown'
require File.expand_path(File.dirname(__FILE__) + "/base.rb")
require 'htmlentities'
# remove table conversion
[:table,:td,:tr,:th,:thead,:tbody].each do |tag|
ReverseMarkdown::Converters.unregister(tag)
end
class ImportScripts::Lithium < ImportScripts::Base
BATCH_SIZE = 1000