27 lines
671 B
JavaScript
27 lines
671 B
JavaScript
|
// # Twitter URL Helper
|
||
|
// Usage: `{{twitter_url}}` or `{{twitter_url author.twitter}}`
|
||
|
//
|
||
|
// Output a url for a twitter username
|
||
|
//
|
||
|
// We use the name twitter_url to match the helper for consistency:
|
||
|
// jscs:disable requireCamelCaseOrUpperCaseIdentifiers
|
||
|
|
||
|
var socialUrls = require('../utils/social-urls'),
|
||
|
findKey = require('./utils').findKey,
|
||
|
twitter_url;
|
||
|
|
||
|
twitter_url = function twitter_url(username, options) {
|
||
|
if (!options) {
|
||
|
options = username;
|
||
|
username = findKey('twitter', this, options.data.blog);
|
||
|
}
|
||
|
|
||
|
if (username) {
|
||
|
return socialUrls.twitterUrl(username);
|
||
|
}
|
||
|
|
||
|
return null;
|
||
|
};
|
||
|
|
||
|
module.exports = twitter_url;
|