mirror of
https://github.com/yannbertrand/macos-defaults
synced 2024-12-16 22:43:08 +00:00
8 lines
No EOL
233 B
JavaScript
8 lines
No EOL
233 B
JavaScript
const Handlebars = require('handlebars')
|
|
const slugify = require('slugify')
|
|
|
|
Handlebars.registerHelper('metaTag', (string) => {
|
|
return JSON.stringify(string.replace(/"/g, '"'))
|
|
})
|
|
|
|
Handlebars.registerHelper('slugify', slugify) |