Initial checklist
Problem
Currently, there are structures to transfer and apply default properties for text runs (RunDefaults)
export interface IDocumentStyle extends IDocStyleBase, IDocumentLayout, IHeaderAndFooterBase {
textStyle?: ITextStyle; // default style for text
}
And some properties in IDocumentLayout for paragraphs options
paragraphLineGapDefault?: number; // paragraphLineGapDefault default line spacing
But there is no equivalent full support. I would like to propose adding structures to handle paragraph defaults (ParagraphDefaults) so that default formatting such as alignment, indentation, spacing, and line height can be applied to paragraphs.
<w:pPrDefault>
<w:pPr>
<w:spacing w:after="160" w:line="259" w:lineRule="auto"/>
</w:pPr>
</w:pPrDefault>
Initial checklist
Problem
Currently, there are structures to transfer and apply default properties for text runs (RunDefaults)
And some properties in IDocumentLayout for paragraphs options
But there is no equivalent full support. I would like to propose adding structures to handle paragraph defaults (ParagraphDefaults) so that default formatting such as alignment, indentation, spacing, and line height can be applied to paragraphs.