gitextract_jrowts2d/ ├── .gitattributes ├── .gitignore ├── CHANGELOG.txt ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin/ │ └── htmltoword ├── docs/ │ ├── styles.md │ └── supported_elements.md ├── htmltoword.gemspec ├── lib/ │ ├── htmltoword/ │ │ ├── configuration.rb │ │ ├── document.rb │ │ ├── helpers/ │ │ │ ├── templates_helper.rb │ │ │ └── xslt_helper.rb │ │ ├── railtie.rb │ │ ├── renderer.rb │ │ ├── templates/ │ │ │ └── default.docx │ │ ├── version.rb │ │ └── xslt/ │ │ ├── base.xslt │ │ ├── cleanup.xslt │ │ ├── extras.xslt │ │ ├── functions.xslt │ │ ├── htmltoword.xslt │ │ ├── image_functions.xslt │ │ ├── images.xslt │ │ ├── inline_elements.xslt │ │ ├── links.xslt │ │ ├── numbering.xslt │ │ ├── relations.xslt │ │ ├── style2.xslt │ │ └── tables.xslt │ └── htmltoword.rb ├── script/ │ ├── build-template │ ├── extract-template │ └── setup ├── spec/ │ ├── document_spec.rb │ ├── fixtures/ │ │ ├── complex/ │ │ │ ├── nestings.html │ │ │ └── nestings.xml │ │ ├── description_lists/ │ │ │ ├── test01.html │ │ │ ├── test01.xml │ │ │ ├── test02.html │ │ │ ├── test02.xml │ │ │ ├── test03.html │ │ │ ├── test03.xml │ │ │ ├── test04.html │ │ │ └── test04.xml │ │ └── lists/ │ │ ├── lists_inline_elements.html │ │ └── lists_inline_elements.xml │ ├── spec_helper.rb │ ├── tmp/ │ │ └── .gitignore │ ├── xslt_alignment_spec.rb │ ├── xslt_breaks_spec.rb │ ├── xslt_complex_spec.rb │ ├── xslt_description_lists_spec.rb │ ├── xslt_heading_spec.rb │ ├── xslt_images_spec.rb │ ├── xslt_links_spec.rb │ ├── xslt_lists_spec.rb │ ├── xslt_simple_text_style_spec.rb │ ├── xslt_spec.rb │ └── xslt_tables_spec.rb └── templates/ └── default/ ├── [Content_Types].xml ├── _rels/ │ └── .rels ├── docProps/ │ ├── app.xml │ └── core.xml └── word/ ├── _rels/ │ └── document.xml.rels ├── document.xml ├── fontTable.xml ├── numbering.xml ├── settings.xml ├── styles.xml ├── stylesWithEffects.xml ├── theme/ │ └── theme1.xml └── webSettings.xml