Skip to content

Instantly share code, notes, and snippets.

Created August 7, 2017 04:08
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 anonymous/47e445b53374f6e91e6273164a80b583 to your computer and use it in GitHub Desktop.
Save anonymous/47e445b53374f6e91e6273164a80b583 to your computer and use it in GitHub Desktop.
// 将点击的评论内容按照 markdown 解析
window.addEventListener('click',function(e){
var target = e.target ;
if( e.altKey && target.matches('.reply_content') )
{
$.post('/preview/markdown', {'md': target.textContent }, function(data){
target.innerHTML = data ;
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment