Mercurial > zeropaste
comparison app/assets/javascripts/zp.formatter.js.coffee @ 348:55287d8a5a04
coffee: formatter.
author | edogawaconan <me@myconan.net> |
---|---|
date | Thu, 03 Jul 2014 14:59:21 +0900 |
parents | app/assets/javascripts/zp.formatter.js@c8757469da39 |
children |
comparison
equal
deleted
inserted
replaced
347:3ce44f960d3a | 348:55287d8a5a04 |
---|---|
1 #= require config/marked | |
2 #= require config/prettify | |
3 window.zp.formatter = | |
4 raw: -> $("#pl pre").text() | |
5 links: -> $("#paste-mode a") | |
6 current: -> $("#paste-mode .active a").attr("href").slice(1) | |
7 markdown: -> | |
8 $("#md div") | |
9 .html(marked @raw()) | |
10 .find("pre").addClass "prettyprint" | |
11 .end() | |
12 .find("a").prop "rel", "nofollow" | |
13 highlight: -> | |
14 $("#hl pre").text @raw() | |
15 prettyPrint() | |
16 init: -> | |
17 @markdown() | |
18 @highlight() |