Change table cell margin type attribute form w:sz to w:type as per http://officeopenxml.com/WPtableCellMargins.php

Fixes #303
This commit is contained in:
Bruce Duncan
2019-04-08 13:50:40 -04:00
parent 193d0c4239
commit a2a01edc24
4 changed files with 15 additions and 15 deletions

View File

@ -14,7 +14,7 @@ const DEFAULT_TABLE_PROPERTIES = {
"w:bottom": [
{
_attr: {
"w:sz": "auto",
"w:type": "auto",
"w:w": 0,
},
},
@ -24,7 +24,7 @@ const DEFAULT_TABLE_PROPERTIES = {
"w:top": [
{
_attr: {
"w:sz": "auto",
"w:type": "auto",
"w:w": 0,
},
},
@ -34,7 +34,7 @@ const DEFAULT_TABLE_PROPERTIES = {
"w:left": [
{
_attr: {
"w:sz": "auto",
"w:type": "auto",
"w:w": 0,
},
},
@ -44,7 +44,7 @@ const DEFAULT_TABLE_PROPERTIES = {
"w:right": [
{
_attr: {
"w:sz": "auto",
"w:type": "auto",
"w:w": 0,
},
},
@ -81,10 +81,10 @@ const WIDTHS = {
// "w:tblPr": [
// {
// "w:tblCellMar": [
// { "w:bottom": [{ _attr: { "w:sz": "auto", "w:w": 0 } }] },
// { "w:top": [{ _attr: { "w:sz": "auto", "w:w": 0 } }] },
// { "w:left": [{ _attr: { "w:sz": "auto", "w:w": 0 } }] },
// { "w:right": [{ _attr: { "w:sz": "auto", "w:w": 0 } }] },
// { "w:bottom": [{ _attr: { "w:type": "auto", "w:w": 0 } }] },
// { "w:top": [{ _attr: { "w:type": "auto", "w:w": 0 } }] },
// { "w:left": [{ _attr: { "w:type": "auto", "w:w": 0 } }] },
// { "w:right": [{ _attr: { "w:type": "auto", "w:w": 0 } }] },
// ],
// },
// {