Following the documentation I added the following rules to my config to get German quotes using Smartypants:
return [
'smartypants' => [
'doublequote.open' => '„',
'doublequote.close' => '“',
'singlequote.open' => '‚',
'singlequote.close' => '‘'
]
];
And while using $page->title()->smartypants()
applies transformations, it still uses the default English quotes.
Is there anyting I might have missed?
Iβm using Kirby 3.4.