What's the unfurl snippet length max?

Kevin

Well-known member
What's the character limit for when the unfurl process grabs the meta description? I noticed today that somebody linked to https://www.dpreview.com/articles/3175058961/hands-on-with-the-ricoh-gr-iii and the 'unfurl' snippet cut off the last word of the meta description.


<meta name="description" content="The Ricoh GR series has long been a favorite of street photographers, and the latest iteration - the GR III - brings a new sensor, redesigned lens, in-body stabilization and on-sensor phase detection. We spent some time with a pre-production model in London and have some initial impressions to share.">

Are we able to bump up the snippet length? 🤔
 
It's done in the bb_code_tag_url_unfurl template, to hard coded values:
HTML:
<div class="contentRow-snippet js-unfurl-desc">{{ snippet($result.description, $simple ? 50 : 300) }}</div>
 
Top Bottom