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.
 
 
 
 
 

25 lines
899 B

/*
* https://github.com/morethanwords/tweb
* Copyright (C) 2019-2021 Eduard Kuzmenko
* https://github.com/morethanwords/tweb/blob/master/LICENSE
*/
import limitSymbols from '../../helpers/string/limitSymbols';
import {WebPage} from '../../layer';
import wrapRichText from '../../lib/richTextProcessor/wrapRichText';
export default function wrapWebPageDescription(webPage: WebPage.webPage) {
const shortDescriptionText = limitSymbols(webPage.description || '', 150, 180);
// const siteName = webPage.site_name;
// let contextHashtag = '';
// if(siteName === 'GitHub') {
// const matches = apiWebPage.url.match(/(https?:\/\/github\.com\/[^\/]+\/[^\/]+)/);
// if(matches) {
// contextHashtag = matches[0] + '/issues/{1}';
// }
// }
return wrapRichText(shortDescriptionText/* , {
contextSite: siteName || 'external',
contextHashtag: contextHashtag
} */);
}