mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
htmlify hashtags
This commit is contained in:
parent
ccb34a7691
commit
d836a7eb72
1 changed files with 10 additions and 1 deletions
|
@ -50,6 +50,14 @@ const htmlifyLinks = (input: string): string => {
|
|||
});
|
||||
}
|
||||
|
||||
const htmlifyHashtags = (input: string): string => {
|
||||
const hashtagPattern = /#([a-zA-Z_]\w*)/g;
|
||||
return input.replace(hashtagPattern, (match, hashtag) => {
|
||||
const encodedHashtag = encodeURIComponent(hashtag);
|
||||
return `<a href="https://twitter.com/hashtag/${encodedHashtag}?src=hashtag_click">${match}</a>`;
|
||||
});
|
||||
}
|
||||
|
||||
export const renderInstantView = (properties: RenderProperties): ResponseInstructions => {
|
||||
console.log('Generating Instant View (placeholder)...');
|
||||
const { tweet } = properties;
|
||||
|
@ -64,8 +72,9 @@ export const renderInstantView = (properties: RenderProperties): ResponseInstruc
|
|||
];
|
||||
|
||||
let text = sanitizeText(tweet.text).replace(/\n/g, '<br>');
|
||||
text = populateUserLinks(tweet, text);
|
||||
text = htmlifyLinks(text);
|
||||
text = htmlifyHashtags(text);
|
||||
text = populateUserLinks(tweet, text);
|
||||
|
||||
instructions.text = `
|
||||
<section class="section-backgroundImage">
|
||||
|
|
Loading…
Add table
Reference in a new issue