blob: 4cb81c90ff6e97373c828ce9ef31661bf5a4ad7b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
function makeTweetUrl(article) {
const title = article.attributes.title;
const route = article.attributes.route;
const baseUrl = "https://twitter.com/intent/tweet";
const text = "“" + title + "” by @xFuwn – https://blog.fuwn.me" + route;
return baseUrl + "?text=" + encodeURIComponent(text);
}
module.exports = makeTweetUrl;
|