@@ -26,7 +26,7 @@ import type {
} from '@/types/slides'
const convertFontSizePtToPx = (html: string, ratio: number) => {
- return html;
+ //return html;
return html.replace(/font-size:\s*([\d.]+)pt/g, (match, p1) => {
return `font-size: ${(parseFloat(p1) * ratio).toFixed(1)}px`
})