Shorten truncated text to 300 characters (for Open Graph)
This commit is contained in:
parent
277afd71fc
commit
782545b70f
|
@ -62,8 +62,8 @@ sub startup($self) {
|
|||
});
|
||||
|
||||
$self->helper(truncate_text => sub ($c, $input_text) {
|
||||
my $truncated_text = 500 < length($input_text)
|
||||
? substr($input_text, 0, 500) . '…' : $input_text;
|
||||
my $truncated_text = 299 < length($input_text)
|
||||
? substr($input_text, 0, 299) . '…' : $input_text;
|
||||
|
||||
return $truncated_text;
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue