[PE-45] feat: page export as PDF & Markdown (#5705)

* feat: export page as pdf and markdown

* chore: add image conversion logic
This commit is contained in:
Aaryan Khandelwal 2024-10-08 16:54:02 +05:30 committed by GitHub
parent 20c9e232e7
commit b27249486a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
33 changed files with 1271 additions and 189 deletions

View file

@ -44,7 +44,7 @@
}
&.sans-serif {
--font-style: sans-serif;
--font-style: "Inter", sans-serif;
}
&.serif {

View file

@ -4,6 +4,9 @@ export enum EModalPosition {
}
export enum EModalWidth {
SM = "sm:max-w-sm",
MD = "sm:max-w-md",
LG = "sm:max-w-lg",
XL = "sm:max-w-xl",
XXL = "sm:max-w-2xl",
XXXL = "sm:max-w-3xl",