Note This repository is automatically generated from the main parser monorepo. Please submit any issues or pull requests there.
Plugin for reoff
that is able to change the styles of paragraphs based on the markup of the underlying text
A plugin for reoff
for finding paragraphs that have a certain markup in a docx
document and changing their style to a different style.
If you want to change the style of paragraphs based on the markup of the underlying text.
If you want to change the style of paragraphs based on the markup of the underlying text, but are handling the [ooxast][ooxast]
syntax tree yourself, use ooxast-util-markup-to-style
This package is ESM only. In Node.js (version 12.20+, 14.14+, 16.0+, 18.0+), install as
pnpm add reoff-markup-to-style
# or with yarn
# yarn add reoff-markup-to-style
# or with npm
# npm install reoff-markup-to-style
reoff
plugin for inferring paragraph styles from the markup of the underlying text.
By default, this plugin will infer the following styles:
w:b
->Heading 1
w:i
->Heading 2
This plugin can be configured to infer other styles as well.
const options: Options = [
// find all paragraphs that are bold and larger than 24pt and make it a Title
{
markup: (rPr) => rPr['w:b'] && rPr['w:sz'] && rPr['w:sz']['w:val'] > 24,
style: 'Title',
},
// find all paragraphs that are strikethrough text and make it a Comment
{
markup: 'w:strike',
style: 'Comment',
},
]
default(options: Options = ...): ReturnType<Plugin<[Options?] | void[], Root, Root>>;
Name | Type | Description |
---|---|---|
options |
Options |
Plugin options. |
ReturnType
<Plugin
<[Options?
] | void
[], Root
, Root
>>
A reoff plugin.
Defined in: reoff/reoff-markup-to-style/src/lib/reoff-markup-to-style.ts:35
Option
[]
const options: Options = [
// find all paragraphs that are bold and larger than 24pt and make it a Title
{
markup: (rPr) => rPr['w:b'] && rPr['w:sz'] && rPr['w:sz']['w:val'] > 24,
style: 'Title',
},
// find all paragraphs that are strikethrough text and make it a Comment
{
markup: 'w:strike',
style: 'Comment',
},
]
Defined in: ooxast/ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts:80
Uses the [ooxast][ooxast]
syntax tree.
GPL-3.0-or-later © Thomas F. K. Jorna