We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Marp CLI v1.7.0
Windows
Try to convert Markdown into the drive root such as C:\slide.html.
C:\slide.html
The converted HTML will be generated to C:\slide.html.
Failed converting Markdown. (EPERM: operation not permitted, mkdir 'c:\')
Reported by marp-team/marp#291.
It's a known pitfall that brings when trying fs.mkdirSync('c:\', { recursive: true }) into the drive root. microsoft/vscode#379
fs.mkdirSync('c:\', { recursive: true })
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Version of Marp Tool
Marp CLI v1.7.0
Operating System
Windows
Environment
How to reproduce
Try to convert Markdown into the drive root such as
C:\slide.html
.Expected behavior
The converted HTML will be generated to
C:\slide.html
.Actual behavior
Additional information
Reported by marp-team/marp#291.
It's a known pitfall that brings when trying
fs.mkdirSync('c:\', { recursive: true })
into the drive root. microsoft/vscode#379The text was updated successfully, but these errors were encountered: