file2html-ooxml
Version:
OOXML engine for file2html
12 lines (11 loc) • 345 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var pt_to_px_1 = require("../../pt-to-px");
function textSizeStyle(style, attributes) {
var size = attributes['w:val'];
if (size) {
style += 'font-size:' + pt_to_px_1.default(size, 2) + 'px;';
}
return style;
}
exports.default = textSizeStyle;
;