c902d91c81
- This fits more closely, as this service is to so with rendering helpers and small parts - Whereas we want to use "rendering" for things concerned with rendering pages
21 lines
620 B
JavaScript
21 lines
620 B
JavaScript
// # Twitter URL Helper
|
|
// Usage: `{{twitter_url}}` or `{{twitter_url author.twitter}}`
|
|
//
|
|
// Output a url for a twitter username
|
|
const {socialUrls} = require('../services/proxy');
|
|
const {localUtils} = require('../services/handlebars');
|
|
|
|
// We use the name twitter_url to match the helper for consistency:
|
|
module.exports = function twitter_url(username, options) { // eslint-disable-line camelcase
|
|
if (!options) {
|
|
options = username;
|
|
username = localUtils.findKey('twitter', this, options.data.site);
|
|
}
|
|
|
|
if (username) {
|
|
return socialUrls.twitter(username);
|
|
}
|
|
|
|
return null;
|
|
};
|