Recreate "Export Slide Deck" command in CLI #567
-
Is there a way to recreate the "Export Slide Deck" command in VSCode directly in the marp CLI? I can't seem to figure out the exact flags needed for this. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
You can peek internally running CLI flags while exporting in the developer console of VS Code ( |
Beta Was this translation helpful? Give feedback.
-
A simple configuration looks like this: {
"allowLocalFiles": true,
"pdfNotes": false,
"pdfOutlines": false,
"html": true,
"browser": "auto",
"options": {
"markdown": {
"breaks": true,
"typographer": false
},
"math": "mathjax"
},
"pptxEditable": false,
"themeSet": ["<absolute path>"],
"vscode": {
"themeFiles": [
{
"path": "<absolute path>"
}
]
}
} |
Beta Was this translation helpful? Give feedback.
A simple configuration looks like this: