mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 04:10:33 +03:00
35e3e0708c
- The proxy is not a helper, we want the helpers folder to only include helpers - The proxy is also meant to be the interface to Ghost for the helpers, and we want to enforce that - This is a small step on the way
11 lines
310 B
JavaScript
11 lines
310 B
JavaScript
// # Title Helper
|
|
// Usage: `{{title}}`
|
|
//
|
|
// Overrides the standard behaviour of `{[title}}` to ensure the content is correctly escaped
|
|
|
|
const {SafeString, escapeExpression} = require('../services/proxy');
|
|
|
|
module.exports = function title() {
|
|
return new SafeString(escapeExpression(this.title || ''));
|
|
};
|