How do I dropdown?
This is how you dropdown.
<details> <summary>How do I dropdown?</summary> <br> This is how you dropdown.
<details> <summary>How do I dropdown?</summary> <br> This is how you dropdown.
| Function ConvertTo-Markdown { | |
| <# | |
| .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 | |
| .Example | |
| ConvertTo-Markdown -InputObject (Get-Service) |
| <# | |
| Prerequisites: PowerShell version 3 or above. | |
| License: MIT | |
| Author: Michael Klement <[email protected]> | |
| #> | |
| function Out-FileUtf8NoBom { | |
| <# | |
| .SYNOPSIS | |
| Outputs to a UTF-8-encoded file *without a BOM* (byte-order mark). |
| # Personal OpenVPN Server Deployment | |
| # Updates applied by Derek Ardolf / @ScriptAutomate / https://icanteven.io | |
| # 11/08/2019 - Version 2.x: | |
| # - Released with many updates, and tracked here: https://github.com/ScriptAutomate/openvpn-cfn | |
| # | |
| # Created by John Creecy / @zugdug | |
| # 10/30/2017 - Version 1.0: | |
| # - Original: https://gist.github.com/zugdud/b39eea02faa6926305f57fbde8d31b68 | |
| # Original Linux Academy blog series walkthrough on building the old OpenVPN template: | |
| # - Part 1: https://linuxacademy.com/blog/tutorials/roll-vpn-aws-cloudformation-part-one/ |