This is a test of the Markdown Styler plugin.
Testing Ordered Lists, Unordered Lists, and Checklists.
- First item
- Second item
- Sub-Item
- Sub-Item
- Third item
- Beans
- Spiky Bois
- Porcupines
- Hedgehogs
- Charcoal
| Column 1 | Column 2 | Column 3 |
|---|---|---|
| Beans | Hardware | Ducks |
| Cheese | Software | Geese |
| Column 1 | Column 2 | Column 3 |
|---|---|---|
| Beans | Hardware | Ducks |
| Cheese | Software | Geese |
Here is a sample of in-line code.
Below are samples of fenced code blocks using Standard & Extended Markdown Syntax .
This is a simple fenced code block.
The HTML version would be the <pre>...</pre> element.
This is a simple HTML code block. Let's see how it renders.
cd "~"
function test() {
if [[ -e "~/.bashrc" ]]; then
echo "The ~/.bashrc file exists."
else
echo "The ~/.bashrc file does not exist."
fi
}function test_function() {
console.log("This is a test.")
}function New-AdvFunction {
[CmdletBinding]
param(
[Parameter(Mandatory=$True,
Position=0,
HelpMessage=$Null,
ParameterSetName="Defaults",
ValueFromPipeline=$True,
ValueFromPipelineByPropertyName=$True)] <# Allows you to call on a value using the property name #>
[ValidateNotNullOrEmpty()]
[SupportsWildcards]
[Alias("S","String")]
[string]$StringParam,
[Parameter(Mandatory=$False,
HelpMessage=$Null,
ParameterSetName="Defaults",
ValueFromPipeline=$True,
ValueFromPipelineByPropertyName=$True)]
[SupportsWildcards]
[Alias("A","Array")]
[string[]]$ArrayParam,
[Parameter(Mandatory=$False,
HelpMessage=$Null,
ParameterSetName="Defaults",
ValueFromPipeline=$False,
ValueFromPipelineByPropertyName=$False)]
[Alias("B","Bool")]
[switch]$SwitchParam
)
#★ Begin Process Block
begin {
#
}
#★ Main Process Block
process {
#
}
#★ End Process Block
end {
#
}
<#
.SYNOPSIS
One-Sentence Summary.
.DESCRIPTION
Short pararagraph summary.
.PARAMETER Name
Name Description
.PARAMETER Date
Date Description
.NOTES
Extra Details.
.EXAMPLE
New-Function -Name 'Cement'
.EXAMPLE
New-Function -Name 'Bacon' -Date 'Today'
.ROLE
[ name of the 'user role' for the help topic ]
(optional)
.FUNCTIONALITY
[ keyword(s) describing the intended function ]
(optional)
.FORWARDHELPCATEGORY
Function
.FORWARDHELPTARGETNAME
Command-Name (optional)
.LINK
https://github.com/NewSpectrum/PowerShell-PowerUps/wiki
.LINK
Related-Function
.LINK
Related-Cmdlet
.LINK
about_Related_Content
#>
}