This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
font-family: Segoe WPC, Segoe UI, SFUIText-Light, HelveticaNeue-Light, sans-serif; | |
font-size: .65em; | |
padding-left: 12px; | |
line-height: 1.2em | |
} | |
h1 { | |
font-size: 1.5em; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Not my code, this is from Mike Pfeiffer - http://mikepfeiffer.net/2010/03/how-to-merge-pdf-files-using-powershell-and-pdfsharp/ | |
#Requires PDFSharp assembly libraries http://sourceforge.net/projects/pdfsharp/ | |
#You need to load the assembly before you can use the function | |
# | |
#Merge-PDF -path c:\pdf_docs -filename c:\saved_docs.pdf | |
Add-Type -Path C:\assemblies\PdfSharp.dll | |
Function Merge-PDF { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.Synopsis | |
Converts a PowerShell object to a Markdown table. | |
.Description | |
Converts a PowerShell object to a Markdown table. | |
.Parameter InputObject | |
PowerShell object to be converted |