aboutsummaryrefslogtreecommitdiff
path: root/plugins/tweet.js
blob: 76b454bb4605855047df96ac4a099ee45f881529 (plain) (blame)
1
2
3
4
5
6
module.exports = function (title, route) {
    const baseUrl = "https://twitter.com/intent/tweet";
    const text = "“" + title + "” by @jdan – http://thatjdanisso.cool" + route;

    return baseUrl + "?text=" + encodeURIComponent(text);
};