MCPcopy Create free account
hub / github.com/TruthHun/BookStack / Paragraph

Function Paragraph

static/word2md/mammoth.browser.js:599–616  ·  view source on GitHub ↗
(children, properties)

Source from the content-addressed store, hash-verified

597}
598
599function Paragraph(children, properties) {
600 properties = properties || {};
601 var indent = properties.indent || {};
602 return {
603 type: types.paragraph,
604 children: children,
605 styleId: properties.styleId || null,
606 styleName: properties.styleName || null,
607 numbering: properties.numbering || null,
608 alignment: properties.alignment || null,
609 indent: {
610 start: indent.start || null,
611 end: indent.end || null,
612 firstLine: indent.firstLine || null,
613 hanging: indent.hanging || null
614 }
615 };
616}
617
618function Run(children, properties) {
619 properties = properties || {};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected