class Plaintext::DocxHandler

Public Class Methods

new() click to toggle source
Calls superclass method Plaintext::OfficeDocumentHandler::new
# File lib/plaintext/file_handler/zipped_xml_handler/office_document_handler/docx_handler.rb, line 5
def initialize
  super
  @content_type = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'
  @file_name = 'word/document.xml'
  @namespace_uri = 'http://schemas.openxmlformats.org/wordprocessingml/2006/main'
end