Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
leojonathanoh committed Jul 11, 2023
1 parent b2a5865 commit 06ac496
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ConvertOneNote2MarkDown-v2.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -1167,7 +1167,11 @@ Function Convert-OneNotePage {
'-t'
$pageCfg['conversion']
'-i'
$pageCfg['docxExportFilePath']
if ($pageCfg['docxExportFilePath'] -match ' ') {
"`"$( $pageCfg['docxExportFilePath'] )`""
}else {
$pageCfg['docxExportFilePath']
}
'-o'
if ($pageCfg['filePathNormal'] -match ' ') {
"`"$( $pageCfg['filePathNormal'] )`""
Expand Down

0 comments on commit 06ac496

Please sign in to comment.