mirror of
https://github.com/marktext/marktext.git
synced 2025-05-02 17:31:26 +08:00
62 lines
943 B
JavaScript
62 lines
943 B
JavaScript
export const pageSizeList = [
|
|
{
|
|
label: 'A3 (297mm x 420mm)',
|
|
value: 'A3'
|
|
}, {
|
|
label: 'A4 (210mm x 297mm)',
|
|
value: 'A4'
|
|
}, {
|
|
label: 'A5 (148mm x 210mm)',
|
|
value: 'A5'
|
|
}, {
|
|
label: 'US Legal (8.5" x 13")',
|
|
value: 'Legal'
|
|
}, {
|
|
label: 'US Letter (8.5" x 11")',
|
|
value: 'Letter'
|
|
}, {
|
|
label: 'Tabloid (17" x 11")',
|
|
value: 'Tabloid'
|
|
}, {
|
|
label: 'Custom',
|
|
value: 'custom'
|
|
}
|
|
]
|
|
|
|
export const headerFooterTypes = [
|
|
{
|
|
label: 'None',
|
|
value: 0
|
|
}, {
|
|
label: 'Single cell',
|
|
value: 1
|
|
}, {
|
|
label: 'Three cells',
|
|
value: 2
|
|
}
|
|
]
|
|
|
|
export const headerFooterStyles = [
|
|
{
|
|
label: 'Default',
|
|
value: 0
|
|
}, {
|
|
label: 'Simple',
|
|
value: 1
|
|
}, {
|
|
label: 'Styled',
|
|
value: 2
|
|
}
|
|
]
|
|
|
|
export const exportThemeList = [{
|
|
label: 'Academic',
|
|
value: 'academic'
|
|
}, {
|
|
label: 'GitHub (Default)',
|
|
value: 'default'
|
|
}, {
|
|
label: 'Liber',
|
|
value: 'liber'
|
|
}]
|