Mercurial > zeropaste
view app/assets/javascripts/zp.formatter.js.coffee @ 366:26545fe719ca
Remove caching system.
Too much complexity for something that is really simple.
author | edogawaconan <me@myconan.net> |
---|---|
date | Sat, 14 Feb 2015 01:35:45 +0900 |
parents | 55287d8a5a04 |
children |
line wrap: on
line source
#= require config/marked #= require config/prettify window.zp.formatter = raw: -> $("#pl pre").text() links: -> $("#paste-mode a") current: -> $("#paste-mode .active a").attr("href").slice(1) markdown: -> $("#md div") .html(marked @raw()) .find("pre").addClass "prettyprint" .end() .find("a").prop "rel", "nofollow" highlight: -> $("#hl pre").text @raw() prettyPrint() init: -> @markdown() @highlight()