Ghost/content/plugins/fancyFirstChar.js
Hannah Wolfe 6b3f835cfb Rename content fields - closes #253
- rename "content" to "content_raw"
- rename "content_raw" to "content"
- change all references
2013-07-11 16:27:19 +01:00

41 lines
1.1 KiB
JavaScript

var _ = require('underscore');
var fancyFirstChar;
function fancify(originalContent) {
var newContent,
firstCharIndex = 0;
if (originalContent.substr(0, 1) === '<') {
firstCharIndex = originalContent.indexOf('>') + 1;
}
newContent = originalContent.substr(0, firstCharIndex);
newContent += '<span class="fancyChar">';
newContent += originalContent.substr(firstCharIndex, 1);
newContent += '</span>';
newContent += originalContent.substr(firstCharIndex + 1, originalContent.length - firstCharIndex - 1);
return newContent;
}
fancyFirstChar = {
init: function (ghost) {
ghost.registerFilter('prePostsRender', function (posts) {
if (_.isArray(posts)) {
_.each(posts, function (post) {
post.content = fancify(post.content);
});
} else if (posts.hasOwnProperty('content')) {
posts.content = fancify(posts.content);
}
return posts;
});
},
activate: function () {},
deactivate: function () {}
};
module.exports = fancyFirstChar;