Public/Get-StineJensen.ps1

function Get-StineJensen
{
    Invoke-WebRequest -Uri https://www.nrc.nl/rubriek/stine-jensen/ `
    | Select-Object -ExpandProperty Content `
    | pup '.compact-grid__item a attr{href}' --plain `
    | ForEach-Object {
        $Url = "https://www.nrc.nl$($_)"
        $DateText = (($Url -split '/')[4..6]) -join '-'
        $Content = Invoke-WebRequest -Uri $Url | Select-Object -ExpandProperty Content
        $Title = ($Content | pup 'h1[data-flowtype="headline"] text{}' --plain) | ForEach-Object { $_.Trim() }

        [PSCustomObject]@{
            PSTypeName = 'UncommonSense.Nrc.Article'
            Url        = $Url
            Date       = [DateTime]::ParseExact($DateText, 'yyyy-MM-dd', $null)
            Title      = $Title -join ' '
            Body       = ($Content | pup 'div.content p text{}' --plain) -join ' '
        }
    }
}