-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathConvertTo-PDF.ps1
36 lines (33 loc) · 1 KB
/
ConvertTo-PDF.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<#
.SYNOPSIS
Converts markdown documents to PDF documents.
.DESCRIPTION
Uses pandoc to convert .md files into .pdf file.
#>
[CmdletBinding()]
[Alias()]
[OutputType([String])]
Param ()
'Converting markdown documents to pdf...'
$pdfPath = $PSScriptRoot + '\pdf'
if (Test-Path -Path $pdfPath) {
Remove-Item -Path $pdfPath -Recurse -Force
}
New-Item -Path $pdfPath -ItemType Directory -Force | Out-Null
$markdownFiles = Get-ChildItem -Path '.' -Filter '*.md' -Recurse
foreach ($file in $markdownFiles) {
if ($file.FullName -match 'private' -or
$file.FullName -match 'Temp') {
continue
}
$outPath = $file.FullName.Replace($PSScriptRoot, '')
$outFile = $pdfPath + $outPath
$fileParent = Split-Path -Path $outFile -Parent
if (!(Test-Path -Path $fileParent)) {
New-Item -Path $fileParent -ItemType Directory | Out-Null
}
$outFile = $outFile.Replace('.md', '.pdf')
"Converting: $($file.FullName)"
& pandoc -f gfm -o $outFile -V geometry:margin=2cm $file.FullName
}
'Conversion completed.'