Fix bug in Maruku to_html_document_tree

Reported by Remi.
master
Jacques Distler 2011-09-22 07:52:40 -05:00
parent 4b09e0322f
commit e4b00f0bff
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ Example:
root = Nokogiri::XML::Element.new('html', doc)
root.add_namespace(nil, 'http://www.w3.org/1999/xhtml')
root.add_namespace('svg', "http://www.w3.org/2000/svg" )
lang = self[:lang] || 'en'
lang = self.attributes[:lang] || 'en'
root['xml:lang'] = lang
doc << root