mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-18 16:01:40 +03:00
bcf5a1bc34
refs #9178 * Add eslint deps, remove old lint deps * Add eslint config, remove old lint configs * Config for server and tests are different * Tweaked rules to suit us * Fix linting in codebase - lots of indent changes. * Fix a real broken test
22 lines
607 B
JavaScript
22 lines
607 B
JavaScript
// # Twitter URL Helper
|
|
// Usage: `{{twitter_url}}` or `{{twitter_url author.twitter}}`
|
|
//
|
|
// Output a url for a twitter username
|
|
var proxy = require('./proxy'),
|
|
socialUrls = proxy.socialUrls,
|
|
findKey = proxy.utils.findKey;
|
|
|
|
// 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 = findKey('twitter', this, options.data.blog);
|
|
}
|
|
|
|
if (username) {
|
|
return socialUrls.twitterUrl(username);
|
|
}
|
|
|
|
return null;
|
|
};
|