Telegram Web K with changes to work inside I2P https://web.telegram.i2p/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
596 B

/*
* https://github.com/morethanwords/tweb
* Copyright (C) 2019-2021 Eduard Kuzmenko
* https://github.com/morethanwords/tweb/blob/master/LICENSE
*/
2 years ago
import limitSymbols from "../../helpers/string/limitSymbols";
import { WebPage } from "../../layer";
import wrapRichText from "../../lib/richTextProcessor/wrapRichText";
export default function wrapWebPageTitle(webPage: WebPage.webPage) {
let shortTitle = webPage.title || webPage.author || webPage.site_name || '';
shortTitle = limitSymbols(shortTitle, 80, 100);
return wrapRichText(shortTitle, {noLinks: true, noLinebreaks: true});
}