2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00
Ghost/core/server/helpers/meta_description.js
Hannah Wolfe bcf5a1bc34
Switch to Eslint (#9197)
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
2017-11-01 13:44:54 +00:00

13 lines
470 B
JavaScript

// # Meta Description Helper
// Usage: `{{meta_description}}`
//
// Page description used for sharing and SEO
var proxy = require('./proxy'),
getMetaDataDescription = proxy.metaData.getMetaDataDescription;
// We use the name meta_description to match the helper for consistency:
module.exports = function meta_description(options) { // eslint-disable-line camelcase
options = options || {};
return getMetaDataDescription(this, options.data.root) || '';
};