fix: disabled empty header (#369)
parent
eb3000f698
commit
951899cb8e
|
@ -3,8 +3,10 @@ use docx_rs::*;
|
||||||
pub fn main() -> Result<(), DocxError> {
|
pub fn main() -> Result<(), DocxError> {
|
||||||
let path = std::path::Path::new("./output/header.docx");
|
let path = std::path::Path::new("./output/header.docx");
|
||||||
let file = std::fs::File::create(&path).unwrap();
|
let file = std::fs::File::create(&path).unwrap();
|
||||||
|
let header =
|
||||||
|
Header::new().add_paragraph(Paragraph::new().add_run(Run::new().add_text("Hello")));
|
||||||
Docx::new()
|
Docx::new()
|
||||||
.add_header_paragraph(Paragraph::new().add_run(Run::new().add_text("Hello")))
|
.header(header)
|
||||||
.add_paragraph(Paragraph::new().add_run(Run::new().add_text("World")))
|
.add_paragraph(Paragraph::new().add_run(Run::new().add_text("World")))
|
||||||
.build()
|
.build()
|
||||||
.pack(file)?;
|
.pack(file)?;
|
||||||
|
|
|
@ -12,6 +12,7 @@ pub struct ContentTypes {
|
||||||
types: BTreeMap<String, String>,
|
types: BTreeMap<String, String>,
|
||||||
web_extension_count: usize,
|
web_extension_count: usize,
|
||||||
custom_xml_count: usize,
|
custom_xml_count: usize,
|
||||||
|
header_count: usize,
|
||||||
footer_count: usize,
|
footer_count: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,10 +72,6 @@ impl ContentTypes {
|
||||||
"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml"
|
"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml"
|
||||||
.to_owned(),
|
.to_owned(),
|
||||||
);
|
);
|
||||||
self.types.insert(
|
|
||||||
"/word/header1.xml".to_owned(),
|
|
||||||
"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml".to_owned(),
|
|
||||||
);
|
|
||||||
self.types.insert(
|
self.types.insert(
|
||||||
"/word/commentsExtended.xml".to_owned(),
|
"/word/commentsExtended.xml".to_owned(),
|
||||||
"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml"
|
"application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml"
|
||||||
|
@ -116,6 +113,15 @@ impl ContentTypes {
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn add_header(mut self) -> Self {
|
||||||
|
self.types.insert(
|
||||||
|
format!("/word/header{}.xml", self.header_count),
|
||||||
|
"application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml".to_owned(),
|
||||||
|
);
|
||||||
|
self.header_count += 1;
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
pub fn add_footer(mut self) -> Self {
|
pub fn add_footer(mut self) -> Self {
|
||||||
self.types.insert(
|
self.types.insert(
|
||||||
format!("/word/footer{}.xml", self.footer_count),
|
format!("/word/footer{}.xml", self.footer_count),
|
||||||
|
@ -132,6 +138,7 @@ impl Default for ContentTypes {
|
||||||
types: BTreeMap::new(),
|
types: BTreeMap::new(),
|
||||||
web_extension_count: 1,
|
web_extension_count: 1,
|
||||||
custom_xml_count: 1,
|
custom_xml_count: 1,
|
||||||
|
header_count: 1,
|
||||||
footer_count: 1,
|
footer_count: 1,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -212,6 +219,7 @@ mod tests {
|
||||||
types,
|
types,
|
||||||
web_extension_count: 1,
|
web_extension_count: 1,
|
||||||
custom_xml_count: 1,
|
custom_xml_count: 1,
|
||||||
|
header_count: 1,
|
||||||
footer_count: 1,
|
footer_count: 1,
|
||||||
},
|
},
|
||||||
c
|
c
|
||||||
|
|
|
@ -150,6 +150,11 @@ impl Document {
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn header_reference(mut self, r: HeaderReference) -> Self {
|
||||||
|
self.section_property = self.section_property.header_reference(r);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
pub fn footer_reference(mut self, r: FooterReference) -> Self {
|
pub fn footer_reference(mut self, r: FooterReference) -> Self {
|
||||||
self.section_property = self.section_property.footer_reference(r);
|
self.section_property = self.section_property.footer_reference(r);
|
||||||
self
|
self
|
||||||
|
@ -201,7 +206,7 @@ mod tests {
|
||||||
str::from_utf8(&b).unwrap(),
|
str::from_utf8(&b).unwrap(),
|
||||||
r#"<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
r#"<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<w:document xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" mc:Ignorable="w14 wp14">
|
<w:document xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" mc:Ignorable="w14 wp14">
|
||||||
<w:body><w:p w14:paraId="12345678"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr /><w:t xml:space="preserve">Hello</w:t></w:r></w:p><w:sectPr><w:pgSz w:w="11906" w:h="16838" /><w:pgMar w:top="1985" w:right="1701" w:bottom="1701" w:left="1701" w:header="851" w:footer="992" w:gutter="0" /><w:headerReference w:type="default" r:id="rId4" /><w:cols w:space="425" /><w:docGrid w:type="lines" w:linePitch="360" /></w:sectPr></w:body>
|
<w:body><w:p w14:paraId="12345678"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr /><w:t xml:space="preserve">Hello</w:t></w:r></w:p><w:sectPr><w:pgSz w:w="11906" w:h="16838" /><w:pgMar w:top="1985" w:right="1701" w:bottom="1701" w:left="1701" w:header="851" w:footer="992" w:gutter="0" /><w:cols w:space="425" /><w:docGrid w:type="lines" w:linePitch="360" /></w:sectPr></w:body>
|
||||||
</w:document>"#
|
</w:document>"#
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,7 @@ pub struct DocumentRels {
|
||||||
pub has_numberings: bool,
|
pub has_numberings: bool,
|
||||||
pub image_ids: Vec<usize>,
|
pub image_ids: Vec<usize>,
|
||||||
pub custom_xml_count: usize,
|
pub custom_xml_count: usize,
|
||||||
|
pub header_count: usize,
|
||||||
pub footer_count: usize,
|
pub footer_count: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,6 +33,7 @@ impl Default for DocumentRels {
|
||||||
has_numberings: false,
|
has_numberings: false,
|
||||||
image_ids: vec![],
|
image_ids: vec![],
|
||||||
custom_xml_count: 0,
|
custom_xml_count: 0,
|
||||||
|
header_count: 0,
|
||||||
footer_count: 0,
|
footer_count: 0,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -85,6 +87,14 @@ impl BuildXML for DocumentRels {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for i in 0..self.header_count {
|
||||||
|
b = b.relationship(
|
||||||
|
&create_header_rid(i + 1),
|
||||||
|
"http://schemas.openxmlformats.org/officeDocument/2006/relationships/header",
|
||||||
|
&format!("header{}.xml", i + 1),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
for i in 0..self.footer_count {
|
for i in 0..self.footer_count {
|
||||||
b = b.relationship(
|
b = b.relationship(
|
||||||
&create_footer_rid(i + 1),
|
&create_footer_rid(i + 1),
|
||||||
|
|
|
@ -53,7 +53,7 @@ mod tests {
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
str::from_utf8(&b).unwrap(),
|
str::from_utf8(&b).unwrap(),
|
||||||
r#"<w:p w14:paraId="12345678">
|
r#"<w:p w14:paraId="12345678">
|
||||||
<w:pPr><w:sectPr><w:pgSz w:w="11906" w:h="16838" /><w:pgMar w:top="1985" w:right="1701" w:bottom="1701" w:left="1701" w:header="851" w:footer="992" w:gutter="0" /><w:headerReference w:type="default" r:id="rId4" /><w:cols w:space="425" /><w:docGrid w:type="lines" w:linePitch="360" /></w:sectPr></w:pPr>
|
<w:pPr><w:sectPr><w:pgSz w:w="11906" w:h="16838" /><w:pgMar w:top="1985" w:right="1701" w:bottom="1701" w:left="1701" w:header="851" w:footer="992" w:gutter="0" /><w:cols w:space="425" /><w:docGrid w:type="lines" w:linePitch="360" /></w:sectPr></w:pPr>
|
||||||
</w:p>"#
|
</w:p>"#
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,7 @@ pub struct SectionProperty {
|
||||||
page_margin: PageMargin,
|
page_margin: PageMargin,
|
||||||
columns: usize,
|
columns: usize,
|
||||||
doc_grid: DocGrid,
|
doc_grid: DocGrid,
|
||||||
header_reference: HeaderReference,
|
header_reference: Option<HeaderReference>,
|
||||||
footer_reference: Option<FooterReference>,
|
footer_reference: Option<FooterReference>,
|
||||||
section_type: Option<SectionType>,
|
section_type: Option<SectionType>,
|
||||||
}
|
}
|
||||||
|
@ -42,6 +42,11 @@ impl SectionProperty {
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn header_reference(mut self, r: HeaderReference) -> Self {
|
||||||
|
self.header_reference = Some(r);
|
||||||
|
self
|
||||||
|
}
|
||||||
|
|
||||||
pub fn footer_reference(mut self, r: FooterReference) -> Self {
|
pub fn footer_reference(mut self, r: FooterReference) -> Self {
|
||||||
self.footer_reference = Some(r);
|
self.footer_reference = Some(r);
|
||||||
self
|
self
|
||||||
|
@ -55,7 +60,7 @@ impl Default for SectionProperty {
|
||||||
page_margin: PageMargin::new(),
|
page_margin: PageMargin::new(),
|
||||||
columns: 425,
|
columns: 425,
|
||||||
doc_grid: DocGrid::default(),
|
doc_grid: DocGrid::default(),
|
||||||
header_reference: HeaderReference::default(),
|
header_reference: None,
|
||||||
footer_reference: None,
|
footer_reference: None,
|
||||||
section_type: None,
|
section_type: None,
|
||||||
}
|
}
|
||||||
|
@ -69,9 +74,9 @@ impl BuildXML for SectionProperty {
|
||||||
.open_section_property()
|
.open_section_property()
|
||||||
.add_child(&self.page_size)
|
.add_child(&self.page_size)
|
||||||
.add_child(&self.page_margin)
|
.add_child(&self.page_margin)
|
||||||
.add_child(&self.header_reference)
|
|
||||||
.columns(&format!("{}", &self.columns))
|
.columns(&format!("{}", &self.columns))
|
||||||
.add_child(&self.doc_grid)
|
.add_child(&self.doc_grid)
|
||||||
|
.add_optional_child(&self.header_reference)
|
||||||
.add_optional_child(&self.footer_reference);
|
.add_optional_child(&self.footer_reference);
|
||||||
|
|
||||||
if let Some(t) = self.section_type {
|
if let Some(t) = self.section_type {
|
||||||
|
@ -95,7 +100,7 @@ mod tests {
|
||||||
let b = c.build();
|
let b = c.build();
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
str::from_utf8(&b).unwrap(),
|
str::from_utf8(&b).unwrap(),
|
||||||
r#"<w:sectPr><w:pgSz w:w="11906" w:h="16838" /><w:pgMar w:top="1985" w:right="1701" w:bottom="1701" w:left="1701" w:header="851" w:footer="992" w:gutter="0" /><w:headerReference w:type="default" r:id="rId4" /><w:cols w:space="425" /><w:docGrid w:type="lines" w:linePitch="360" /></w:sectPr>"#
|
r#"<w:sectPr><w:pgSz w:w="11906" w:h="16838" /><w:pgMar w:top="1985" w:right="1701" w:bottom="1701" w:left="1701" w:header="851" w:footer="992" w:gutter="0" /><w:cols w:space="425" /><w:docGrid w:type="lines" w:linePitch="360" /></w:sectPr>"#
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -105,7 +110,7 @@ mod tests {
|
||||||
let b = c.build();
|
let b = c.build();
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
str::from_utf8(&b).unwrap(),
|
str::from_utf8(&b).unwrap(),
|
||||||
r#"<w:sectPr><w:pgSz w:w="11906" w:h="16838" /><w:pgMar w:top="1985" w:right="1701" w:bottom="1701" w:left="1701" w:header="851" w:footer="992" w:gutter="0" /><w:headerReference w:type="default" r:id="rId4" /><w:cols w:space="425" /><w:docGrid w:type="lines" w:linePitch="360" /><w:footerReference w:type="default" r:id="rId6" /></w:sectPr>"#
|
r#"<w:sectPr><w:pgSz w:w="11906" w:h="16838" /><w:pgMar w:top="1985" w:right="1701" w:bottom="1701" w:left="1701" w:header="851" w:footer="992" w:gutter="0" /><w:cols w:space="425" /><w:docGrid w:type="lines" w:linePitch="360" /><w:footerReference w:type="default" r:id="rId6" /></w:sectPr>"#
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,7 @@ use crate::xml_builder::*;
|
||||||
#[derive(Debug, Clone, PartialEq, Serialize)]
|
#[derive(Debug, Clone, PartialEq, Serialize)]
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
pub struct Header {
|
pub struct Header {
|
||||||
|
pub has_numbering: bool,
|
||||||
pub children: Vec<HeaderChild>,
|
pub children: Vec<HeaderChild>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -17,19 +18,17 @@ impl Header {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn add_paragraph(mut self, p: Paragraph) -> Self {
|
pub fn add_paragraph(mut self, p: Paragraph) -> Self {
|
||||||
// TODO: support numberings
|
if p.has_numbering {
|
||||||
// if p.has_numbering {
|
self.has_numbering = true
|
||||||
// self.has_numbering = true
|
}
|
||||||
// }
|
|
||||||
self.children.push(HeaderChild::Paragraph(p));
|
self.children.push(HeaderChild::Paragraph(p));
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn add_table(mut self, t: Table) -> Self {
|
pub fn add_table(mut self, t: Table) -> Self {
|
||||||
// TODO: support numberings
|
if t.has_numbering {
|
||||||
// if t.has_numbering {
|
self.has_numbering = true
|
||||||
// self.has_numbering = true
|
}
|
||||||
// }
|
|
||||||
self.children.push(HeaderChild::Table(t));
|
self.children.push(HeaderChild::Table(t));
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
@ -37,7 +36,10 @@ impl Header {
|
||||||
|
|
||||||
impl Default for Header {
|
impl Default for Header {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self { children: vec![] }
|
Self {
|
||||||
|
children: vec![],
|
||||||
|
has_numbering: false,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,8 +16,7 @@ pub fn generate_header_id() -> usize {
|
||||||
pub fn generate_header_id() -> usize {
|
pub fn generate_header_id() -> usize {
|
||||||
123
|
123
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn create_header_rid(id: usize) -> String {
|
|
||||||
format!("rIdImage{}", id)
|
|
||||||
}
|
|
||||||
*/
|
*/
|
||||||
|
pub fn create_header_rid(id: usize) -> String {
|
||||||
|
format!("rIdHeader{}", id)
|
||||||
|
}
|
||||||
|
|
|
@ -48,6 +48,7 @@ pub use font_table::*;
|
||||||
pub use footer::*;
|
pub use footer::*;
|
||||||
pub use footer_id::*;
|
pub use footer_id::*;
|
||||||
pub use header::*;
|
pub use header::*;
|
||||||
|
pub use header_id::*;
|
||||||
pub use numberings::*;
|
pub use numberings::*;
|
||||||
pub use rels::*;
|
pub use rels::*;
|
||||||
pub use settings::*;
|
pub use settings::*;
|
||||||
|
@ -74,7 +75,7 @@ pub struct Docx {
|
||||||
pub settings: Settings,
|
pub settings: Settings,
|
||||||
pub font_table: FontTable,
|
pub font_table: FontTable,
|
||||||
pub media: Vec<(usize, Vec<u8>)>,
|
pub media: Vec<(usize, Vec<u8>)>,
|
||||||
pub header: Header,
|
pub header: Option<Header>,
|
||||||
pub footer: Option<Footer>,
|
pub footer: Option<Footer>,
|
||||||
pub comments_extended: CommentsExtended,
|
pub comments_extended: CommentsExtended,
|
||||||
pub web_settings: WebSettings,
|
pub web_settings: WebSettings,
|
||||||
|
@ -99,7 +100,6 @@ impl Default for Docx {
|
||||||
let comments = Comments::new();
|
let comments = Comments::new();
|
||||||
let numberings = Numberings::new();
|
let numberings = Numberings::new();
|
||||||
let media = vec![];
|
let media = vec![];
|
||||||
let header = Header::new();
|
|
||||||
let comments_extended = CommentsExtended::new();
|
let comments_extended = CommentsExtended::new();
|
||||||
let web_settings = WebSettings::new();
|
let web_settings = WebSettings::new();
|
||||||
|
|
||||||
|
@ -115,7 +115,7 @@ impl Default for Docx {
|
||||||
settings,
|
settings,
|
||||||
font_table,
|
font_table,
|
||||||
media,
|
media,
|
||||||
header,
|
header: None,
|
||||||
footer: None,
|
footer: None,
|
||||||
comments_extended,
|
comments_extended,
|
||||||
web_settings,
|
web_settings,
|
||||||
|
@ -215,13 +215,22 @@ impl Docx {
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn add_header_paragraph(mut self, p: Paragraph) -> Docx {
|
pub fn header(mut self, header: Header) -> Self {
|
||||||
if p.has_numbering {
|
if header.has_numbering {
|
||||||
// If this document has numbering, set numberings.xml to document_rels.
|
// If this document has numbering, set numberings.xml to document_rels.
|
||||||
// This is because numberings.xml without numbering cause an error on word online.
|
// This is because numberings.xml without numbering cause an error on word online.
|
||||||
self.document_rels.has_numberings = true;
|
self.document_rels.has_numberings = true;
|
||||||
}
|
}
|
||||||
self.header = self.header.add_paragraph(p);
|
if self.header.is_none() {
|
||||||
|
self.document.section_property = self
|
||||||
|
.document
|
||||||
|
.section_property
|
||||||
|
// Add default header reference
|
||||||
|
.header_reference(HeaderReference::new("default", create_header_rid(1)));
|
||||||
|
self.document_rels.header_count += 1;
|
||||||
|
self.content_type = self.content_type.add_header();
|
||||||
|
}
|
||||||
|
self.header = Some(header);
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -244,30 +253,6 @@ impl Docx {
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn add_footer_paragraph(mut self, p: Paragraph) -> Docx {
|
|
||||||
if p.has_numbering {
|
|
||||||
// If this document has numbering, set numberings.xml to document_rels.
|
|
||||||
// This is because numberings.xml without numbering cause an error on word online.
|
|
||||||
self.document_rels.has_numberings = true;
|
|
||||||
}
|
|
||||||
if self.footer.is_none() {
|
|
||||||
self.footer = Some(Footer::new());
|
|
||||||
self.document.section_property = self
|
|
||||||
.document
|
|
||||||
.section_property
|
|
||||||
// Add default footer reference
|
|
||||||
.footer_reference(FooterReference::new("default", create_footer_rid(1)));
|
|
||||||
self.document_rels.footer_count += 1;
|
|
||||||
self.content_type = self.content_type.add_footer();
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(footer) = self.footer {
|
|
||||||
let footer = footer.add_paragraph(p);
|
|
||||||
self.footer = Some(footer);
|
|
||||||
}
|
|
||||||
self
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn add_abstract_numbering(mut self, num: AbstractNumbering) -> Docx {
|
pub fn add_abstract_numbering(mut self, num: AbstractNumbering) -> Docx {
|
||||||
self.numberings = self.numberings.add_abstract_numbering(num);
|
self.numberings = self.numberings.add_abstract_numbering(num);
|
||||||
self
|
self
|
||||||
|
@ -381,6 +366,7 @@ impl Docx {
|
||||||
self.document_rels.image_ids = image_ids;
|
self.document_rels.image_ids = image_ids;
|
||||||
|
|
||||||
let footer = self.footer.as_ref().map(|footer| footer.build());
|
let footer = self.footer.as_ref().map(|footer| footer.build());
|
||||||
|
let header = self.header.as_ref().map(|header| header.build());
|
||||||
|
|
||||||
XMLDocx {
|
XMLDocx {
|
||||||
content_type: self.content_type.build(),
|
content_type: self.content_type.build(),
|
||||||
|
@ -394,7 +380,7 @@ impl Docx {
|
||||||
font_table: self.font_table.build(),
|
font_table: self.font_table.build(),
|
||||||
numberings: self.numberings.build(),
|
numberings: self.numberings.build(),
|
||||||
media: images,
|
media: images,
|
||||||
header: self.header.build(),
|
header,
|
||||||
footer,
|
footer,
|
||||||
comments_extended: self.comments_extended.build(),
|
comments_extended: self.comments_extended.build(),
|
||||||
taskpanes: self.taskpanes.map(|taskpanes| taskpanes.build()),
|
taskpanes: self.taskpanes.map(|taskpanes| taskpanes.build()),
|
||||||
|
|
|
@ -17,7 +17,7 @@ pub struct XMLDocx {
|
||||||
pub font_table: Vec<u8>,
|
pub font_table: Vec<u8>,
|
||||||
pub numberings: Vec<u8>,
|
pub numberings: Vec<u8>,
|
||||||
pub media: Vec<(usize, Vec<u8>)>,
|
pub media: Vec<(usize, Vec<u8>)>,
|
||||||
pub header: Vec<u8>,
|
pub header: Option<Vec<u8>>,
|
||||||
pub footer: Option<Vec<u8>>,
|
pub footer: Option<Vec<u8>>,
|
||||||
pub comments_extended: Vec<u8>,
|
pub comments_extended: Vec<u8>,
|
||||||
pub taskpanes: Option<Vec<u8>>,
|
pub taskpanes: Option<Vec<u8>>,
|
||||||
|
|
|
@ -43,11 +43,14 @@ where
|
||||||
zip.write_all(&xml.comments)?;
|
zip.write_all(&xml.comments)?;
|
||||||
zip.start_file("word/numbering.xml", options)?;
|
zip.start_file("word/numbering.xml", options)?;
|
||||||
zip.write_all(&xml.numberings)?;
|
zip.write_all(&xml.numberings)?;
|
||||||
zip.start_file("word/header1.xml", options)?;
|
|
||||||
zip.write_all(&xml.header)?;
|
|
||||||
zip.start_file("word/commentsExtended.xml", options)?;
|
zip.start_file("word/commentsExtended.xml", options)?;
|
||||||
zip.write_all(&xml.comments_extended)?;
|
zip.write_all(&xml.comments_extended)?;
|
||||||
|
|
||||||
|
if let Some(header) = xml.header {
|
||||||
|
zip.start_file("word/header1.xml", options)?;
|
||||||
|
zip.write_all(&header)?;
|
||||||
|
}
|
||||||
|
|
||||||
if let Some(footer) = xml.footer {
|
if let Some(footer) = xml.footer {
|
||||||
zip.start_file("word/footer1.xml", options)?;
|
zip.start_file("word/footer1.xml", options)?;
|
||||||
zip.write_all(&footer)?;
|
zip.write_all(&footer)?;
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -11,6 +11,7 @@ Object {
|
||||||
"contentType": Object {
|
"contentType": Object {
|
||||||
"custom_xml_count": 1,
|
"custom_xml_count": 1,
|
||||||
"footer_count": 1,
|
"footer_count": 1,
|
||||||
|
"header_count": 1,
|
||||||
"types": Object {
|
"types": Object {
|
||||||
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
||||||
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
||||||
|
@ -21,7 +22,6 @@ Object {
|
||||||
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
||||||
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
||||||
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
||||||
"/word/header1.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml",
|
|
||||||
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
||||||
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
||||||
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
||||||
|
@ -954,10 +954,7 @@ Object {
|
||||||
"linePitch": 360,
|
"linePitch": 360,
|
||||||
},
|
},
|
||||||
"footerReference": null,
|
"footerReference": null,
|
||||||
"headerReference": Object {
|
"headerReference": null,
|
||||||
"headerType": "default",
|
|
||||||
"id": "rId4",
|
|
||||||
},
|
|
||||||
"pageMargin": Object {
|
"pageMargin": Object {
|
||||||
"bottom": 1701,
|
"bottom": 1701,
|
||||||
"footer": 992,
|
"footer": 992,
|
||||||
|
@ -980,13 +977,12 @@ Object {
|
||||||
"footerCount": 0,
|
"footerCount": 0,
|
||||||
"hasComments": false,
|
"hasComments": false,
|
||||||
"hasNumberings": false,
|
"hasNumberings": false,
|
||||||
|
"headerCount": 0,
|
||||||
"imageIds": Array [],
|
"imageIds": Array [],
|
||||||
},
|
},
|
||||||
"fontTable": Object {},
|
"fontTable": Object {},
|
||||||
"footer": null,
|
"footer": null,
|
||||||
"header": Object {
|
"header": null,
|
||||||
"children": Array [],
|
|
||||||
},
|
|
||||||
"media": Array [],
|
"media": Array [],
|
||||||
"numberings": Object {
|
"numberings": Object {
|
||||||
"abstractNums": Array [],
|
"abstractNums": Array [],
|
||||||
|
@ -1578,6 +1574,7 @@ Object {
|
||||||
"contentType": Object {
|
"contentType": Object {
|
||||||
"custom_xml_count": 1,
|
"custom_xml_count": 1,
|
||||||
"footer_count": 1,
|
"footer_count": 1,
|
||||||
|
"header_count": 1,
|
||||||
"types": Object {
|
"types": Object {
|
||||||
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
||||||
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
||||||
|
@ -1588,7 +1585,6 @@ Object {
|
||||||
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
||||||
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
||||||
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
||||||
"/word/header1.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml",
|
|
||||||
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
||||||
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
||||||
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
||||||
|
@ -1703,10 +1699,7 @@ Object {
|
||||||
"linePitch": 360,
|
"linePitch": 360,
|
||||||
},
|
},
|
||||||
"footerReference": null,
|
"footerReference": null,
|
||||||
"headerReference": Object {
|
"headerReference": null,
|
||||||
"headerType": "default",
|
|
||||||
"id": "rId4",
|
|
||||||
},
|
|
||||||
"pageMargin": Object {
|
"pageMargin": Object {
|
||||||
"bottom": 1701,
|
"bottom": 1701,
|
||||||
"footer": 992,
|
"footer": 992,
|
||||||
|
@ -1729,13 +1722,12 @@ Object {
|
||||||
"footerCount": 0,
|
"footerCount": 0,
|
||||||
"hasComments": false,
|
"hasComments": false,
|
||||||
"hasNumberings": false,
|
"hasNumberings": false,
|
||||||
|
"headerCount": 0,
|
||||||
"imageIds": Array [],
|
"imageIds": Array [],
|
||||||
},
|
},
|
||||||
"fontTable": Object {},
|
"fontTable": Object {},
|
||||||
"footer": null,
|
"footer": null,
|
||||||
"header": Object {
|
"header": null,
|
||||||
"children": Array [],
|
|
||||||
},
|
|
||||||
"media": Array [],
|
"media": Array [],
|
||||||
"numberings": Object {
|
"numberings": Object {
|
||||||
"abstractNums": Array [],
|
"abstractNums": Array [],
|
||||||
|
@ -1955,6 +1947,7 @@ Object {
|
||||||
"contentType": Object {
|
"contentType": Object {
|
||||||
"custom_xml_count": 1,
|
"custom_xml_count": 1,
|
||||||
"footer_count": 1,
|
"footer_count": 1,
|
||||||
|
"header_count": 1,
|
||||||
"types": Object {
|
"types": Object {
|
||||||
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
||||||
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
||||||
|
@ -1965,7 +1958,6 @@ Object {
|
||||||
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
||||||
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
||||||
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
||||||
"/word/header1.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml",
|
|
||||||
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
||||||
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
||||||
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
||||||
|
@ -2366,10 +2358,7 @@ Object {
|
||||||
"linePitch": 360,
|
"linePitch": 360,
|
||||||
},
|
},
|
||||||
"footerReference": null,
|
"footerReference": null,
|
||||||
"headerReference": Object {
|
"headerReference": null,
|
||||||
"headerType": "default",
|
|
||||||
"id": "rId4",
|
|
||||||
},
|
|
||||||
"pageMargin": Object {
|
"pageMargin": Object {
|
||||||
"bottom": 1701,
|
"bottom": 1701,
|
||||||
"footer": 992,
|
"footer": 992,
|
||||||
|
@ -2392,13 +2381,12 @@ Object {
|
||||||
"footerCount": 0,
|
"footerCount": 0,
|
||||||
"hasComments": false,
|
"hasComments": false,
|
||||||
"hasNumberings": false,
|
"hasNumberings": false,
|
||||||
|
"headerCount": 0,
|
||||||
"imageIds": Array [],
|
"imageIds": Array [],
|
||||||
},
|
},
|
||||||
"fontTable": Object {},
|
"fontTable": Object {},
|
||||||
"footer": null,
|
"footer": null,
|
||||||
"header": Object {
|
"header": null,
|
||||||
"children": Array [],
|
|
||||||
},
|
|
||||||
"media": Array [],
|
"media": Array [],
|
||||||
"numberings": Object {
|
"numberings": Object {
|
||||||
"abstractNums": Array [],
|
"abstractNums": Array [],
|
||||||
|
@ -3292,6 +3280,7 @@ Object {
|
||||||
"contentType": Object {
|
"contentType": Object {
|
||||||
"custom_xml_count": 1,
|
"custom_xml_count": 1,
|
||||||
"footer_count": 1,
|
"footer_count": 1,
|
||||||
|
"header_count": 1,
|
||||||
"types": Object {
|
"types": Object {
|
||||||
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
||||||
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
||||||
|
@ -3302,7 +3291,6 @@ Object {
|
||||||
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
||||||
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
||||||
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
||||||
"/word/header1.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml",
|
|
||||||
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
||||||
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
||||||
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
||||||
|
@ -3837,10 +3825,7 @@ Object {
|
||||||
"linePitch": 360,
|
"linePitch": 360,
|
||||||
},
|
},
|
||||||
"footerReference": null,
|
"footerReference": null,
|
||||||
"headerReference": Object {
|
"headerReference": null,
|
||||||
"headerType": "default",
|
|
||||||
"id": "rId4",
|
|
||||||
},
|
|
||||||
"pageMargin": Object {
|
"pageMargin": Object {
|
||||||
"bottom": 1701,
|
"bottom": 1701,
|
||||||
"footer": 992,
|
"footer": 992,
|
||||||
|
@ -3863,13 +3848,12 @@ Object {
|
||||||
"footerCount": 0,
|
"footerCount": 0,
|
||||||
"hasComments": true,
|
"hasComments": true,
|
||||||
"hasNumberings": false,
|
"hasNumberings": false,
|
||||||
|
"headerCount": 0,
|
||||||
"imageIds": Array [],
|
"imageIds": Array [],
|
||||||
},
|
},
|
||||||
"fontTable": Object {},
|
"fontTable": Object {},
|
||||||
"footer": null,
|
"footer": null,
|
||||||
"header": Object {
|
"header": null,
|
||||||
"children": Array [],
|
|
||||||
},
|
|
||||||
"media": Array [],
|
"media": Array [],
|
||||||
"numberings": Object {
|
"numberings": Object {
|
||||||
"abstractNums": Array [],
|
"abstractNums": Array [],
|
||||||
|
@ -4089,6 +4073,7 @@ Object {
|
||||||
"contentType": Object {
|
"contentType": Object {
|
||||||
"custom_xml_count": 1,
|
"custom_xml_count": 1,
|
||||||
"footer_count": 1,
|
"footer_count": 1,
|
||||||
|
"header_count": 1,
|
||||||
"types": Object {
|
"types": Object {
|
||||||
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
||||||
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
||||||
|
@ -4099,7 +4084,6 @@ Object {
|
||||||
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
||||||
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
||||||
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
||||||
"/word/header1.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml",
|
|
||||||
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
||||||
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
||||||
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
||||||
|
@ -6359,10 +6343,7 @@ Object {
|
||||||
"linePitch": 360,
|
"linePitch": 360,
|
||||||
},
|
},
|
||||||
"footerReference": null,
|
"footerReference": null,
|
||||||
"headerReference": Object {
|
"headerReference": null,
|
||||||
"headerType": "default",
|
|
||||||
"id": "rId4",
|
|
||||||
},
|
|
||||||
"pageMargin": Object {
|
"pageMargin": Object {
|
||||||
"bottom": 600,
|
"bottom": 600,
|
||||||
"footer": 992,
|
"footer": 992,
|
||||||
|
@ -6385,13 +6366,12 @@ Object {
|
||||||
"footerCount": 0,
|
"footerCount": 0,
|
||||||
"hasComments": false,
|
"hasComments": false,
|
||||||
"hasNumberings": false,
|
"hasNumberings": false,
|
||||||
|
"headerCount": 0,
|
||||||
"imageIds": Array [],
|
"imageIds": Array [],
|
||||||
},
|
},
|
||||||
"fontTable": Object {},
|
"fontTable": Object {},
|
||||||
"footer": null,
|
"footer": null,
|
||||||
"header": Object {
|
"header": null,
|
||||||
"children": Array [],
|
|
||||||
},
|
|
||||||
"media": Array [],
|
"media": Array [],
|
||||||
"numberings": Object {
|
"numberings": Object {
|
||||||
"abstractNums": Array [],
|
"abstractNums": Array [],
|
||||||
|
@ -6983,6 +6963,7 @@ Object {
|
||||||
"contentType": Object {
|
"contentType": Object {
|
||||||
"custom_xml_count": 1,
|
"custom_xml_count": 1,
|
||||||
"footer_count": 1,
|
"footer_count": 1,
|
||||||
|
"header_count": 1,
|
||||||
"types": Object {
|
"types": Object {
|
||||||
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
||||||
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
||||||
|
@ -6993,7 +6974,6 @@ Object {
|
||||||
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
||||||
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
||||||
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
||||||
"/word/header1.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml",
|
|
||||||
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
||||||
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
||||||
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
||||||
|
@ -7261,10 +7241,7 @@ Object {
|
||||||
"linePitch": 360,
|
"linePitch": 360,
|
||||||
},
|
},
|
||||||
"footerReference": null,
|
"footerReference": null,
|
||||||
"headerReference": Object {
|
"headerReference": null,
|
||||||
"headerType": "default",
|
|
||||||
"id": "rId4",
|
|
||||||
},
|
|
||||||
"pageMargin": Object {
|
"pageMargin": Object {
|
||||||
"bottom": 1701,
|
"bottom": 1701,
|
||||||
"footer": 992,
|
"footer": 992,
|
||||||
|
@ -7287,13 +7264,12 @@ Object {
|
||||||
"footerCount": 0,
|
"footerCount": 0,
|
||||||
"hasComments": false,
|
"hasComments": false,
|
||||||
"hasNumberings": false,
|
"hasNumberings": false,
|
||||||
|
"headerCount": 0,
|
||||||
"imageIds": Array [],
|
"imageIds": Array [],
|
||||||
},
|
},
|
||||||
"fontTable": Object {},
|
"fontTable": Object {},
|
||||||
"footer": null,
|
"footer": null,
|
||||||
"header": Object {
|
"header": null,
|
||||||
"children": Array [],
|
|
||||||
},
|
|
||||||
"media": Array [],
|
"media": Array [],
|
||||||
"numberings": Object {
|
"numberings": Object {
|
||||||
"abstractNums": Array [],
|
"abstractNums": Array [],
|
||||||
|
@ -7513,6 +7489,7 @@ Object {
|
||||||
"contentType": Object {
|
"contentType": Object {
|
||||||
"custom_xml_count": 1,
|
"custom_xml_count": 1,
|
||||||
"footer_count": 1,
|
"footer_count": 1,
|
||||||
|
"header_count": 1,
|
||||||
"types": Object {
|
"types": Object {
|
||||||
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
||||||
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
||||||
|
@ -7523,7 +7500,6 @@ Object {
|
||||||
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
||||||
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
||||||
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
||||||
"/word/header1.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml",
|
|
||||||
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
||||||
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
||||||
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
||||||
|
@ -7952,10 +7928,7 @@ Object {
|
||||||
"linePitch": 360,
|
"linePitch": 360,
|
||||||
},
|
},
|
||||||
"footerReference": null,
|
"footerReference": null,
|
||||||
"headerReference": Object {
|
"headerReference": null,
|
||||||
"headerType": "default",
|
|
||||||
"id": "rId4",
|
|
||||||
},
|
|
||||||
"pageMargin": Object {
|
"pageMargin": Object {
|
||||||
"bottom": 1701,
|
"bottom": 1701,
|
||||||
"footer": 992,
|
"footer": 992,
|
||||||
|
@ -7978,13 +7951,12 @@ Object {
|
||||||
"footerCount": 0,
|
"footerCount": 0,
|
||||||
"hasComments": false,
|
"hasComments": false,
|
||||||
"hasNumberings": false,
|
"hasNumberings": false,
|
||||||
|
"headerCount": 0,
|
||||||
"imageIds": Array [],
|
"imageIds": Array [],
|
||||||
},
|
},
|
||||||
"fontTable": Object {},
|
"fontTable": Object {},
|
||||||
"footer": null,
|
"footer": null,
|
||||||
"header": Object {
|
"header": null,
|
||||||
"children": Array [],
|
|
||||||
},
|
|
||||||
"media": Array [],
|
"media": Array [],
|
||||||
"numberings": Object {
|
"numberings": Object {
|
||||||
"abstractNums": Array [
|
"abstractNums": Array [
|
||||||
|
@ -11303,6 +11275,7 @@ Object {
|
||||||
"contentType": Object {
|
"contentType": Object {
|
||||||
"custom_xml_count": 1,
|
"custom_xml_count": 1,
|
||||||
"footer_count": 1,
|
"footer_count": 1,
|
||||||
|
"header_count": 1,
|
||||||
"types": Object {
|
"types": Object {
|
||||||
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
||||||
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
||||||
|
@ -11313,7 +11286,6 @@ Object {
|
||||||
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
||||||
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
||||||
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
||||||
"/word/header1.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml",
|
|
||||||
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
||||||
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
||||||
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
||||||
|
@ -12541,10 +12513,7 @@ Object {
|
||||||
"linePitch": 360,
|
"linePitch": 360,
|
||||||
},
|
},
|
||||||
"footerReference": null,
|
"footerReference": null,
|
||||||
"headerReference": Object {
|
"headerReference": null,
|
||||||
"headerType": "default",
|
|
||||||
"id": "rId4",
|
|
||||||
},
|
|
||||||
"pageMargin": Object {
|
"pageMargin": Object {
|
||||||
"bottom": 1701,
|
"bottom": 1701,
|
||||||
"footer": 992,
|
"footer": 992,
|
||||||
|
@ -12567,13 +12536,12 @@ Object {
|
||||||
"footerCount": 0,
|
"footerCount": 0,
|
||||||
"hasComments": true,
|
"hasComments": true,
|
||||||
"hasNumberings": false,
|
"hasNumberings": false,
|
||||||
|
"headerCount": 0,
|
||||||
"imageIds": Array [],
|
"imageIds": Array [],
|
||||||
},
|
},
|
||||||
"fontTable": Object {},
|
"fontTable": Object {},
|
||||||
"footer": null,
|
"footer": null,
|
||||||
"header": Object {
|
"header": null,
|
||||||
"children": Array [],
|
|
||||||
},
|
|
||||||
"media": Array [],
|
"media": Array [],
|
||||||
"numberings": Object {
|
"numberings": Object {
|
||||||
"abstractNums": Array [
|
"abstractNums": Array [
|
||||||
|
@ -15314,6 +15282,7 @@ Object {
|
||||||
"contentType": Object {
|
"contentType": Object {
|
||||||
"custom_xml_count": 1,
|
"custom_xml_count": 1,
|
||||||
"footer_count": 1,
|
"footer_count": 1,
|
||||||
|
"header_count": 1,
|
||||||
"types": Object {
|
"types": Object {
|
||||||
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
||||||
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
||||||
|
@ -15324,7 +15293,6 @@ Object {
|
||||||
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
||||||
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
||||||
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
||||||
"/word/header1.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml",
|
|
||||||
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
||||||
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
||||||
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
||||||
|
@ -15842,10 +15810,7 @@ Object {
|
||||||
"linePitch": 360,
|
"linePitch": 360,
|
||||||
},
|
},
|
||||||
"footerReference": null,
|
"footerReference": null,
|
||||||
"headerReference": Object {
|
"headerReference": null,
|
||||||
"headerType": "default",
|
|
||||||
"id": "rId4",
|
|
||||||
},
|
|
||||||
"pageMargin": Object {
|
"pageMargin": Object {
|
||||||
"bottom": 1701,
|
"bottom": 1701,
|
||||||
"footer": 992,
|
"footer": 992,
|
||||||
|
@ -15868,13 +15833,12 @@ Object {
|
||||||
"footerCount": 0,
|
"footerCount": 0,
|
||||||
"hasComments": false,
|
"hasComments": false,
|
||||||
"hasNumberings": false,
|
"hasNumberings": false,
|
||||||
|
"headerCount": 0,
|
||||||
"imageIds": Array [],
|
"imageIds": Array [],
|
||||||
},
|
},
|
||||||
"fontTable": Object {},
|
"fontTable": Object {},
|
||||||
"footer": null,
|
"footer": null,
|
||||||
"header": Object {
|
"header": null,
|
||||||
"children": Array [],
|
|
||||||
},
|
|
||||||
"media": Array [],
|
"media": Array [],
|
||||||
"numberings": Object {
|
"numberings": Object {
|
||||||
"abstractNums": Array [
|
"abstractNums": Array [
|
||||||
|
@ -19770,6 +19734,7 @@ Object {
|
||||||
"contentType": Object {
|
"contentType": Object {
|
||||||
"custom_xml_count": 1,
|
"custom_xml_count": 1,
|
||||||
"footer_count": 1,
|
"footer_count": 1,
|
||||||
|
"header_count": 1,
|
||||||
"types": Object {
|
"types": Object {
|
||||||
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
||||||
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
||||||
|
@ -19780,7 +19745,6 @@ Object {
|
||||||
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
||||||
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
||||||
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
||||||
"/word/header1.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml",
|
|
||||||
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
||||||
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
||||||
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
||||||
|
@ -20621,10 +20585,7 @@ Object {
|
||||||
"linePitch": 360,
|
"linePitch": 360,
|
||||||
},
|
},
|
||||||
"footerReference": null,
|
"footerReference": null,
|
||||||
"headerReference": Object {
|
"headerReference": null,
|
||||||
"headerType": "default",
|
|
||||||
"id": "rId4",
|
|
||||||
},
|
|
||||||
"pageMargin": Object {
|
"pageMargin": Object {
|
||||||
"bottom": 1701,
|
"bottom": 1701,
|
||||||
"footer": 992,
|
"footer": 992,
|
||||||
|
@ -20647,13 +20608,12 @@ Object {
|
||||||
"footerCount": 0,
|
"footerCount": 0,
|
||||||
"hasComments": false,
|
"hasComments": false,
|
||||||
"hasNumberings": false,
|
"hasNumberings": false,
|
||||||
|
"headerCount": 0,
|
||||||
"imageIds": Array [],
|
"imageIds": Array [],
|
||||||
},
|
},
|
||||||
"fontTable": Object {},
|
"fontTable": Object {},
|
||||||
"footer": null,
|
"footer": null,
|
||||||
"header": Object {
|
"header": null,
|
||||||
"children": Array [],
|
|
||||||
},
|
|
||||||
"media": Array [],
|
"media": Array [],
|
||||||
"numberings": Object {
|
"numberings": Object {
|
||||||
"abstractNums": Array [],
|
"abstractNums": Array [],
|
||||||
|
@ -21399,6 +21359,7 @@ Object {
|
||||||
"contentType": Object {
|
"contentType": Object {
|
||||||
"custom_xml_count": 1,
|
"custom_xml_count": 1,
|
||||||
"footer_count": 1,
|
"footer_count": 1,
|
||||||
|
"header_count": 1,
|
||||||
"types": Object {
|
"types": Object {
|
||||||
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
||||||
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
||||||
|
@ -21409,7 +21370,6 @@ Object {
|
||||||
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
||||||
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
||||||
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
||||||
"/word/header1.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml",
|
|
||||||
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
||||||
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
||||||
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
||||||
|
@ -21910,10 +21870,7 @@ Object {
|
||||||
"linePitch": 360,
|
"linePitch": 360,
|
||||||
},
|
},
|
||||||
"footerReference": null,
|
"footerReference": null,
|
||||||
"headerReference": Object {
|
"headerReference": null,
|
||||||
"headerType": "default",
|
|
||||||
"id": "rId4",
|
|
||||||
},
|
|
||||||
"pageMargin": Object {
|
"pageMargin": Object {
|
||||||
"bottom": 1701,
|
"bottom": 1701,
|
||||||
"footer": 992,
|
"footer": 992,
|
||||||
|
@ -21936,13 +21893,12 @@ Object {
|
||||||
"footerCount": 0,
|
"footerCount": 0,
|
||||||
"hasComments": false,
|
"hasComments": false,
|
||||||
"hasNumberings": false,
|
"hasNumberings": false,
|
||||||
|
"headerCount": 0,
|
||||||
"imageIds": Array [],
|
"imageIds": Array [],
|
||||||
},
|
},
|
||||||
"fontTable": Object {},
|
"fontTable": Object {},
|
||||||
"footer": null,
|
"footer": null,
|
||||||
"header": Object {
|
"header": null,
|
||||||
"children": Array [],
|
|
||||||
},
|
|
||||||
"media": Array [],
|
"media": Array [],
|
||||||
"numberings": Object {
|
"numberings": Object {
|
||||||
"abstractNums": Array [],
|
"abstractNums": Array [],
|
||||||
|
@ -22670,6 +22626,7 @@ Object {
|
||||||
"contentType": Object {
|
"contentType": Object {
|
||||||
"custom_xml_count": 1,
|
"custom_xml_count": 1,
|
||||||
"footer_count": 1,
|
"footer_count": 1,
|
||||||
|
"header_count": 1,
|
||||||
"types": Object {
|
"types": Object {
|
||||||
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
"/_rels/.rels": "application/vnd.openxmlformats-package.relationships+xml",
|
||||||
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
"/docProps/app.xml": "application/vnd.openxmlformats-officedocument.extended-properties+xml",
|
||||||
|
@ -22680,7 +22637,6 @@ Object {
|
||||||
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
"/word/commentsExtended.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.commentsExtended+xml",
|
||||||
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
"/word/document.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml",
|
||||||
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
"/word/fontTable.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml",
|
||||||
"/word/header1.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml",
|
|
||||||
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
"/word/numbering.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml",
|
||||||
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
"/word/settings.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml",
|
||||||
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
"/word/styles.xml": "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml",
|
||||||
|
@ -22977,10 +22933,7 @@ Object {
|
||||||
"linePitch": 360,
|
"linePitch": 360,
|
||||||
},
|
},
|
||||||
"footerReference": null,
|
"footerReference": null,
|
||||||
"headerReference": Object {
|
"headerReference": null,
|
||||||
"headerType": "default",
|
|
||||||
"id": "rId4",
|
|
||||||
},
|
|
||||||
"pageMargin": Object {
|
"pageMargin": Object {
|
||||||
"bottom": 1701,
|
"bottom": 1701,
|
||||||
"footer": 992,
|
"footer": 992,
|
||||||
|
@ -23003,13 +22956,12 @@ Object {
|
||||||
"footerCount": 0,
|
"footerCount": 0,
|
||||||
"hasComments": false,
|
"hasComments": false,
|
||||||
"hasNumberings": false,
|
"hasNumberings": false,
|
||||||
|
"headerCount": 0,
|
||||||
"imageIds": Array [],
|
"imageIds": Array [],
|
||||||
},
|
},
|
||||||
"fontTable": Object {},
|
"fontTable": Object {},
|
||||||
"footer": null,
|
"footer": null,
|
||||||
"header": Object {
|
"header": null,
|
||||||
"children": Array [],
|
|
||||||
},
|
|
||||||
"media": Array [],
|
"media": Array [],
|
||||||
"numberings": Object {
|
"numberings": Object {
|
||||||
"abstractNums": Array [],
|
"abstractNums": Array [],
|
||||||
|
@ -23609,7 +23561,7 @@ exports[`writer should write cell shading 2`] = `
|
||||||
<w:left w:w=\\"55\\" w:type=\\"dxa\\" />
|
<w:left w:w=\\"55\\" w:type=\\"dxa\\" />
|
||||||
<w:bottom w:w=\\"0\\" w:type=\\"dxa\\" />
|
<w:bottom w:w=\\"0\\" w:type=\\"dxa\\" />
|
||||||
<w:right w:w=\\"55\\" w:type=\\"dxa\\" />
|
<w:right w:w=\\"55\\" w:type=\\"dxa\\" />
|
||||||
</w:tblCellMar><w:tblInd w:w=\\"0\\" w:type=\\"dxa\\" /></w:tblPr><w:tblGrid /><w:tr><w:trPr /><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders><w:shd w:val=\\"clear\\" w:color=\\"auto\\" w:fill=\\"FF0000\\" /></w:tcPr><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello!!</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
</w:tblCellMar><w:tblInd w:w=\\"0\\" w:type=\\"dxa\\" /></w:tblPr><w:tblGrid /><w:tr><w:trPr /><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders><w:shd w:val=\\"clear\\" w:color=\\"auto\\" w:fill=\\"FF0000\\" /></w:tcPr><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello!!</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
||||||
</w:document>"
|
</w:document>"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -23643,7 +23595,7 @@ exports[`writer should write custom props 2`] = `
|
||||||
exports[`writer should write custom props 3`] = `
|
exports[`writer should write custom props 3`] = `
|
||||||
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
||||||
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
||||||
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello!!</w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello!!</w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
||||||
</w:document>"
|
</w:document>"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -23714,7 +23666,7 @@ exports[`writer should write default font 1`] = `
|
||||||
exports[`writer should write default font 2`] = `
|
exports[`writer should write default font 2`] = `
|
||||||
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
||||||
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
||||||
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello world!!!!</w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello world!!!!</w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
||||||
</w:document>"
|
</w:document>"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -23739,7 +23691,7 @@ exports[`writer should write doc grid 1`] = `
|
||||||
exports[`writer should write doc grid 2`] = `
|
exports[`writer should write doc grid 2`] = `
|
||||||
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
||||||
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
||||||
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello world!!!!</w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"default\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello world!!!!</w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"default\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
||||||
</w:document>"
|
</w:document>"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -23764,7 +23716,7 @@ exports[`writer should write doc vars 1`] = `
|
||||||
exports[`writer should write doc vars 2`] = `
|
exports[`writer should write doc vars 2`] = `
|
||||||
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
||||||
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
||||||
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello world!!!!</w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello world!!!!</w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
||||||
</w:document>"
|
</w:document>"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -23790,7 +23742,7 @@ exports[`writer should write footer for default section 1`] = `
|
||||||
exports[`writer should write footer for default section 2`] = `
|
exports[`writer should write footer for default section 2`] = `
|
||||||
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
||||||
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
||||||
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">World </w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /><w:footerReference w:type=\\"default\\" r:id=\\"rIdFooter1\\" /></w:sectPr></w:body>
|
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">World </w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /><w:footerReference w:type=\\"default\\" r:id=\\"rIdFooter1\\" /></w:sectPr></w:body>
|
||||||
</w:document>"
|
</w:document>"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -23813,7 +23765,7 @@ exports[`writer should write hello 1`] = `
|
||||||
exports[`writer should write hello 2`] = `
|
exports[`writer should write hello 2`] = `
|
||||||
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
||||||
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
||||||
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello world!!</w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello world!!</w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
||||||
</w:document>"
|
</w:document>"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -23838,7 +23790,7 @@ exports[`writer should write line spacing 1`] = `
|
||||||
exports[`writer should write line spacing 2`] = `
|
exports[`writer should write line spacing 2`] = `
|
||||||
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
||||||
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
||||||
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /><w:spacing w:before=\\"100\\" w:after=\\"0\\" w:afterLines=\\"400\\" w:line=\\"100\\" /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello </w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /><w:spacing w:before=\\"100\\" w:after=\\"0\\" w:afterLines=\\"400\\" w:line=\\"100\\" /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello </w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
||||||
</w:document>"
|
</w:document>"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -23864,7 +23816,7 @@ exports[`writer should write lvlOverride with level 1`] = `
|
||||||
exports[`writer should write lvlOverride with level 2`] = `
|
exports[`writer should write lvlOverride with level 2`] = `
|
||||||
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
||||||
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
||||||
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /><w:numPr><w:numId w:val=\\"0\\" /><w:ilvl w:val=\\"0\\" /></w:numPr></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello world!!</w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /><w:numPr><w:numId w:val=\\"0\\" /><w:ilvl w:val=\\"0\\" /></w:numPr></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello world!!</w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
||||||
</w:document>"
|
</w:document>"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -23900,7 +23852,7 @@ exports[`writer should write nested table 2`] = `
|
||||||
<w:left w:w=\\"55\\" w:type=\\"dxa\\" />
|
<w:left w:w=\\"55\\" w:type=\\"dxa\\" />
|
||||||
<w:bottom w:w=\\"0\\" w:type=\\"dxa\\" />
|
<w:bottom w:w=\\"0\\" w:type=\\"dxa\\" />
|
||||||
<w:right w:w=\\"55\\" w:type=\\"dxa\\" />
|
<w:right w:w=\\"55\\" w:type=\\"dxa\\" />
|
||||||
</w:tblCellMar><w:tblInd w:w=\\"0\\" w:type=\\"dxa\\" /></w:tblPr><w:tblGrid /><w:tr><w:trPr /><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders></w:tcPr><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello world!!</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr></w:p></w:tc></w:tr></w:tbl><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
</w:tblCellMar><w:tblInd w:w=\\"0\\" w:type=\\"dxa\\" /></w:tblPr><w:tblGrid /><w:tr><w:trPr /><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders></w:tcPr><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello world!!</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr></w:p></w:tc></w:tr></w:tbl><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
||||||
</w:document>"
|
</w:document>"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -23925,7 +23877,7 @@ exports[`writer should write page margin 1`] = `
|
||||||
exports[`writer should write page margin 2`] = `
|
exports[`writer should write page margin 2`] = `
|
||||||
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
||||||
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
||||||
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello world!!</w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1000\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"2000\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello world!!</w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1000\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"2000\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
||||||
</w:document>"
|
</w:document>"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -23950,7 +23902,7 @@ exports[`writer should write page orientation 1`] = `
|
||||||
exports[`writer should write page orientation 2`] = `
|
exports[`writer should write page orientation 2`] = `
|
||||||
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
||||||
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
||||||
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello </w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"16838\\" w:h=\\"11906\\" w:orient=\\"landscape\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello </w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"16838\\" w:h=\\"11906\\" w:orient=\\"landscape\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
||||||
</w:document>"
|
</w:document>"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -23975,7 +23927,7 @@ exports[`writer should write page size 1`] = `
|
||||||
exports[`writer should write page size 2`] = `
|
exports[`writer should write page size 2`] = `
|
||||||
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
||||||
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
||||||
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello world!!</w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"400\\" w:h=\\"800\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello world!!</w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"400\\" w:h=\\"800\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
||||||
</w:document>"
|
</w:document>"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -24005,7 +23957,7 @@ exports[`writer should write table layout 2`] = `
|
||||||
<w:left w:w=\\"55\\" w:type=\\"dxa\\" />
|
<w:left w:w=\\"55\\" w:type=\\"dxa\\" />
|
||||||
<w:bottom w:w=\\"0\\" w:type=\\"dxa\\" />
|
<w:bottom w:w=\\"0\\" w:type=\\"dxa\\" />
|
||||||
<w:right w:w=\\"55\\" w:type=\\"dxa\\" />
|
<w:right w:w=\\"55\\" w:type=\\"dxa\\" />
|
||||||
</w:tblCellMar><w:tblInd w:w=\\"0\\" w:type=\\"dxa\\" /><w:tblLayout w:type=\\"fixed\\" /></w:tblPr><w:tblGrid /><w:tr><w:trPr /><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders></w:tcPr><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello!!</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
</w:tblCellMar><w:tblInd w:w=\\"0\\" w:type=\\"dxa\\" /><w:tblLayout w:type=\\"fixed\\" /></w:tblPr><w:tblGrid /><w:tr><w:trPr /><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders></w:tcPr><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello!!</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
||||||
</w:document>"
|
</w:document>"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -24030,7 +23982,7 @@ exports[`writer should write text border 1`] = `
|
||||||
exports[`writer should write text border 2`] = `
|
exports[`writer should write text border 2`] = `
|
||||||
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
"<?xml version=\\"1.0\\" encoding=\\"UTF-8\\" standalone=\\"yes\\"?>
|
||||||
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
<w:document xmlns:o=\\"urn:schemas-microsoft-com:office:office\\" xmlns:r=\\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\\" xmlns:v=\\"urn:schemas-microsoft-com:vml\\" xmlns:w=\\"http://schemas.openxmlformats.org/wordprocessingml/2006/main\\" xmlns:w10=\\"urn:schemas-microsoft-com:office:word\\" xmlns:wp=\\"http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing\\" xmlns:wps=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingShape\\" xmlns:wpg=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingGroup\\" xmlns:mc=\\"http://schemas.openxmlformats.org/markup-compatibility/2006\\" xmlns:wp14=\\"http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing\\" xmlns:w14=\\"http://schemas.microsoft.com/office/word/2010/wordml\\" xmlns:w15=\\"http://schemas.microsoft.com/office/word/2012/wordml\\" mc:Ignorable=\\"w14 wp14\\">
|
||||||
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello </w:t></w:r><w:r><w:rPr><w:rFonts /><w:bdr w:val=\\"single\\" w:sz=\\"4\\" w:space=\\"0\\" w:color=\\"auto\\" /></w:rPr><w:t xml:space=\\"preserve\\">World!</w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
<w:body><w:p w14:paraId=\\"00000001\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello </w:t></w:r><w:r><w:rPr><w:rFonts /><w:bdr w:val=\\"single\\" w:sz=\\"4\\" w:space=\\"0\\" w:color=\\"auto\\" /></w:rPr><w:t xml:space=\\"preserve\\">World!</w:t></w:r></w:p><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
||||||
</w:document>"
|
</w:document>"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -24060,7 +24012,7 @@ exports[`writer should write tl2br and tr2bl cells 2`] = `
|
||||||
<w:left w:w=\\"55\\" w:type=\\"dxa\\" />
|
<w:left w:w=\\"55\\" w:type=\\"dxa\\" />
|
||||||
<w:bottom w:w=\\"0\\" w:type=\\"dxa\\" />
|
<w:bottom w:w=\\"0\\" w:type=\\"dxa\\" />
|
||||||
<w:right w:w=\\"55\\" w:type=\\"dxa\\" />
|
<w:right w:w=\\"55\\" w:type=\\"dxa\\" />
|
||||||
</w:tblCellMar><w:tblInd w:w=\\"0\\" w:type=\\"dxa\\" /></w:tblPr><w:tblGrid /><w:tr><w:trPr /><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:tl2br w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders></w:tcPr><w:p w14:paraId=\\"00000002\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello!!</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:tr2bl w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders></w:tcPr><w:p w14:paraId=\\"00000003\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello!!</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:tl2br w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:tr2bl w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders></w:tcPr><w:p w14:paraId=\\"00000004\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello!!</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:headerReference w:type=\\"default\\" r:id=\\"rId4\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
</w:tblCellMar><w:tblInd w:w=\\"0\\" w:type=\\"dxa\\" /></w:tblPr><w:tblGrid /><w:tr><w:trPr /><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:tl2br w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders></w:tcPr><w:p w14:paraId=\\"00000002\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello!!</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:tr2bl w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders></w:tcPr><w:p w14:paraId=\\"00000003\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello!!</w:t></w:r></w:p></w:tc><w:tc><w:tcPr><w:tcBorders><w:top w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:left w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:bottom w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:right w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideH w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:insideV w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:tl2br w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /><w:tr2bl w:val=\\"single\\" w:sz=\\"2\\" w:space=\\"0\\" w:color=\\"000000\\" /></w:tcBorders></w:tcPr><w:p w14:paraId=\\"00000004\\"><w:pPr><w:rPr /></w:pPr><w:r><w:rPr><w:rFonts /></w:rPr><w:t xml:space=\\"preserve\\">Hello!!</w:t></w:r></w:p></w:tc></w:tr></w:tbl><w:sectPr><w:pgSz w:w=\\"11906\\" w:h=\\"16838\\" /><w:pgMar w:top=\\"1985\\" w:right=\\"1701\\" w:bottom=\\"1701\\" w:left=\\"1701\\" w:header=\\"851\\" w:footer=\\"992\\" w:gutter=\\"0\\" /><w:cols w:space=\\"425\\" /><w:docGrid w:type=\\"lines\\" w:linePitch=\\"360\\" /></w:sectPr></w:body>
|
||||||
</w:document>"
|
</w:document>"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue