Public/Get-ThomasVanLuyn.ps1
<# .SYNOPSIS Retrieves recent articles by Thomas van Luyn #> function Get-ThomasVanLuyn { Get-VolkskrantArticle -Uri https://www.volkskrant.nl/auteur/thomas-van-luyn -UrlFilter { $_ -like '/nieuws-achtergrond/*' -or $_ -like '/columns-opinie/*' } } |