Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 1x 1x 5x 5x 3x 3x 5x 1x | import { formatParagraphWithContentModel } from '../utils/formatParagraphWithContentModel';
import type { IEditor } from 'roosterjs-content-model-types';
/**
* Sets current selected block(s) line-height property and wipes such property from child segments
* @param editor The editor to operate on
* @param spacing Unitless/px value to set line height
*/
export function setSpacing(editor: IEditor, spacing: number | string) {
editor.focus();
formatParagraphWithContentModel(editor, 'setSpacing', paragraph => {
paragraph.format.lineHeight = spacing.toString();
paragraph.segments.forEach(segment => {
if (segment.format.lineHeight) {
delete segment.format.lineHeight;
}
});
});
}
|