Files
swagger-ui/src/main/coffeescript/helpers/handlebars.coffee
2015-02-01 02:27:43 -08:00

5 lines
259 B
CoffeeScript

Handlebars.registerHelper('sanitize', (html) ->
# Strip the script tags from the html, and return it as a Handlebars.SafeString
html = html.replace(/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi, '')
return new Handlebars.SafeString(html)
)