This post reviews several methods for converting a Markdown (.md) formatted file to PDF, from UNIX or Linux machines.
$ pandoc How_I_got_svg-resizer_working_on_Mac_OSX.md -s -o test1.pdf
| /** | |
| * Similar to Object.getOwnPropertyNames(obj) but including the properties of the entire prototype chain | |
| * @param obj | |
| * @param maxChainLength | |
| */ | |
| export function getAllPropertyNames( | |
| obj: { new(): any }, | |
| maxChainLength: number = 10 | |
| ): string[] { | |
| let set: Set<string> = new Set(), i: number = 0; |