From f7a43c27a83fa310b259127eefc4980ee3d53761 Mon Sep 17 00:00:00 2001 From: Shashank Agarwal <53386582+Corbe30@users.noreply.github.com> Date: Mon, 18 Nov 2024 08:40:08 +0000 Subject: [PATCH] fixed #622: font family not included in css --- packages/core/src/modules/inline-string.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/core/src/modules/inline-string.ts b/packages/core/src/modules/inline-string.ts index f283665..cb5b807 100644 --- a/packages/core/src/modules/inline-string.ts +++ b/packages/core/src/modules/inline-string.ts @@ -72,6 +72,7 @@ export function convertCssToStyleList(cssText: string, originCell: Cell) { un: originCell.un || 0, // underline bl: originCell.bl || 0, // blod it: originCell.it || 0, // italic + ff: originCell.ff || 0, // font family }; cssTextArray.forEach((s) => { s = s.toLowerCase();