@automattic/social-previews
Version:
A suite of components to generate previews for a post for both social and search engines.
12 lines (8 loc) • 326 B
text/typescript
import { firstValid, hardTruncation, shortEnough, stripHtmlTags, Formatter } from '../helpers';
const TITLE_LENGTH = 120;
export const CAPTION_MAX_CHARS = 500;
export const threadsTitle: Formatter = ( text ) =>
firstValid(
shortEnough( TITLE_LENGTH ),
hardTruncation( TITLE_LENGTH )
)( stripHtmlTags( text ) ) || '';