blob: 3a24be63a4a372b1e882cf8e2b5e09e3ca295419 [file] [log] [blame]
ooxml.word.collapseBookmarks
#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:bookmarkStart w:id="0" w:name="test0"/>
<w:p>
<w:r>
<w:t>one</w:t>
</w:r>
<w:bookmarkEnd w:id="0"/>
</w:p>
</w:body>
</w:document>
#item expected
##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:bookmark w:id="0" w:name="test0">
<w:r>
<w:t>one</w:t>
</w:r>
</w:bookmark>
</w:p>
</w:body>
</w:document>