Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
MarkX
0.1.3
Types/MarkX/get_Table.ps1
<#
.SYNOPSIS
Gets any tables
.DESCRIPTION
Gets any tables present in the markdown
#>
$this
.
XML
|
Select-Xml
-XPath
'//table'
|
Select-Object
-ExpandProperty
Node