d989d62c10
refs #9589 * updated encode helper to use newer code standards * updated facebook_url helper to use newer code standards * updated foreach helper to use newer code standards
20 lines
575 B
JavaScript
20 lines
575 B
JavaScript
// # Facebook URL Helper
|
|
// Usage: `{{facebook_url}}` or `{{facebook_url author.facebook}}`
|
|
//
|
|
// Output a url for a facebook username
|
|
const {socialUrls, localUtils} = require('./proxy');
|
|
|
|
// We use the name facebook_url to match the helper for consistency:
|
|
module.exports = function facebook_url(username, options) { // eslint-disable-line camelcase
|
|
if (!options) {
|
|
options = username;
|
|
username = localUtils.findKey('facebook', this, options.data.blog);
|
|
}
|
|
|
|
if (username) {
|
|
return socialUrls.facebook(username);
|
|
}
|
|
|
|
return null;
|
|
};
|