Skip to content

Instantly share code, notes, and snippets.

@mozhu1024
Created April 4, 2019 03:31
Show Gist options
  • Save mozhu1024/af2fca0d48043f6180313912266df37a to your computer and use it in GitHub Desktop.
Save mozhu1024/af2fca0d48043f6180313912266df37a to your computer and use it in GitHub Desktop.
function markdown(md){
$.ajax({
type: "POST",
url: "https://api.github.com/markdown",
contentType: "application/json",
data: JSON.stringify({
"text": md,
"mode": "gfm",
"context": "github/gollum"
}),
success: function(jsonResult) {
console.log(jsonResult);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment