Skip to content

Instantly share code, notes, and snippets.

@peterfriese
Created October 6, 2011 15:55
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 peterfriese/1267775 to your computer and use it in GitHub Desktop.
Save peterfriese/1267775 to your computer and use it in GitHub Desktop.
The Eysholdt Filter
var eysholdtFilter = new SimpleFilter(function(data) {
session = data;
session.abstract = session.abstract.replace(/<\/br>\n<\/br>\n/g, "\n");
session.abstract = session.abstract.replace(/<\/b>/g, "</b>");
session.abstract = session.abstract.replace(/<br>\n/g, "\n");
session.abstract = session.abstract.replace(/<\/br>\n/g, "\n");
return session;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment