blob: bd4e20c769dc9c42339e706cafe1c406b0ff95ec [file] [log] [blame]
ooxml.word.get
#item input.docx
##item document.xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<w:document xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
<w:body>
<w:p>
<w:r>
<w:t>one</w:t>
</w:r>
</w:p>
<w:p>
<w:bookmarkStart w:id="0" w:name="_GoBack"/>
<w:r>
<w:t>two</w:t>
</w:r>
<w:bookmarkEnd w:id="0"/>
</w:p>
<w:p>
<w:r>
<w:t>three</w:t>
</w:r>
</w:p>
<w:sectPr>
<w:pgSz w:h="15840" w:w="12240"/>
<w:pgMar w:bottom="1440" w:footer="720" w:gutter="0" w:header="720" w:left="1800" w:right="1800" w:top="1440"/>
<w:cols w:space="720"/>
<w:docGrid w:linePitch="360"/>
</w:sectPr>
</w:body>
</w:document>
#item expected
<!DOCTYPE html>
<html id="word1">
<head>
<meta charset="utf-8"/>
<link href="reset.css" rel="stylesheet"/>
<style>
@page {
size: letter portrait;
}
body {
counter-reset: h1 h2 h3 h4 h5 h6 figure table;
margin-bottom: 11.764706%;
margin-left: 14.705882%;
margin-right: 14.705882%;
margin-top: 11.764706%;
}
</style>
</head>
<body id="word2">
<p id="word3">
<span id="word4">one</span>
</p>
<p id="word7">
<span id="word9">two</span>
</p>
<p id="word13">
<span id="word14">three</span>
</p>
</body>
</html>