Skip to content

Instantly share code, notes, and snippets.

@timjb
Forked from michael/gist:1239217
Created September 24, 2011 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timjb/1239228 to your computer and use it in GitHub Desktop.
Save timjb/1239228 to your computer and use it in GitHub Desktop.
sanitizeConfig.json
{
"a":{
href: function(href) {
// accepts only absolute http, https and ftp URLs and email-addresses
return /^(mailto:|(https?|ftp):\/\/)/.test(href);
}
},
"strong": {},
"em": {},
"b": {},
"i": {},
"code": {},
"p": {},
"ul": {},
"li": {},
"ol": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment