Update Get-HtmlTable.ps1

This commit is contained in:
Doug Finke
2019-02-20 19:26:43 -05:00
committed by GitHub
parent d94db666d7
commit a4a989c556

View File

@@ -1,3 +1,5 @@
# https://www.leeholmes.com/blog/2015/01/05/extracting-tables-from-powershells-invoke-webrequest/
# tweaked from the above code
function Get-HtmlTable { function Get-HtmlTable {
param( param(
[Parameter(Mandatory=$true)] [Parameter(Mandatory=$true)]
@@ -39,4 +41,4 @@ function Get-HtmlTable {
[PSCustomObject]$result [PSCustomObject]$result
} }
} }