Public/Get-BasVanDerSchot.ps1
<# .SYNOPSIS Retrieves recent cartoons by Bas van der Schot #> function Get-BasVanDerSchot { [CmdletBinding()] param() Get-VolkskrantCartoon -Uri 'https://www.volkskrant.nl/cartoons/bas-van-der-schot~b5dfd743/' -Title 'Bas van der Schot' } |