Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
MarkX
0.1.3
Types/MarkX/get_Liquid.ps1
<#
.SYNOPSIS
Get Liquid
.DESCRIPTION
Get Liquid within the Markdown
#>
if
(
$this
.
LiquidPattern
-is
[regex]
)
{
return
$this
.
LiquidPattern
.
Matches
(
"$($this.Markdown)"
)
}