OLD | NEW |
1 # Google Code Prettify | 1 # Google Code Prettify |
2 | 2 |
3 Direct port of svn into git from http://google-code-prettify.googlecode.com/svn/
trunk/ | 3 Direct port of svn into git from http://google-code-prettify.googlecode.com/svn/
trunk/ |
4 | 4 |
5 ## Install | 5 ## Install |
6 | 6 |
7 via [Bower](http://twitter.github.com/bower/) | 7 via [Bower](http://twitter.github.com/bower/) |
8 | 8 |
9 bower install google-code-prettify | 9 bower install google-code-prettify |
10 | 10 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 Or it may just be used in a global context like the following: | 45 Or it may just be used in a global context like the following: |
46 | 46 |
47 ```javascript | 47 ```javascript |
48 (function(){ | 48 (function(){ |
49 $('pre').addClass('prettyprint'); | 49 $('pre').addClass('prettyprint'); |
50 prettyPrint(); | 50 prettyPrint(); |
51 })(); | 51 })(); |
52 ``` | 52 ``` |
53 | 53 |
54 More information can be found in the original [README.html](http://google-code-p
rettify.googlecode.com/svn/trunk/README.html) | 54 More information can be found in the original [README.html](http://google-code-p
rettify.googlecode.com/svn/trunk/README.html) |
OLD | NEW |