rittenhop-dev/versions/5.94.2/core/frontend/helpers/raw.js
2024-09-23 19:40:12 -04:00

9 lines
183 B
JavaScript

// # Raw helper
// Usage: `{{{{raw}}}}...{{{{/raw}}}}`
//
// Returns raw contents unprocessed by handlebars.
module.exports = function raw(options) {
return options.fn(this);
};