Skip to content

Instantly share code, notes, and snippets.

@erwan
Last active August 29, 2015 14:06
Show Gist options
  • Save erwan/63183c7f26038f884f45 to your computer and use it in GitHub Desktop.
Save erwan/63183c7f26038f884f45 to your computer and use it in GitHub Desktop.
var doc = response.results[0];
var html = doc.getStructuredText('blog-post.body').asHtml({
linkResolver: function (ctx, doc, isBroken) {
if (isBroken) return '#broken';
return "/testing_url/" + doc.id + "/" + doc.slug + ( ctx.maybeRef ? '?ref=' + ctx.maybeRef : '' );
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment