blob: 4153c260579034a91bde68bec8cfd9f2640aa13f [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>Before</w:t>
</w:r>
</w:p>
<w:p>
<w:pPr>
<w:pStyle w:val="ListParagraph"/>
<w:numPr>
<w:ilvl w:val="0"/>
<w:numId w:val="1"/>
</w:numPr>
<w:ind w:left="1320"/>
</w:pPr>
<w:r>
<w:t>One</w:t>
</w:r>
</w:p>
<w:p>
<w:pPr>
<w:pStyle w:val="ListParagraph"/>
<w:numPr>
<w:ilvl w:val="0"/>
<w:numId w:val="1"/>
</w:numPr>
<w:ind w:left="1320"/>
</w:pPr>
<w:r>
<w:t>Two</w:t>
</w:r>
</w:p>
<w:p>
<w:pPr>
<w:pStyle w:val="ListParagraph"/>
<w:numPr>
<w:ilvl w:val="0"/>
<w:numId w:val="1"/>
</w:numPr>
<w:ind w:left="1320"/>
</w:pPr>
<w:r>
<w:t>Three</w:t>
</w:r>
</w:p>
<w:p>
<w:r>
<w:t>After</w:t>
</w:r>
<w:bookmarkStart w:id="0" w:name="_GoBack"/>
<w:bookmarkEnd w:id="0"/>
</w:p>
<w:sectPr>
<w:pgSz w:h="16840" w:w="11900"/>
<w:pgMar w:bottom="1440" w:footer="708" w:gutter="0" w:header="708" w:left="1800" w:right="1800" w:top="1440"/>
<w:cols w:space="708"/>
</w:sectPr>
</w:body>
</w:document>
##item styles.xml
#include "styles.xml"
##item numbering.xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<w:numbering xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
<w:abstractNum w:abstractNumId="0">
#include "abstract-bullet.inc"
</w:abstractNum>
<w:num w:numId="1">
<w:abstractNumId w:val="0"/>
</w:num>
</w:numbering>
#item expected
<!DOCTYPE html>
<html id="word1">
<head>
<meta charset="utf-8"/>
<link href="reset.css" rel="stylesheet"/>
<style>
#include "common.css"
</style>
</head>
<body id="word2">
<p class="Normal" id="word3">
<span id="word4">Before</span>
</p>
<ul style="list-style-type: disc">
<li>
<p class="List_Paragraph" id="word7" style="margin-left: 7.228915%">
<span id="word14">One</span>
</p>
</li>
<li>
<p class="List_Paragraph" id="word17" style="margin-left: 7.228915%">
<span id="word24">Two</span>
</p>
</li>
<li>
<p class="List_Paragraph" id="word27" style="margin-left: 7.228915%">
<span id="word34">Three</span>
</p>
</li>
</ul>
<p class="Normal" id="word37">
<span id="word38">After</span>
</p>
</body>
</html>