PHP Classes

File: vendors/gentelella/vendors/mjolnic-bootstrap-colorpicker/docs/helpers/code/index.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/gentelella/vendors/mjolnic-bootstrap-colorpicker/docs/helpers/code/index.js   Download  
File: vendors/gentelella/vendors/mjolnic-bootstrap-colorpicker/docs/helpers/code/index.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Gentelella BladeOne
Render templates using Bootstrap for presentation
Author: By
Last change:
Date: 3 years ago
Size: 590 bytes
 

Contents

Class file image Download
var beautify = require('js-beautify').html; var entityMap = { "&": "&amp;", "<": "&lt;", ">": "&gt;", '"': '&quot;', "'": '&#39;', "/": '&#x2F;' }; module.exports.register = function (Handlebars, options) { Handlebars.registerHelper('code', function (hboptions) { var codeStr = beautify(String(hboptions.fn(this)).trim(), { "wrap_line_length": 80, "wrap_attributes": "auto", "indent_scripts": "normal" }).replace(/[&<>"'\/]/g, function (s) { return entityMap[s]; }); return '<div class="example-code">' + codeStr + '</div>'; }); };