markdown - Version 2.1.1

Version Notes

https://github.com/SchumacherFM/Magento-Markdown

- Update EpicEditor
- Update marked.js to version v0.3.2
- Update reMarked.js to latest version which fixes a lot of bugs
- Tiny update of beautify-html.js (AMD)
- Update highlight.js to version 8.0 http://highlightjs.org; new themes
- Remove shortened array syntax (PHP 5.4 feature). Thanks Dan Gibbs!
- Bug fix: Hide markdown in email editor when it is disabled. Thanks Paul Hachmang!

Download this release

Release Info

Developer Cyrill Schumacher
Extension markdown
Version 2.1.1
Comparing to
See all releases


Code changes from version 2.1.0 to 2.1.1

Files changed (53) hide show
  1. app/code/community/SchumacherFM/Markdown/Helper/Data.php +4 -1
  2. app/code/community/SchumacherFM/Markdown/Model/Options/Styles/AbstractStyles.php +1 -1
  3. js/markdown/adminhtml/beautify-html.js +98 -99
  4. js/markdown/adminhtml/epiceditor.js +1 -0
  5. js/markdown/adminhtml/highlight.pack.js +1 -1
  6. js/markdown/adminhtml/markdown.js +2 -2
  7. js/markdown/adminhtml/marked.js +28 -13
  8. js/markdown/adminhtml/reMarked.js +20 -8
  9. package.xml +11 -21
  10. skin/adminhtml/default/default/markdown/highlight/styles/arta.css +111 -111
  11. skin/adminhtml/default/default/markdown/highlight/styles/ascetic.css +32 -32
  12. skin/adminhtml/default/default/markdown/highlight/styles/atelier-dune.dark.css +93 -0
  13. skin/adminhtml/default/default/markdown/highlight/styles/atelier-dune.light.css +93 -0
  14. skin/adminhtml/default/default/markdown/highlight/styles/atelier-forest.dark.css +93 -0
  15. skin/adminhtml/default/default/markdown/highlight/styles/atelier-forest.light.css +93 -0
  16. skin/adminhtml/default/default/markdown/highlight/styles/atelier-heath.dark.css +93 -0
  17. skin/adminhtml/default/default/markdown/highlight/styles/atelier-heath.light.css +93 -0
  18. skin/adminhtml/default/default/markdown/highlight/styles/atelier-lakeside.dark.css +93 -0
  19. skin/adminhtml/default/default/markdown/highlight/styles/atelier-lakeside.light.css +93 -0
  20. skin/adminhtml/default/default/markdown/highlight/styles/atelier-seaside.dark.css +93 -0
  21. skin/adminhtml/default/default/markdown/highlight/styles/atelier-seaside.light.css +93 -0
  22. skin/adminhtml/default/default/markdown/highlight/styles/brown_paper.css +77 -77
  23. skin/adminhtml/default/default/markdown/highlight/styles/dark.css +78 -78
  24. skin/adminhtml/default/default/markdown/highlight/styles/default.css +117 -117
  25. skin/adminhtml/default/default/markdown/highlight/styles/docco.css +60 -60
  26. skin/adminhtml/default/default/markdown/highlight/styles/far.css +83 -83
  27. skin/adminhtml/default/default/markdown/highlight/styles/foundation.css +48 -48
  28. skin/adminhtml/default/default/markdown/highlight/styles/github.css +59 -64
  29. skin/adminhtml/default/default/markdown/highlight/styles/googlecode.css +81 -80
  30. skin/adminhtml/default/default/markdown/highlight/styles/idea.css +63 -63
  31. skin/adminhtml/default/default/markdown/highlight/styles/ir_black.css +56 -56
  32. skin/adminhtml/default/default/markdown/highlight/styles/magula.css +80 -80
  33. skin/adminhtml/default/default/markdown/highlight/styles/mono-blue.css +44 -44
  34. skin/adminhtml/default/default/markdown/highlight/styles/monokai.css +93 -93
  35. skin/adminhtml/default/default/markdown/highlight/styles/monokai_sublime.css +149 -102
  36. skin/adminhtml/default/default/markdown/highlight/styles/obsidian.css +95 -95
  37. skin/adminhtml/default/default/markdown/highlight/styles/paraiso.dark.css +93 -0
  38. skin/adminhtml/default/default/markdown/highlight/styles/paraiso.light.css +93 -0
  39. skin/adminhtml/default/default/markdown/highlight/styles/pojoaque.css +60 -59
  40. skin/adminhtml/default/default/markdown/highlight/styles/railscasts.css +80 -80
  41. skin/adminhtml/default/default/markdown/highlight/styles/rainbow.css +62 -65
  42. skin/adminhtml/default/default/markdown/highlight/styles/school_book.css +78 -78
  43. skin/adminhtml/default/default/markdown/highlight/styles/solarized_dark.css +76 -61
  44. skin/adminhtml/default/default/markdown/highlight/styles/solarized_light.css +76 -61
  45. skin/adminhtml/default/default/markdown/highlight/styles/sunburst.css +73 -73
  46. skin/adminhtml/default/default/markdown/highlight/styles/tomorrow-night-blue.css +57 -16
  47. skin/adminhtml/default/default/markdown/highlight/styles/tomorrow-night-bright.css +57 -16
  48. skin/adminhtml/default/default/markdown/highlight/styles/tomorrow-night-eighties.css +57 -16
  49. skin/adminhtml/default/default/markdown/highlight/styles/tomorrow-night.css +57 -16
  50. skin/adminhtml/default/default/markdown/highlight/styles/tomorrow.css +57 -16
  51. skin/adminhtml/default/default/markdown/highlight/styles/vs.css +69 -69
  52. skin/adminhtml/default/default/markdown/highlight/styles/xcode.css +95 -94
  53. skin/adminhtml/default/default/markdown/highlight/styles/zenburn.css +72 -72
app/code/community/SchumacherFM/Markdown/Helper/Data.php CHANGED
@@ -294,11 +294,14 @@ class SchumacherFM_Markdown_Helper_Data extends Mage_Core_Helper_Abstract
294
  'editor' => 1,
295
  'adminhtml_cms_block_edit' => 1,
296
  'adminhtml_cms_page_edit' => 1,
297
- 'adminhtml_system_email_template_edit' => 1,
298
  'adminhtml_catalog_product_edit' => 1,
299
  'adminhtml_catalog_category_edit' => 1,
300
  );
301
 
 
 
 
 
302
  $customHandles = trim((string)Mage::getStoreConfig('markdown/markdown/custom_layout_handles'));
303
  if (!empty($customHandles)) {
304
  $customHandles = preg_split('~\s+~', $customHandles, -1, PREG_SPLIT_NO_EMPTY);
294
  'editor' => 1,
295
  'adminhtml_cms_block_edit' => 1,
296
  'adminhtml_cms_page_edit' => 1,
 
297
  'adminhtml_catalog_product_edit' => 1,
298
  'adminhtml_catalog_category_edit' => 1,
299
  );
300
 
301
+ if (!$this->isEmailDisabled()) {
302
+ $handles['adminhtml_system_email_template_edit'] = 1;
303
+ }
304
+
305
  $customHandles = trim((string)Mage::getStoreConfig('markdown/markdown/custom_layout_handles'));
306
  if (!empty($customHandles)) {
307
  $customHandles = preg_split('~\s+~', $customHandles, -1, PREG_SPLIT_NO_EMPTY);
app/code/community/SchumacherFM/Markdown/Model/Options/Styles/AbstractStyles.php CHANGED
@@ -7,7 +7,7 @@
7
  */
8
  abstract class SchumacherFM_Markdown_Model_Options_Styles_AbstractStyles
9
  {
10
- protected $_path = [];
11
 
12
  /**
13
  * Options getter
7
  */
8
  abstract class SchumacherFM_Markdown_Model_Options_Styles_AbstractStyles
9
  {
10
+ protected $_path = array();
11
 
12
  /**
13
  * Options getter
js/markdown/adminhtml/beautify-html.js CHANGED
@@ -1,74 +1,74 @@
1
  /*jshint curly:true, eqeqeq:true, laxbreak:true, noempty:false */
2
  /*
3
  https://github.com/einars/js-beautify/blob/master/js/lib/beautify-html.js
4
- The MIT License (MIT)
5
 
6
- Copyright (c) 2007-2013 Einar Lielmanis and contributors.
7
 
8
- Permission is hereby granted, free of charge, to any person
9
- obtaining a copy of this software and associated documentation files
10
- (the "Software"), to deal in the Software without restriction,
11
- including without limitation the rights to use, copy, modify, merge,
12
- publish, distribute, sublicense, and/or sell copies of the Software,
13
- and to permit persons to whom the Software is furnished to do so,
14
- subject to the following conditions:
15
 
16
- The above copyright notice and this permission notice shall be
17
- included in all copies or substantial portions of the Software.
18
 
19
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
23
- BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
24
- ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
- SOFTWARE.
27
 
28
 
29
  Style HTML
30
- ---------------
31
-
32
- Written by Nochum Sossonko, (nsossonko@hotmail.com)
33
-
34
- Based on code initially developed by: Einar Lielmanis, <elfz@laacz.lv>
35
- http://jsbeautifier.org/
36
-
37
- Usage:
38
- style_html(html_source);
39
-
40
- style_html(html_source, options);
41
-
42
- The options are:
43
- indent_inner_html (default false) — indent <head> and <body> sections,
44
- indent_size (default 4) — indentation size,
45
- indent_char (default space) — character to indent with,
46
- wrap_line_length (default 250) - maximum amount of characters per line (0 = disable)
47
- brace_style (default "collapse") - "collapse" | "expand" | "end-expand"
48
- put braces on the same line as control statements (default), or put braces on own line (Allman / ANSI style), or just put end braces on own line.
49
- unformatted (defaults to inline tags) - list of tags, that shouldn't be reformatted
50
- indent_scripts (default normal) - "keep"|"separate"|"normal"
51
- preserve_newlines (default true) - whether existing line breaks before elements should be preserved
52
- Only works before elements, not inside tags or for text.
53
- max_preserve_newlines (default unlimited) - maximum number of line breaks to be preserved in one chunk
54
- indent_handlebars (default false) - format and indent {{#foo}} and {{/foo}}
55
-
56
- e.g.
57
-
58
- style_html(html_source, {
59
- 'indent_inner_html': false,
60
- 'indent_size': 2,
61
- 'indent_char': ' ',
62
- 'wrap_line_length': 78,
63
- 'brace_style': 'expand',
64
- 'unformatted': ['a', 'sub', 'sup', 'b', 'i', 'u'],
65
- 'preserve_newlines': true,
66
- 'max_preserve_newlines': 5,
67
- 'indent_handlebars': false
68
- });
69
- */
70
-
71
- (function () {
72
 
73
  function trim(s) {
74
  return s.replace(/^\s+|\s+$/g, '');
@@ -89,14 +89,13 @@
89
  brace_style,
90
  unformatted,
91
  preserve_newlines,
92
- max_preserve_newlines,
93
- indent_handlebars;
94
 
95
  options = options || {};
96
 
97
  // backwards compatibility to 1.3.4
98
  if ((options.wrap_line_length === undefined || parseInt(options.wrap_line_length, 10) === 0) &&
99
- (options.max_char === undefined || parseInt(options.max_char, 10) === 0)) {
100
  options.wrap_line_length = options.max_char;
101
  }
102
 
@@ -104,7 +103,7 @@
104
  indent_size = parseInt(options.indent_size || 4, 10);
105
  indent_character = options.indent_char || ' ';
106
  brace_style = options.brace_style || 'collapse';
107
- wrap_line_length = parseInt(options.wrap_line_length, 10) === 0 ? 32786 : parseInt(options.wrap_line_length || 250, 10);
108
  unformatted = options.unformatted || ['a', 'span', 'bdo', 'em', 'strong', 'dfn', 'code', 'samp', 'kbd', 'var', 'cite', 'abbr', 'acronym', 'q', 'sub', 'sup', 'tt', 'i', 'b', 'big', 'small', 'u', 's', 'strike', 'font', 'ins', 'del', 'pre', 'address', 'dt', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'];
109
  preserve_newlines = options.preserve_newlines || true;
110
  max_preserve_newlines = preserve_newlines ? parseInt(options.max_preserve_newlines || 32786, 10) : 0;
@@ -129,7 +128,7 @@
129
  whitespace: "\n\r\t ".split(''),
130
  single_token: 'br,input,link,meta,!doctype,basefont,base,area,hr,wbr,param,img,isindex,?xml,embed,?php,?,?='.split(','), //all the single tags for HTML
131
  extra_liners: 'head,body,/html'.split(','), //for tags that need a line of whitespace before them
132
- in_array: function (what, arr) {
133
  for (var i = 0; i < arr.length; i++) {
134
  if (what === arr[i]) {
135
  return true;
@@ -139,7 +138,7 @@
139
  }
140
  };
141
 
142
- this.traverse_whitespace = function () {
143
  var input_char = '';
144
 
145
  input_char = this.input.charAt(this.pos);
@@ -158,7 +157,7 @@
158
  return false;
159
  };
160
 
161
- this.get_content = function () { //function to capture regular content between tags
162
 
163
  var input_char = '',
164
  content = [],
@@ -211,7 +210,7 @@
211
  return content.length ? content.join('') : '';
212
  };
213
 
214
- this.get_contents_to = function (name) { //get the full content of a script or style to pass to js_beautify
215
  if (this.pos === this.input.length) {
216
  return ['', 'TK_EOF'];
217
  }
@@ -228,7 +227,7 @@
228
  return content;
229
  };
230
 
231
- this.record_tag = function (tag) { //function to record a tag and its parent in this.tags Object
232
  if (this.tags[tag + 'count']) { //check for the existence of this tag type
233
  this.tags[tag + 'count']++;
234
  this.tags[tag + this.tags[tag + 'count']] = this.indent_level; //and record the present indent level
@@ -240,7 +239,7 @@
240
  this.tags.parent = tag + this.tags[tag + 'count']; //and make this the current parent (i.e. in the case of a div 'div1')
241
  };
242
 
243
- this.retrieve_tag = function (tag) { //function to retrieve the opening tag to the corresponding closer
244
  if (this.tags[tag + 'count']) { //if the openener is not in the Object we ignore it
245
  var temp_parent = this.tags.parent; //check to see if it's a closable tag.
246
  while (temp_parent) { //till we reach '' (the initial value);
@@ -263,7 +262,7 @@
263
  }
264
  };
265
 
266
- this.indent_to_tag = function (tag) {
267
  // Match the indentation level to the last use of this tag, but don't remove it.
268
  if (!this.tags[tag + 'count']) {
269
  return;
@@ -280,7 +279,7 @@
280
  }
281
  };
282
 
283
- this.get_tag = function (peek) { //function to get a full tag and parse its type
284
  var input_char = '',
285
  content = [],
286
  comment = '',
@@ -462,7 +461,7 @@
462
  return content.join(''); //returns fully formatted tag
463
  };
464
 
465
- this.get_comment = function (start_pos) { //function to return comment content in its entirety
466
  // this is will have very poor perf, but will work for now.
467
  var comment = '',
468
  delimiter = '>',
@@ -505,7 +504,7 @@
505
  return comment;
506
  };
507
 
508
- this.get_unformatted = function (delimiter, orig_tag) { //function to return unformatted content in its entirety
509
 
510
  if (orig_tag && orig_tag.toLowerCase().indexOf(delimiter) !== -1) {
511
  return '';
@@ -531,11 +530,11 @@
531
  if (input_char === '\n' || input_char === '\r') {
532
  content += '\n';
533
  /* Don't change tab indention for unformatted blocks. If using code for html editing, this will greatly affect <pre> tags if they are specified in the 'unformatted array'
534
- for (var i=0; i<this.indent_level; i++) {
535
- content += this.indent_string;
536
- }
537
- space = false; //...and make sure other indentation is erased
538
- */
539
  this.line_char_count = 0;
540
  continue;
541
  }
@@ -554,7 +553,7 @@
554
  return content;
555
  };
556
 
557
- this.get_token = function () { //initial handler for token-retrieval
558
  var token;
559
 
560
  if (this.last_token === 'TK_TAG_SCRIPT' || this.last_token === 'TK_TAG_STYLE') { //check if we need to format javascript
@@ -585,7 +584,7 @@
585
  }
586
  };
587
 
588
- this.get_full_indent = function (level) {
589
  level = this.indent_level + level || 0;
590
  if (level < 1) {
591
  return '';
@@ -594,7 +593,7 @@
594
  return Array(level + 1).join(this.indent_string);
595
  };
596
 
597
- this.is_unformatted = function (tag_check, unformatted) {
598
  //is this an HTML5 block-level link?
599
  if (!this.Utils.in_array(tag_check, unformatted)) {
600
  return false;
@@ -606,7 +605,7 @@
606
 
607
  //at this point we have an tag; is its first child something we want to remain
608
  //unformatted?
609
- var next_tag = this.get_tag(true /* peek. */);
610
 
611
  // test next_tag to see if it is just html tag (no external content)
612
  var tag = (next_tag || "").match(/^\s*<\s*\/?([a-z]*)\s*[^>]*>\s*$/);
@@ -621,7 +620,7 @@
621
  }
622
  };
623
 
624
- this.printer = function (js_source, indent_character, indent_size, wrap_line_length, brace_style) { //handles input/output and some other printing functions
625
 
626
  this.input = js_source || ''; //gets the input for the Parser
627
  this.output = [];
@@ -637,7 +636,7 @@
637
  this.indent_string += this.indent_character;
638
  }
639
 
640
- this.print_newline = function (force, arr) {
641
  this.line_char_count = 0;
642
  if (!arr || !arr.length) {
643
  return;
@@ -647,14 +646,14 @@
647
  }
648
  };
649
 
650
- this.print_indentation = function (arr) {
651
  for (var i = 0; i < this.indent_level; i++) {
652
  arr.push(this.indent_string);
653
  this.line_char_count += this.indent_string.length;
654
  }
655
  };
656
 
657
- this.print_token = function (text) {
658
  if (text || text !== '') {
659
  if (this.output.length && this.output[this.output.length - 1] === '\n') {
660
  this.print_indentation(this.output);
@@ -664,7 +663,7 @@
664
  this.print_token_raw(text);
665
  };
666
 
667
- this.print_token_raw = function (text) {
668
  if (text && text !== '') {
669
  if (text.length > 1 && text[text.length - 1] === '\n') {
670
  // unformatted tags can grab newlines as their last character
@@ -681,11 +680,11 @@
681
  this.newlines = 0;
682
  };
683
 
684
- this.indent = function () {
685
  this.indent_level++;
686
  };
687
 
688
- this.unindent = function () {
689
  if (this.indent_level > 0) {
690
  this.indent_level--;
691
  }
@@ -807,13 +806,13 @@
807
  return multi_parser.output.join('');
808
  }
809
 
810
- if (typeof define === "function") {
811
  // Add support for require.js
812
- define(["./beautify.js", "./beautify-css.js"], function (js_beautify, css_beautify) {
813
  return {
814
- html_beautify: function (html_source, options) {
815
- return style_html(html_source, options, js_beautify, css_beautify);
816
- }
817
  };
818
  });
819
  } else if (typeof exports !== "undefined") {
@@ -822,17 +821,17 @@
822
  var js_beautify = require('./beautify.js').js_beautify;
823
  var css_beautify = require('./beautify-css.js').css_beautify;
824
 
825
- exports.html_beautify = function (html_source, options) {
826
  return style_html(html_source, options, js_beautify, css_beautify);
827
  };
828
  } else if (typeof window !== "undefined") {
829
  // If we're running a web page and don't have either of the above, add our one global
830
- window.html_beautify = function (html_source, options) {
831
  return style_html(html_source, options, window.js_beautify, window.css_beautify);
832
  };
833
  } else if (typeof global !== "undefined") {
834
  // If we don't even have window, try global.
835
- global.html_beautify = function (html_source, options) {
836
  return style_html(html_source, options, global.js_beautify, global.css_beautify);
837
  };
838
  }
1
  /*jshint curly:true, eqeqeq:true, laxbreak:true, noempty:false */
2
  /*
3
  https://github.com/einars/js-beautify/blob/master/js/lib/beautify-html.js
4
+ The MIT License (MIT)
5
 
6
+ Copyright (c) 2007-2013 Einar Lielmanis and contributors.
7
 
8
+ Permission is hereby granted, free of charge, to any person
9
+ obtaining a copy of this software and associated documentation files
10
+ (the "Software"), to deal in the Software without restriction,
11
+ including without limitation the rights to use, copy, modify, merge,
12
+ publish, distribute, sublicense, and/or sell copies of the Software,
13
+ and to permit persons to whom the Software is furnished to do so,
14
+ subject to the following conditions:
15
 
16
+ The above copyright notice and this permission notice shall be
17
+ included in all copies or substantial portions of the Software.
18
 
19
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
23
+ BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
24
+ ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ SOFTWARE.
27
 
28
 
29
  Style HTML
30
+ ---------------
31
+
32
+ Written by Nochum Sossonko, (nsossonko@hotmail.com)
33
+
34
+ Based on code initially developed by: Einar Lielmanis, <einar@jsbeautifier.org>
35
+ http://jsbeautifier.org/
36
+
37
+ Usage:
38
+ style_html(html_source);
39
+
40
+ style_html(html_source, options);
41
+
42
+ The options are:
43
+ indent_inner_html (default false) — indent <head> and <body> sections,
44
+ indent_size (default 4) — indentation size,
45
+ indent_char (default space) — character to indent with,
46
+ wrap_line_length (default 250) - maximum amount of characters per line (0 = disable)
47
+ brace_style (default "collapse") - "collapse" | "expand" | "end-expand"
48
+ put braces on the same line as control statements (default), or put braces on own line (Allman / ANSI style), or just put end braces on own line.
49
+ unformatted (defaults to inline tags) - list of tags, that shouldn't be reformatted
50
+ indent_scripts (default normal) - "keep"|"separate"|"normal"
51
+ preserve_newlines (default true) - whether existing line breaks before elements should be preserved
52
+ Only works before elements, not inside tags or for text.
53
+ max_preserve_newlines (default unlimited) - maximum number of line breaks to be preserved in one chunk
54
+ indent_handlebars (default false) - format and indent {{#foo}} and {{/foo}}
55
+
56
+ e.g.
57
+
58
+ style_html(html_source, {
59
+ 'indent_inner_html': false,
60
+ 'indent_size': 2,
61
+ 'indent_char': ' ',
62
+ 'wrap_line_length': 78,
63
+ 'brace_style': 'expand',
64
+ 'unformatted': ['a', 'sub', 'sup', 'b', 'i', 'u'],
65
+ 'preserve_newlines': true,
66
+ 'max_preserve_newlines': 5,
67
+ 'indent_handlebars': false
68
+ });
69
+ */
70
+
71
+ (function() {
72
 
73
  function trim(s) {
74
  return s.replace(/^\s+|\s+$/g, '');
89
  brace_style,
90
  unformatted,
91
  preserve_newlines,
92
+ max_preserve_newlines;
 
93
 
94
  options = options || {};
95
 
96
  // backwards compatibility to 1.3.4
97
  if ((options.wrap_line_length === undefined || parseInt(options.wrap_line_length, 10) === 0) &&
98
+ (options.max_char === undefined || parseInt(options.max_char, 10) === 0)) {
99
  options.wrap_line_length = options.max_char;
100
  }
101
 
103
  indent_size = parseInt(options.indent_size || 4, 10);
104
  indent_character = options.indent_char || ' ';
105
  brace_style = options.brace_style || 'collapse';
106
+ wrap_line_length = parseInt(options.wrap_line_length, 10) === 0 ? 32786 : parseInt(options.wrap_line_length || 250, 10);
107
  unformatted = options.unformatted || ['a', 'span', 'bdo', 'em', 'strong', 'dfn', 'code', 'samp', 'kbd', 'var', 'cite', 'abbr', 'acronym', 'q', 'sub', 'sup', 'tt', 'i', 'b', 'big', 'small', 'u', 's', 'strike', 'font', 'ins', 'del', 'pre', 'address', 'dt', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'];
108
  preserve_newlines = options.preserve_newlines || true;
109
  max_preserve_newlines = preserve_newlines ? parseInt(options.max_preserve_newlines || 32786, 10) : 0;
128
  whitespace: "\n\r\t ".split(''),
129
  single_token: 'br,input,link,meta,!doctype,basefont,base,area,hr,wbr,param,img,isindex,?xml,embed,?php,?,?='.split(','), //all the single tags for HTML
130
  extra_liners: 'head,body,/html'.split(','), //for tags that need a line of whitespace before them
131
+ in_array: function(what, arr) {
132
  for (var i = 0; i < arr.length; i++) {
133
  if (what === arr[i]) {
134
  return true;
138
  }
139
  };
140
 
141
+ this.traverse_whitespace = function() {
142
  var input_char = '';
143
 
144
  input_char = this.input.charAt(this.pos);
157
  return false;
158
  };
159
 
160
+ this.get_content = function() { //function to capture regular content between tags
161
 
162
  var input_char = '',
163
  content = [],
210
  return content.length ? content.join('') : '';
211
  };
212
 
213
+ this.get_contents_to = function(name) { //get the full content of a script or style to pass to js_beautify
214
  if (this.pos === this.input.length) {
215
  return ['', 'TK_EOF'];
216
  }
227
  return content;
228
  };
229
 
230
+ this.record_tag = function(tag) { //function to record a tag and its parent in this.tags Object
231
  if (this.tags[tag + 'count']) { //check for the existence of this tag type
232
  this.tags[tag + 'count']++;
233
  this.tags[tag + this.tags[tag + 'count']] = this.indent_level; //and record the present indent level
239
  this.tags.parent = tag + this.tags[tag + 'count']; //and make this the current parent (i.e. in the case of a div 'div1')
240
  };
241
 
242
+ this.retrieve_tag = function(tag) { //function to retrieve the opening tag to the corresponding closer
243
  if (this.tags[tag + 'count']) { //if the openener is not in the Object we ignore it
244
  var temp_parent = this.tags.parent; //check to see if it's a closable tag.
245
  while (temp_parent) { //till we reach '' (the initial value);
262
  }
263
  };
264
 
265
+ this.indent_to_tag = function(tag) {
266
  // Match the indentation level to the last use of this tag, but don't remove it.
267
  if (!this.tags[tag + 'count']) {
268
  return;
279
  }
280
  };
281
 
282
+ this.get_tag = function(peek) { //function to get a full tag and parse its type
283
  var input_char = '',
284
  content = [],
285
  comment = '',
461
  return content.join(''); //returns fully formatted tag
462
  };
463
 
464
+ this.get_comment = function(start_pos) { //function to return comment content in its entirety
465
  // this is will have very poor perf, but will work for now.
466
  var comment = '',
467
  delimiter = '>',
504
  return comment;
505
  };
506
 
507
+ this.get_unformatted = function(delimiter, orig_tag) { //function to return unformatted content in its entirety
508
 
509
  if (orig_tag && orig_tag.toLowerCase().indexOf(delimiter) !== -1) {
510
  return '';
530
  if (input_char === '\n' || input_char === '\r') {
531
  content += '\n';
532
  /* Don't change tab indention for unformatted blocks. If using code for html editing, this will greatly affect <pre> tags if they are specified in the 'unformatted array'
533
+ for (var i=0; i<this.indent_level; i++) {
534
+ content += this.indent_string;
535
+ }
536
+ space = false; //...and make sure other indentation is erased
537
+ */
538
  this.line_char_count = 0;
539
  continue;
540
  }
553
  return content;
554
  };
555
 
556
+ this.get_token = function() { //initial handler for token-retrieval
557
  var token;
558
 
559
  if (this.last_token === 'TK_TAG_SCRIPT' || this.last_token === 'TK_TAG_STYLE') { //check if we need to format javascript
584
  }
585
  };
586
 
587
+ this.get_full_indent = function(level) {
588
  level = this.indent_level + level || 0;
589
  if (level < 1) {
590
  return '';
593
  return Array(level + 1).join(this.indent_string);
594
  };
595
 
596
+ this.is_unformatted = function(tag_check, unformatted) {
597
  //is this an HTML5 block-level link?
598
  if (!this.Utils.in_array(tag_check, unformatted)) {
599
  return false;
605
 
606
  //at this point we have an tag; is its first child something we want to remain
607
  //unformatted?
608
+ var next_tag = this.get_tag(true /* peek. */ );
609
 
610
  // test next_tag to see if it is just html tag (no external content)
611
  var tag = (next_tag || "").match(/^\s*<\s*\/?([a-z]*)\s*[^>]*>\s*$/);
620
  }
621
  };
622
 
623
+ this.printer = function(js_source, indent_character, indent_size, wrap_line_length, brace_style) { //handles input/output and some other printing functions
624
 
625
  this.input = js_source || ''; //gets the input for the Parser
626
  this.output = [];
636
  this.indent_string += this.indent_character;
637
  }
638
 
639
+ this.print_newline = function(force, arr) {
640
  this.line_char_count = 0;
641
  if (!arr || !arr.length) {
642
  return;
646
  }
647
  };
648
 
649
+ this.print_indentation = function(arr) {
650
  for (var i = 0; i < this.indent_level; i++) {
651
  arr.push(this.indent_string);
652
  this.line_char_count += this.indent_string.length;
653
  }
654
  };
655
 
656
+ this.print_token = function(text) {
657
  if (text || text !== '') {
658
  if (this.output.length && this.output[this.output.length - 1] === '\n') {
659
  this.print_indentation(this.output);
663
  this.print_token_raw(text);
664
  };
665
 
666
+ this.print_token_raw = function(text) {
667
  if (text && text !== '') {
668
  if (text.length > 1 && text[text.length - 1] === '\n') {
669
  // unformatted tags can grab newlines as their last character
680
  this.newlines = 0;
681
  };
682
 
683
+ this.indent = function() {
684
  this.indent_level++;
685
  };
686
 
687
+ this.unindent = function() {
688
  if (this.indent_level > 0) {
689
  this.indent_level--;
690
  }
806
  return multi_parser.output.join('');
807
  }
808
 
809
+ if (typeof define === "function" && define.amd) {
810
  // Add support for require.js
811
+ define(["./beautify", "./beautify-css"], function(js_beautify, css_beautify) {
812
  return {
813
+ html_beautify: function(html_source, options) {
814
+ return style_html(html_source, options, js_beautify, css_beautify);
815
+ }
816
  };
817
  });
818
  } else if (typeof exports !== "undefined") {
821
  var js_beautify = require('./beautify.js').js_beautify;
822
  var css_beautify = require('./beautify-css.js').css_beautify;
823
 
824
+ exports.html_beautify = function(html_source, options) {
825
  return style_html(html_source, options, js_beautify, css_beautify);
826
  };
827
  } else if (typeof window !== "undefined") {
828
  // If we're running a web page and don't have either of the above, add our one global
829
+ window.html_beautify = function(html_source, options) {
830
  return style_html(html_source, options, window.js_beautify, window.css_beautify);
831
  };
832
  } else if (typeof global !== "undefined") {
833
  // If we don't even have window, try global.
834
+ global.html_beautify = function(html_source, options) {
835
  return style_html(html_source, options, global.js_beautify, global.css_beautify);
836
  };
837
  }
js/markdown/adminhtml/epiceditor.js CHANGED
@@ -963,6 +963,7 @@
963
  function shortcutHandler(e) {
964
  if (e.keyCode == self.settings.shortcut.modifier) { isMod = true } // check for modifier press(default is alt key), save to var
965
  if (e.keyCode == 17) { isCtrl = true } // check for ctrl/cmnd press, in order to catch ctrl/cmnd + s
 
966
 
967
  // Check for alt+p and make sure were not in fullscreen - default shortcut to switch to preview
968
  if (isMod === true && e.keyCode == self.settings.shortcut.preview && !self.is('fullscreen')) {
963
  function shortcutHandler(e) {
964
  if (e.keyCode == self.settings.shortcut.modifier) { isMod = true } // check for modifier press(default is alt key), save to var
965
  if (e.keyCode == 17) { isCtrl = true } // check for ctrl/cmnd press, in order to catch ctrl/cmnd + s
966
+ if (e.keyCode == 18) { isCtrl = false }
967
 
968
  // Check for alt+p and make sure were not in fullscreen - default shortcut to switch to preview
969
  if (isMod === true && e.keyCode == self.settings.shortcut.preview && !self.is('fullscreen')) {
js/markdown/adminhtml/highlight.pack.js CHANGED
@@ -1 +1 @@
1
- var hljs=new function(){function l(o){return o.replace(/&/gm,"&amp;").replace(/</gm,"&lt;").replace(/>/gm,"&gt;")}function b(p){for(var o=p.firstChild;o;o=o.nextSibling){if(o.nodeName.toUpperCase()=="CODE"){return o}if(!(o.nodeType==3&&o.nodeValue.match(/\s+/))){break}}}function h(p,o){return Array.prototype.map.call(p.childNodes,function(q){if(q.nodeType==3){return o?q.nodeValue.replace(/\n/g,""):q.nodeValue}if(q.nodeName.toUpperCase()=="BR"){return"\n"}return h(q,o)}).join("")}function a(q){var p=(q.className+" "+(q.parentNode?q.parentNode.className:"")).split(/\s+/);p=p.map(function(r){return r.replace(/^language-/,"")});for(var o=0;o<p.length;o++){if(e[p[o]]||p[o]=="no-highlight"){return p[o]}}}function c(q){var o=[];(function p(r,s){for(var t=r.firstChild;t;t=t.nextSibling){if(t.nodeType==3){s+=t.nodeValue.length}else{if(t.nodeName.toUpperCase()=="BR"){s+=1}else{if(t.nodeType==1){o.push({event:"start",offset:s,node:t});s=p(t,s);o.push({event:"stop",offset:s,node:t})}}}}return s})(q,0);return o}function j(p,r,v){var q=0;var y="";var s=[];function u(){if(!p.length||!r.length){return p.length?p:r}if(p[0].offset!=r[0].offset){return(p[0].offset<r[0].offset)?p:r}return r[0].event=="start"?p:r}function t(A){function z(B){return" "+B.nodeName+'="'+l(B.value)+'"'}y+="<"+A.nodeName.toLowerCase()+Array.prototype.map.call(A.attributes,z).join("")+">"}function x(z){y+="</"+z.nodeName.toLowerCase()+">"}function o(z){(z.event=="start"?t:x)(z.node)}while(p.length||r.length){var w=u();y+=l(v.substr(q,w[0].offset-q));q=w[0].offset;if(w==p){s.reverse().forEach(x);do{o(w.splice(0,1)[0]);w=u()}while(w==p&&w.length&&w[0].offset==q);s.reverse().forEach(t)}else{if(w[0].event=="start"){s.push(w[0].node)}else{s.pop()}o(w.splice(0,1)[0])}}return y+l(v.substr(q))}function f(r){function o(s){return(s&&s.source)||s}function p(t,s){return RegExp(o(t),"m"+(r.cI?"i":"")+(s?"g":""))}function q(z,x){if(z.compiled){return}z.compiled=true;var u=[];if(z.k){var s={};function A(B,t){if(r.cI){t=t.toLowerCase()}t.split(" ").forEach(function(C){var D=C.split("|");s[D[0]]=[B,D[1]?Number(D[1]):1];u.push(D[0])})}z.lR=p(z.l||"\\b"+hljs.IR+"\\b(?!\\.)",true);if(typeof z.k=="string"){A("keyword",z.k)}else{for(var y in z.k){if(!z.k.hasOwnProperty(y)){continue}A(y,z.k[y])}}z.k=s}if(x){if(z.bWK){z.b="\\b("+u.join("|")+")\\b(?!\\.)\\s*"}z.bR=p(z.b?z.b:"\\B|\\b");if(!z.e&&!z.eW){z.e="\\B|\\b"}if(z.e){z.eR=p(z.e)}z.tE=o(z.e)||"";if(z.eW&&x.tE){z.tE+=(z.e?"|":"")+x.tE}}if(z.i){z.iR=p(z.i)}if(z.r===undefined){z.r=1}if(!z.c){z.c=[]}for(var w=0;w<z.c.length;w++){if(z.c[w]=="self"){z.c[w]=z}q(z.c[w],z)}if(z.starts){q(z.starts,x)}var v=[];for(var w=0;w<z.c.length;w++){v.push(o(z.c[w].b))}if(z.tE){v.push(o(z.tE))}if(z.i){v.push(o(z.i))}z.t=v.length?p(v.join("|"),true):{exec:function(t){return null}}}q(r)}function d(E,G,C,M){function o(r,P){for(var O=0;O<P.c.length;O++){var N=P.c[O].bR.exec(r);if(N&&N.index==0){return P.c[O]}}}function s(N,r){if(N.e&&N.eR.test(r)){return N}if(N.eW){return s(N.parent,r)}}function t(r,N){return !C&&N.i&&N.iR.test(r)}function y(O,r){var N=H.cI?r[0].toLowerCase():r[0];return O.k.hasOwnProperty(N)&&O.k[N]}function I(){var N=l(w);if(!B.k){return N}var r="";var Q=0;B.lR.lastIndex=0;var O=B.lR.exec(N);while(O){r+=N.substr(Q,O.index-Q);var P=y(B,O);if(P){v+=P[1];r+='<span class="'+P[0]+'">'+O[0]+"</span>"}else{r+=O[0]}Q=B.lR.lastIndex;O=B.lR.exec(N)}return r+N.substr(Q)}function z(){if(B.sL&&!e[B.sL]){return l(w)}var N=B.subLanguageMode=="continuous"?B.top:undefined;var r=B.sL?d(B.sL,w,true,N):g(w);if(B.r>0){v+=r.keyword_count;A+=r.r}B.top=r.top;return'<span class="'+r.language+'">'+r.value+"</span>"}function L(){return B.sL!==undefined?z():I()}function K(O,r){var N=O.cN?'<span class="'+O.cN+'">':"";if(O.rB){x+=N;w=""}else{if(O.eB){x+=l(r)+N;w=""}else{x+=N;w=r}}B=Object.create(O,{parent:{value:B}})}function D(N,r){w+=N;if(r===undefined){x+=L();return 0}var P=o(r,B);if(P){x+=L();K(P,r);return P.rB?0:r.length}var Q=s(B,r);if(Q){var O=B;if(!(O.rE||O.eE)){w+=r}x+=L();do{if(B.cN){x+="</span>"}A+=B.r;B=B.parent}while(B!=Q.parent);if(O.eE){x+=l(r)}w="";if(Q.starts){K(Q.starts,"")}return O.rE?0:r.length}if(t(r,B)){throw new Error('Illegal lexem "'+r+'" for mode "'+(B.cN||"<unnamed>")+'"')}w+=r;return r.length||1}var H=e[E];if(!H){throw new Error('Unknown language: "'+E+'"')}f(H);var B=M||H;var x="";for(var F=B;F!=H;F=F.parent){if(F.cN){x='<span class="'+F.cN+'">'+x}}var w="";var A=0;var v=0;try{var u,q,p=0;while(true){B.t.lastIndex=p;u=B.t.exec(G);if(!u){break}q=D(G.substr(p,u.index-p),u[0]);p=u.index+q}D(G.substr(p));for(var F=B;F.parent;F=F.parent){if(F.cN){x+="</span>"}}return{r:A,keyword_count:v,value:x,language:E,top:B}}catch(J){if(J.message.indexOf("Illegal")!=-1){return{r:0,keyword_count:0,value:l(G)}}else{throw J}}}function g(s){var o={keyword_count:0,r:0,value:l(s)};var q=o;for(var p in e){if(!e.hasOwnProperty(p)){continue}var r=d(p,s,false);r.language=p;if(r.keyword_count+r.r>q.keyword_count+q.r){q=r}if(r.keyword_count+r.r>o.keyword_count+o.r){q=o;o=r}}if(q.language){o.second_best=q}return o}function i(q,p,o){if(p){q=q.replace(/^((<[^>]+>|\t)+)/gm,function(r,v,u,t){return v.replace(/\t/g,p)})}if(o){q=q.replace(/\n/g,"<br>")}return q}function m(r,u,p){var v=h(r,p);var t=a(r);if(t=="no-highlight"){return}var w=t?d(t,v,true):g(v);t=w.language;var o=c(r);if(o.length){var q=document.createElementNS("http://www.w3.org/1999/xhtml","pre");q.innerHTML=w.value;w.value=j(o,c(q),v)}w.value=i(w.value,u,p);var s=r.className;if(!s.match("(\\s|^)(language-)?"+t+"(\\s|$)")){s=s?(s+" "+t):t}r.innerHTML=w.value;r.className=s;r.result={language:t,kw:w.keyword_count,re:w.r};if(w.second_best){r.second_best={language:w.second_best.language,kw:w.second_best.keyword_count,re:w.second_best.r}}}function n(){if(n.called){return}n.called=true;Array.prototype.map.call(document.getElementsByTagNameNS("http://www.w3.org/1999/xhtml","pre"),b).filter(Boolean).forEach(function(o){m(o,hljs.tabReplace)})}function k(){window.addEventListener("DOMContentLoaded",n,false);window.addEventListener("load",n,false)}var e={};this.LANGUAGES=e;this.highlight=d;this.highlightAuto=g;this.fixMarkup=i;this.highlightBlock=m;this.initHighlighting=n;this.initHighlightingOnLoad=k;this.IR="[a-zA-Z][a-zA-Z0-9_]*";this.UIR="[a-zA-Z_][a-zA-Z0-9_]*";this.NR="\\b\\d+(\\.\\d+)?";this.CNR="(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)";this.BNR="\\b(0b[01]+)";this.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|\\.|-|-=|/|/=|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~";this.BE={b:"\\\\[\\s\\S]",r:0};this.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[this.BE],r:0};this.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[this.BE],r:0};this.CLCM={cN:"comment",b:"//",e:"$"};this.CBLCLM={cN:"comment",b:"/\\*",e:"\\*/"};this.HCM={cN:"comment",b:"#",e:"$"};this.NM={cN:"number",b:this.NR,r:0};this.CNM={cN:"number",b:this.CNR,r:0};this.BNM={cN:"number",b:this.BNR,r:0};this.REGEXP_MODE={cN:"regexp",b:/\//,e:/\/[gim]*/,i:/\n/,c:[this.BE,{b:/\[/,e:/\]/,r:0,c:[this.BE]}]};this.inherit=function(q,r){var o={};for(var p in q){o[p]=q[p]}if(r){for(var p in r){o[p]=r[p]}}return o}}();hljs.LANGUAGES.javascript=function(a){return{k:{keyword:"in if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const",literal:"true false null undefined NaN Infinity"},c:[a.ASM,a.QSM,a.CLCM,a.CBLCLM,a.CNM,{b:"("+a.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[a.CLCM,a.CBLCLM,a.REGEXP_MODE,{b:/</,e:/>;/,sL:"xml"}],r:0},{cN:"function",bWK:true,e:/{/,k:"function",c:[{cN:"title",b:/[A-Za-z$_][0-9A-Za-z$_]*/},{cN:"params",b:/\(/,e:/\)/,c:[a.CLCM,a.CBLCLM],i:/["'\(]/}],i:/\[|%/}]}}(hljs);hljs.LANGUAGES.xml=function(a){var c="[A-Za-z0-9\\._:-]+";var b={eW:true,r:0,c:[{cN:"attribute",b:c,r:0},{b:'="',rB:true,e:'"',c:[{cN:"value",b:'"',eW:true}]},{b:"='",rB:true,e:"'",c:[{cN:"value",b:"'",eW:true}]},{b:"=",c:[{cN:"value",b:"[^\\s/>]+"}]}]};return{cI:true,c:[{cN:"pi",b:"<\\?",e:"\\?>",r:10},{cN:"doctype",b:"<!DOCTYPE",e:">",r:10,c:[{b:"\\[",e:"\\]"}]},{cN:"comment",b:"<!--",e:"-->",r:10},{cN:"cdata",b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{cN:"tag",b:"<style(?=\\s|>|$)",e:">",k:{title:"style"},c:[b],starts:{e:"</style>",rE:true,sL:"css"}},{cN:"tag",b:"<script(?=\\s|>|$)",e:">",k:{title:"script"},c:[b],starts:{e:"<\/script>",rE:true,sL:"javascript"}},{b:"<%",e:"%>",sL:"vbscript"},{cN:"tag",b:"</?",e:"/?>",r:0,c:[{cN:"title",b:"[^ /><]+"},b]}]}}(hljs);hljs.LANGUAGES.markdown=function(a){return{c:[{cN:"header",b:"^#{1,3}",e:"$"},{cN:"header",b:"^.+?\\n[=-]{2,}$"},{b:"<",e:">",sL:"xml",r:0},{cN:"bullet",b:"^([*+-]|(\\d+\\.))\\s+"},{cN:"strong",b:"[*_]{2}.+?[*_]{2}"},{cN:"emphasis",b:"\\*.+?\\*"},{cN:"emphasis",b:"_.+?_",r:0},{cN:"blockquote",b:"^>\\s+",e:"$"},{cN:"code",b:"`.+?`"},{cN:"code",b:"^ ",e:"$",r:0},{cN:"horizontal_rule",b:"^-{3,}",e:"$"},{b:"\\[.+?\\]\\(.+?\\)",rB:true,c:[{cN:"link_label",b:"\\[.+\\]"},{cN:"link_url",b:"\\(",e:"\\)",eB:true,eE:true}]}]}}(hljs);hljs.LANGUAGES.css=function(a){var b="[a-zA-Z-][a-zA-Z0-9_-]*";var c={cN:"function",b:b+"\\(",e:"\\)",c:["self",a.NM,a.ASM,a.QSM]};return{cI:true,i:"[=/|']",c:[a.CBLCLM,{cN:"id",b:"\\#[A-Za-z0-9_-]+"},{cN:"class",b:"\\.[A-Za-z0-9_-]+",r:0},{cN:"attr_selector",b:"\\[",e:"\\]",i:"$"},{cN:"pseudo",b:":(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\\\"\\']+"},{cN:"at_rule",b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{cN:"at_rule",b:"@",e:"[{;]",c:[{cN:"keyword",b:/\S+/},{b:/\s/,eW:true,eE:true,r:0,c:[c,a.ASM,a.QSM,a.NM]}]},{cN:"tag",b:b,r:0},{cN:"rules",b:"{",e:"}",i:"[^\\s]",r:0,c:[a.CBLCLM,{cN:"rule",b:"[^\\s]",rB:true,e:";",eW:true,c:[{cN:"attribute",b:"[A-Z\\_\\.\\-]+",e:":",eE:true,i:"[^\\s]",starts:{cN:"value",eW:true,eE:true,c:[c,a.NM,a.QSM,a.ASM,a.CBLCLM,{cN:"hexcolor",b:"#[0-9A-Fa-f]+"},{cN:"important",b:"!important"}]}}]}]}]}}(hljs);hljs.LANGUAGES.json=function(a){var e={literal:"true false null"};var d=[a.QSM,a.CNM];var c={cN:"value",e:",",eW:true,eE:true,c:d,k:e};var b={b:"{",e:"}",c:[{cN:"attribute",b:'\\s*"',e:'"\\s*:\\s*',eB:true,eE:true,c:[a.BE],i:"\\n",starts:c}],i:"\\S"};var f={b:"\\[",e:"\\]",c:[a.inherit(c,{cN:null})],i:"\\S"};d.splice(d.length,0,b,f);return{c:d,k:e,i:"\\S"}}(hljs);
1
+ var hljs=new function(){function k(v){return v.replace(/&/gm,"&amp;").replace(/</gm,"&lt;").replace(/>/gm,"&gt;")}function t(v){return v.nodeName.toLowerCase()}function i(w,x){var v=w&&w.exec(x);return v&&v.index==0}function d(v){return Array.prototype.map.call(v.childNodes,function(w){if(w.nodeType==3){return b.useBR?w.nodeValue.replace(/\n/g,""):w.nodeValue}if(t(w)=="br"){return"\n"}return d(w)}).join("")}function r(w){var v=(w.className+" "+(w.parentNode?w.parentNode.className:"")).split(/\s+/);v=v.map(function(x){return x.replace(/^language-/,"")});return v.filter(function(x){return j(x)||x=="no-highlight"})[0]}function o(x,y){var v={};for(var w in x){v[w]=x[w]}if(y){for(var w in y){v[w]=y[w]}}return v}function u(x){var v=[];(function w(y,z){for(var A=y.firstChild;A;A=A.nextSibling){if(A.nodeType==3){z+=A.nodeValue.length}else{if(t(A)=="br"){z+=1}else{if(A.nodeType==1){v.push({event:"start",offset:z,node:A});z=w(A,z);v.push({event:"stop",offset:z,node:A})}}}}return z})(x,0);return v}function q(w,y,C){var x=0;var F="";var z=[];function B(){if(!w.length||!y.length){return w.length?w:y}if(w[0].offset!=y[0].offset){return(w[0].offset<y[0].offset)?w:y}return y[0].event=="start"?w:y}function A(H){function G(I){return" "+I.nodeName+'="'+k(I.value)+'"'}F+="<"+t(H)+Array.prototype.map.call(H.attributes,G).join("")+">"}function E(G){F+="</"+t(G)+">"}function v(G){(G.event=="start"?A:E)(G.node)}while(w.length||y.length){var D=B();F+=k(C.substr(x,D[0].offset-x));x=D[0].offset;if(D==w){z.reverse().forEach(E);do{v(D.splice(0,1)[0]);D=B()}while(D==w&&D.length&&D[0].offset==x);z.reverse().forEach(A)}else{if(D[0].event=="start"){z.push(D[0].node)}else{z.pop()}v(D.splice(0,1)[0])}}return F+k(C.substr(x))}function m(y){function v(z){return(z&&z.source)||z}function w(A,z){return RegExp(v(A),"m"+(y.cI?"i":"")+(z?"g":""))}function x(D,C){if(D.compiled){return}D.compiled=true;D.k=D.k||D.bK;if(D.k){var z={};function E(G,F){if(y.cI){F=F.toLowerCase()}F.split(" ").forEach(function(H){var I=H.split("|");z[I[0]]=[G,I[1]?Number(I[1]):1]})}if(typeof D.k=="string"){E("keyword",D.k)}else{Object.keys(D.k).forEach(function(F){E(F,D.k[F])})}D.k=z}D.lR=w(D.l||/\b[A-Za-z0-9_]+\b/,true);if(C){if(D.bK){D.b=D.bK.split(" ").join("|")}if(!D.b){D.b=/\B|\b/}D.bR=w(D.b);if(!D.e&&!D.eW){D.e=/\B|\b/}if(D.e){D.eR=w(D.e)}D.tE=v(D.e)||"";if(D.eW&&C.tE){D.tE+=(D.e?"|":"")+C.tE}}if(D.i){D.iR=w(D.i)}if(D.r===undefined){D.r=1}if(!D.c){D.c=[]}var B=[];D.c.forEach(function(F){if(F.v){F.v.forEach(function(G){B.push(o(F,G))})}else{B.push(F=="self"?D:F)}});D.c=B;D.c.forEach(function(F){x(F,D)});if(D.starts){x(D.starts,C)}var A=D.c.map(function(F){return F.bK?"\\.?\\b("+F.b+")\\b\\.?":F.b}).concat([D.tE]).concat([D.i]).map(v).filter(Boolean);D.t=A.length?w(A.join("|"),true):{exec:function(F){return null}};D.continuation={}}x(y)}function c(S,L,J,R){function v(U,V){for(var T=0;T<V.c.length;T++){if(i(V.c[T].bR,U)){return V.c[T]}}}function z(U,T){if(i(U.eR,T)){return U}if(U.eW){return z(U.parent,T)}}function A(T,U){return !J&&i(U.iR,T)}function E(V,T){var U=M.cI?T[0].toLowerCase():T[0];return V.k.hasOwnProperty(U)&&V.k[U]}function w(Z,X,W,V){var T=V?"":b.classPrefix,U='<span class="'+T,Y=W?"":"</span>";U+=Z+'">';return U+X+Y}function N(){var U=k(C);if(!I.k){return U}var T="";var X=0;I.lR.lastIndex=0;var V=I.lR.exec(U);while(V){T+=U.substr(X,V.index-X);var W=E(I,V);if(W){H+=W[1];T+=w(W[0],V[0])}else{T+=V[0]}X=I.lR.lastIndex;V=I.lR.exec(U)}return T+U.substr(X)}function F(){if(I.sL&&!f[I.sL]){return k(C)}var T=I.sL?c(I.sL,C,true,I.continuation.top):g(C);if(I.r>0){H+=T.r}if(I.subLanguageMode=="continuous"){I.continuation.top=T.top}return w(T.language,T.value,false,true)}function Q(){return I.sL!==undefined?F():N()}function P(V,U){var T=V.cN?w(V.cN,"",true):"";if(V.rB){D+=T;C=""}else{if(V.eB){D+=k(U)+T;C=""}else{D+=T;C=U}}I=Object.create(V,{parent:{value:I}})}function G(T,X){C+=T;if(X===undefined){D+=Q();return 0}var V=v(X,I);if(V){D+=Q();P(V,X);return V.rB?0:X.length}var W=z(I,X);if(W){var U=I;if(!(U.rE||U.eE)){C+=X}D+=Q();do{if(I.cN){D+="</span>"}H+=I.r;I=I.parent}while(I!=W.parent);if(U.eE){D+=k(X)}C="";if(W.starts){P(W.starts,"")}return U.rE?0:X.length}if(A(X,I)){throw new Error('Illegal lexeme "'+X+'" for mode "'+(I.cN||"<unnamed>")+'"')}C+=X;return X.length||1}var M=j(S);if(!M){throw new Error('Unknown language: "'+S+'"')}m(M);var I=R||M;var D="";for(var K=I;K!=M;K=K.parent){if(K.cN){D=w(K.cN,D,true)}}var C="";var H=0;try{var B,y,x=0;while(true){I.t.lastIndex=x;B=I.t.exec(L);if(!B){break}y=G(L.substr(x,B.index-x),B[0]);x=B.index+y}G(L.substr(x));for(var K=I;K.parent;K=K.parent){if(K.cN){D+="</span>"}}return{r:H,value:D,language:S,top:I}}catch(O){if(O.message.indexOf("Illegal")!=-1){return{r:0,value:k(L)}}else{throw O}}}function g(y,x){x=x||b.languages||Object.keys(f);var v={r:0,value:k(y)};var w=v;x.forEach(function(z){if(!j(z)){return}var A=c(z,y,false);A.language=z;if(A.r>w.r){w=A}if(A.r>v.r){w=v;v=A}});if(w.language){v.second_best=w}return v}function h(v){if(b.tabReplace){v=v.replace(/^((<[^>]+>|\t)+)/gm,function(w,z,y,x){return z.replace(/\t/g,b.tabReplace)})}if(b.useBR){v=v.replace(/\n/g,"<br>")}return v}function p(z){var y=d(z);var A=r(z);if(A=="no-highlight"){return}var v=A?c(A,y,true):g(y);var w=u(z);if(w.length){var x=document.createElementNS("http://www.w3.org/1999/xhtml","pre");x.innerHTML=v.value;v.value=q(w,u(x),y)}v.value=h(v.value);z.innerHTML=v.value;z.className+=" hljs "+(!A&&v.language||"");z.result={language:v.language,re:v.r};if(v.second_best){z.second_best={language:v.second_best.language,re:v.second_best.r}}}var b={classPrefix:"hljs-",tabReplace:null,useBR:false,languages:undefined};function s(v){b=o(b,v)}function l(){if(l.called){return}l.called=true;var v=document.querySelectorAll("pre code");Array.prototype.forEach.call(v,p)}function a(){addEventListener("DOMContentLoaded",l,false);addEventListener("load",l,false)}var f={};var n={};function e(v,x){var w=f[v]=x(this);if(w.aliases){w.aliases.forEach(function(y){n[y]=v})}}function j(v){return f[v]||f[n[v]]}this.highlight=c;this.highlightAuto=g;this.fixMarkup=h;this.highlightBlock=p;this.configure=s;this.initHighlighting=l;this.initHighlightingOnLoad=a;this.registerLanguage=e;this.getLanguage=j;this.inherit=o;this.IR="[a-zA-Z][a-zA-Z0-9_]*";this.UIR="[a-zA-Z_][a-zA-Z0-9_]*";this.NR="\\b\\d+(\\.\\d+)?";this.CNR="(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)";this.BNR="\\b(0b[01]+)";this.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~";this.BE={b:"\\\\[\\s\\S]",r:0};this.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[this.BE]};this.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[this.BE]};this.CLCM={cN:"comment",b:"//",e:"$"};this.CBLCLM={cN:"comment",b:"/\\*",e:"\\*/"};this.HCM={cN:"comment",b:"#",e:"$"};this.NM={cN:"number",b:this.NR,r:0};this.CNM={cN:"number",b:this.CNR,r:0};this.BNM={cN:"number",b:this.BNR,r:0};this.REGEXP_MODE={cN:"regexp",b:/\//,e:/\/[gim]*/,i:/\n/,c:[this.BE,{b:/\[/,e:/\]/,r:0,c:[this.BE]}]};this.TM={cN:"title",b:this.IR,r:0};this.UTM={cN:"title",b:this.UIR,r:0}}();hljs.registerLanguage("javascript",function(a){return{aliases:["js"],k:{keyword:"in if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require"},c:[{cN:"pi",b:/^\s*('|")use strict('|")/,r:10},a.ASM,a.QSM,a.CLCM,a.CBLCLM,a.CNM,{b:"("+a.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[a.CLCM,a.CBLCLM,a.REGEXP_MODE,{b:/</,e:/>;/,r:0,sL:"xml"}],r:0},{cN:"function",bK:"function",e:/\{/,c:[a.inherit(a.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:"params",b:/\(/,e:/\)/,c:[a.CLCM,a.CBLCLM],i:/["'\(]/}],i:/\[|%/},{b:/\$[(.]/},{b:"\\."+a.IR,r:0}]}});hljs.registerLanguage("css",function(a){var b="[a-zA-Z-][a-zA-Z0-9_-]*";var c={cN:"function",b:b+"\\(",e:"\\)",c:["self",a.NM,a.ASM,a.QSM]};return{cI:true,i:"[=/|']",c:[a.CBLCLM,{cN:"id",b:"\\#[A-Za-z0-9_-]+"},{cN:"class",b:"\\.[A-Za-z0-9_-]+",r:0},{cN:"attr_selector",b:"\\[",e:"\\]",i:"$"},{cN:"pseudo",b:":(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\\\"\\']+"},{cN:"at_rule",b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{cN:"at_rule",b:"@",e:"[{;]",c:[{cN:"keyword",b:/\S+/},{b:/\s/,eW:true,eE:true,r:0,c:[c,a.ASM,a.QSM,a.NM]}]},{cN:"tag",b:b,r:0},{cN:"rules",b:"{",e:"}",i:"[^\\s]",r:0,c:[a.CBLCLM,{cN:"rule",b:"[^\\s]",rB:true,e:";",eW:true,c:[{cN:"attribute",b:"[A-Z\\_\\.\\-]+",e:":",eE:true,i:"[^\\s]",starts:{cN:"value",eW:true,eE:true,c:[c,a.NM,a.QSM,a.ASM,a.CBLCLM,{cN:"hexcolor",b:"#[0-9A-Fa-f]+"},{cN:"important",b:"!important"}]}}]}]}]}});hljs.registerLanguage("xml",function(a){var c="[A-Za-z0-9\\._:-]+";var d={b:/<\?(php)?(?!\w)/,e:/\?>/,sL:"php",subLanguageMode:"continuous"};var b={eW:true,i:/</,r:0,c:[d,{cN:"attribute",b:c,r:0},{b:"=",r:0,c:[{cN:"value",v:[{b:/"/,e:/"/},{b:/'/,e:/'/},{b:/[^\s\/>]+/}]}]}]};return{aliases:["html"],cI:true,c:[{cN:"doctype",b:"<!DOCTYPE",e:">",r:10,c:[{b:"\\[",e:"\\]"}]},{cN:"comment",b:"<!--",e:"-->",r:10},{cN:"cdata",b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{cN:"tag",b:"<style(?=\\s|>|$)",e:">",k:{title:"style"},c:[b],starts:{e:"</style>",rE:true,sL:"css"}},{cN:"tag",b:"<script(?=\\s|>|$)",e:">",k:{title:"script"},c:[b],starts:{e:"<\/script>",rE:true,sL:"javascript"}},{b:"<%",e:"%>",sL:"vbscript"},d,{cN:"pi",b:/<\?\w+/,e:/\?>/,r:10},{cN:"tag",b:"</?",e:"/?>",c:[{cN:"title",b:"[^ /><]+",r:0},b]}]}});hljs.registerLanguage("json",function(a){var e={literal:"true false null"};var d=[a.QSM,a.CNM];var c={cN:"value",e:",",eW:true,eE:true,c:d,k:e};var b={b:"{",e:"}",c:[{cN:"attribute",b:'\\s*"',e:'"\\s*:\\s*',eB:true,eE:true,c:[a.BE],i:"\\n",starts:c}],i:"\\S"};var f={b:"\\[",e:"\\]",c:[a.inherit(c,{cN:null})],i:"\\S"};d.splice(d.length,0,b,f);return{c:d,k:e,i:"\\S"}});
js/markdown/adminhtml/markdown.js CHANGED
@@ -239,8 +239,8 @@
239
  */
240
  function _highlightOpt(htmlString, options) {
241
  options = options || {};
242
- var _hlPre = options.hlPre || '<pre><code>',
243
- _hlPost = options.hlPost || '</code></pre>';
244
  return _hlPre + hljs.highlight('xml', htmlString).value + _hlPost;
245
  }
246
 
239
  */
240
  function _highlightOpt(htmlString, options) {
241
  options = options || {};
242
+ var _hlPre = options.hlPre || '<pre class="hljs">',
243
+ _hlPost = options.hlPost || '</pre>';
244
  return _hlPre + hljs.highlight('xml', htmlString).value + _hlPost;
245
  }
246
 
js/markdown/adminhtml/marked.js CHANGED
@@ -1,6 +1,6 @@
1
  /**
2
  * marked - a markdown parser
3
- * Copyright (c) 2011-2013, Christopher Jeffrey. (MIT Licensed)
4
  * https://github.com/chjj/marked
5
  */
6
 
@@ -18,8 +18,8 @@ var block = {
18
  heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
19
  nptable: noop,
20
  lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
21
- blockquote: /^( *>[^\n]+(\n[^\n]+)*\n*)+/,
22
- list: /^( *)(bull) [\s\S]+?(?:hr|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
23
  html: /^ *(?:comment|closed|closing) *(?:\n{2,}|\s*$)/,
24
  def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
25
  table: noop,
@@ -35,7 +35,12 @@ block.item = replace(block.item, 'gm')
35
 
36
  block.list = replace(block.list)
37
  (/bull/g, block.bullet)
38
- ('hr', /\n+(?=(?: *[-*_]){3,} *(?:\n+|$))/)
 
 
 
 
 
39
  ();
40
 
41
  block._tag = '(?!(?:'
@@ -141,7 +146,7 @@ Lexer.prototype.lex = function(src) {
141
  * Lexing
142
  */
143
 
144
- Lexer.prototype.token = function(src, top) {
145
  var src = src.replace(/^ +$/gm, '')
146
  , next
147
  , loose
@@ -264,7 +269,7 @@ Lexer.prototype.token = function(src, top) {
264
  // Pass `top` to keep the current
265
  // "toplevel" state. This is exactly
266
  // how markdown.pl works.
267
- this.token(cap, top);
268
 
269
  this.tokens.push({
270
  type: 'blockquote_end'
@@ -333,7 +338,7 @@ Lexer.prototype.token = function(src, top) {
333
  });
334
 
335
  // Recurse.
336
- this.token(item, false);
337
 
338
  this.tokens.push({
339
  type: 'list_item_end'
@@ -361,7 +366,7 @@ Lexer.prototype.token = function(src, top) {
361
  }
362
 
363
  // def
364
- if (top && (cap = this.rules.def.exec(src))) {
365
  src = src.substring(cap[0].length);
366
  this.tokens.links[cap[1].toLowerCase()] = {
367
  href: cap[2],
@@ -584,7 +589,7 @@ InlineLexer.prototype.output = function(src) {
584
  }
585
 
586
  // url (gfm)
587
- if (cap = this.rules.url.exec(src)) {
588
  src = src.substring(cap[0].length);
589
  text = escape(cap[1]);
590
  href = text;
@@ -594,6 +599,11 @@ InlineLexer.prototype.output = function(src) {
594
 
595
  // tag
596
  if (cap = this.rules.tag.exec(src)) {
 
 
 
 
 
597
  src = src.substring(cap[0].length);
598
  out += this.options.sanitize
599
  ? escape(cap[0])
@@ -604,10 +614,12 @@ InlineLexer.prototype.output = function(src) {
604
  // link
605
  if (cap = this.rules.link.exec(src)) {
606
  src = src.substring(cap[0].length);
 
607
  out += this.outputLink(cap, {
608
  href: cap[2],
609
  title: cap[3]
610
  });
 
611
  continue;
612
  }
613
 
@@ -622,7 +634,9 @@ InlineLexer.prototype.output = function(src) {
622
  src = cap[0].substring(1) + src;
623
  continue;
624
  }
 
625
  out += this.outputLink(cap, link);
 
626
  continue;
627
  }
628
 
@@ -785,7 +799,7 @@ Renderer.prototype.heading = function(text, level, raw) {
785
  };
786
 
787
  Renderer.prototype.hr = function() {
788
- return '<hr>\n';
789
  };
790
 
791
  Renderer.prototype.list = function(body, ordered) {
@@ -838,7 +852,7 @@ Renderer.prototype.codespan = function(text) {
838
  };
839
 
840
  Renderer.prototype.br = function() {
841
- return '<br>';
842
  };
843
 
844
  Renderer.prototype.del = function(text) {
@@ -871,7 +885,7 @@ Renderer.prototype.image = function(href, title, text) {
871
  if (title) {
872
  out += ' title="' + title + '"';
873
  }
874
- out += '>';
875
  return out;
876
  };
877
 
@@ -1218,7 +1232,8 @@ marked.defaults = {
1218
  langPrefix: 'lang-',
1219
  smartypants: false,
1220
  headerPrefix: '',
1221
- renderer: new Renderer
 
1222
  };
1223
 
1224
  /**
1
  /**
2
  * marked - a markdown parser
3
+ * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
4
  * https://github.com/chjj/marked
5
  */
6
 
18
  heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
19
  nptable: noop,
20
  lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
21
+ blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
22
+ list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
23
  html: /^ *(?:comment|closed|closing) *(?:\n{2,}|\s*$)/,
24
  def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
25
  table: noop,
35
 
36
  block.list = replace(block.list)
37
  (/bull/g, block.bullet)
38
+ ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
39
+ ('def', '\\n+(?=' + block.def.source + ')')
40
+ ();
41
+
42
+ block.blockquote = replace(block.blockquote)
43
+ ('def', block.def)
44
  ();
45
 
46
  block._tag = '(?!(?:'
146
  * Lexing
147
  */
148
 
149
+ Lexer.prototype.token = function(src, top, bq) {
150
  var src = src.replace(/^ +$/gm, '')
151
  , next
152
  , loose
269
  // Pass `top` to keep the current
270
  // "toplevel" state. This is exactly
271
  // how markdown.pl works.
272
+ this.token(cap, top, true);
273
 
274
  this.tokens.push({
275
  type: 'blockquote_end'
338
  });
339
 
340
  // Recurse.
341
+ this.token(item, false, bq);
342
 
343
  this.tokens.push({
344
  type: 'list_item_end'
366
  }
367
 
368
  // def
369
+ if ((!bq && top) && (cap = this.rules.def.exec(src))) {
370
  src = src.substring(cap[0].length);
371
  this.tokens.links[cap[1].toLowerCase()] = {
372
  href: cap[2],
589
  }
590
 
591
  // url (gfm)
592
+ if (!this.inLink && (cap = this.rules.url.exec(src))) {
593
  src = src.substring(cap[0].length);
594
  text = escape(cap[1]);
595
  href = text;
599
 
600
  // tag
601
  if (cap = this.rules.tag.exec(src)) {
602
+ if (!this.inLink && /^<a /i.test(cap[0])) {
603
+ this.inLink = true;
604
+ } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
605
+ this.inLink = false;
606
+ }
607
  src = src.substring(cap[0].length);
608
  out += this.options.sanitize
609
  ? escape(cap[0])
614
  // link
615
  if (cap = this.rules.link.exec(src)) {
616
  src = src.substring(cap[0].length);
617
+ this.inLink = true;
618
  out += this.outputLink(cap, {
619
  href: cap[2],
620
  title: cap[3]
621
  });
622
+ this.inLink = false;
623
  continue;
624
  }
625
 
634
  src = cap[0].substring(1) + src;
635
  continue;
636
  }
637
+ this.inLink = true;
638
  out += this.outputLink(cap, link);
639
+ this.inLink = false;
640
  continue;
641
  }
642
 
799
  };
800
 
801
  Renderer.prototype.hr = function() {
802
+ return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
803
  };
804
 
805
  Renderer.prototype.list = function(body, ordered) {
852
  };
853
 
854
  Renderer.prototype.br = function() {
855
+ return this.options.xhtml ? '<br/>' : '<br>';
856
  };
857
 
858
  Renderer.prototype.del = function(text) {
885
  if (title) {
886
  out += ' title="' + title + '"';
887
  }
888
+ out += this.options.xhtml ? '/>' : '>';
889
  return out;
890
  };
891
 
1232
  langPrefix: 'lang-',
1233
  smartypants: false,
1234
  headerPrefix: '',
1235
+ renderer: new Renderer,
1236
+ xhtml: false
1237
  };
1238
 
1239
  /**
js/markdown/adminhtml/reMarked.js CHANGED
@@ -41,7 +41,7 @@ reMarked = function(opts) {
41
  // eg: "\n<tag>some content</tag>"
42
  block1c: "dt dd caption legend figcaption output",
43
  // eg: "\n\n<tag>some content</tag>"
44
- block2c: "canvas audio video iframe",
45
  },
46
  tag_remap: { // remap of variants or deprecated tags to internal classes
47
  "i": "em",
@@ -49,6 +49,13 @@ reMarked = function(opts) {
49
  }
50
  };
51
 
 
 
 
 
 
 
 
52
  extend(cfg, opts);
53
 
54
  function extend(a, b) {
@@ -217,7 +224,7 @@ reMarked = function(opts) {
217
 
218
  while (i++ < len) {
219
  hcell = document.createElement("th");
220
- hcell.textContent = cfg.col_pre + i;
221
  hrow.appendChild(hcell);
222
  }
223
  }
@@ -241,7 +248,7 @@ reMarked = function(opts) {
241
  continue;
242
 
243
  // empty whitespace handling
244
- if (name == "txt" && /^\s+$/.test(n.textContent)) {
245
  // ignore if first or last child (trim)
246
  if (i == 0 || i == this.e.childNodes.length - 1)
247
  continue;
@@ -359,7 +366,10 @@ reMarked = function(opts) {
359
  lib.inl = lib.tag.extend({
360
  rend: function()
361
  {
362
- return wrap.call(this, this.rendK(), this.wrap);
 
 
 
363
  }
364
  });
365
 
@@ -569,7 +579,7 @@ reMarked = function(opts) {
569
  lib.tfoot = cfg.gfm_tbls ? lib.cblk.extend() : lib.ctblk.extend();
570
 
571
  lib.tr = cfg.gfm_tbls ? lib.cblk.extend({
572
- wrapK: [cfg.tbl_edges ? "| " : "", cfg.tbl_edges ? " |" : ""],
573
  }) : lib.ctblk.extend();
574
 
575
  lib.th = cfg.gfm_tbls ? lib.inl.extend({
@@ -609,9 +619,11 @@ reMarked = function(opts) {
609
  cols[this.i] = {w: null, a: ""}; // width and alignment
610
  var col = cols[this.i];
611
  col.w = Math.max(col.w || 0, this.guts.length);
612
- if (this.e.align)
613
- col.a = this.e.align;
614
- },
 
 
615
  }) : lib.ctblk.extend();
616
 
617
  lib.td = lib.th.extend();
41
  // eg: "\n<tag>some content</tag>"
42
  block1c: "dt dd caption legend figcaption output",
43
  // eg: "\n\n<tag>some content</tag>"
44
+ block2c: "canvas audio video iframe"
45
  },
46
  tag_remap: { // remap of variants or deprecated tags to internal classes
47
  "i": "em",
49
  }
50
  };
51
 
52
+ // detect and tweak some stuff for IE 7 & 8
53
+ // http://www.pinlady.net/PluginDetect/IE/
54
+ var isIE = eval("/*@cc_on!@*/!1"),
55
+ docMode = document.documentMode,
56
+ ieLt9 = isIE && (!docMode || docMode < 9),
57
+ textContProp = ieLt9 ? "innerText" : "textContent";
58
+
59
  extend(cfg, opts);
60
 
61
  function extend(a, b) {
224
 
225
  while (i++ < len) {
226
  hcell = document.createElement("th");
227
+ hcell[textContProp] = cfg.col_pre + i;
228
  hrow.appendChild(hcell);
229
  }
230
  }
248
  continue;
249
 
250
  // empty whitespace handling
251
+ if (name == "txt" && !nodeName(this.e).match(inlRe) && /^\s+$/.test(n[textContProp])) {
252
  // ignore if first or last child (trim)
253
  if (i == 0 || i == this.e.childNodes.length - 1)
254
  continue;
366
  lib.inl = lib.tag.extend({
367
  rend: function()
368
  {
369
+ var kids = this.rendK(),
370
+ parts = kids.match(/^([ \t]*)(.*?)([ \t]*)$/) || [kids, "", kids, ""];
371
+
372
+ return parts[1] + wrap.call(this, parts[2], this.wrap) + parts[3];
373
  }
374
  });
375
 
579
  lib.tfoot = cfg.gfm_tbls ? lib.cblk.extend() : lib.ctblk.extend();
580
 
581
  lib.tr = cfg.gfm_tbls ? lib.cblk.extend({
582
+ wrapK: [cfg.tbl_edges ? "| " : "", cfg.tbl_edges ? " |" : ""]
583
  }) : lib.ctblk.extend();
584
 
585
  lib.th = cfg.gfm_tbls ? lib.inl.extend({
619
  cols[this.i] = {w: null, a: ""}; // width and alignment
620
  var col = cols[this.i];
621
  col.w = Math.max(col.w || 0, this.guts.length);
622
+
623
+ var align = this.e.align || this.e.style.textAlign;
624
+ if (align)
625
+ col.a = align;
626
+ }
627
  }) : lib.ctblk.extend();
628
 
629
  lib.td = lib.th.extend();
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>markdown</name>
4
- <version>2.1.0</version>
5
  <stability>stable</stability>
6
  <license uri="https://github.com/SchumacherFM/Magento-Markdown">BSD-3-Clause</license>
7
  <channel>community</channel>
@@ -23,27 +23,17 @@ format, then convert it to structurally valid XHTML (or HTML).&#xD;
23
  For further information please see the github repository: https://github.com/SchumacherFM/Magento-Markdown</description>
24
  <notes>https://github.com/SchumacherFM/Magento-Markdown&#xD;
25
  &#xD;
26
- Tons of new features! See the github pages for the version history.&#xD;
27
- &#xD;
28
- - Enable/Disable markdown rendering in email template. (by Paul Hachmang)&#xD;
29
- - Update marked.js&#xD;
30
- - Bug fix: HTML Preview code markup&#xD;
31
- - Bug fix: HTML preview button should be removed&#xD;
32
- - Bug fix: When there is no content, the Preview and Live Preview tabs show incorrect request&#xD;
33
- - Feature: Feedback and ideas after being used in the wild.&#xD;
34
- - Feature: Settings to enable/disable Preview, Live Preview and - - HTML Preview tabs (See Permissions -&gt; Roles)&#xD;
35
- - Merged Pull Request More native-like styling&#xD;
36
- - Add new option for styling of the backend textarea field&#xD;
37
- - Major changes in the backend Github Issue #18&#xD;
38
- - Renaming of buttons&#xD;
39
- - EpicEditor disabled by default&#xD;
40
- - Better style for the textarea field with outer glow&#xD;
41
- - Besides image Drag'n'Drop added file upload and copy and paste for images&#xD;
42
- - Enhanced preview mode</notes>
43
  <authors><author><name>Cyrill Schumacher</name><user>cyrills</user><email>cyrill@schumacher.fm</email></author></authors>
44
- <date>2014-01-20</date>
45
- <time>10:15:16</time>
46
- <contents><target name="magecommunity"><dir name="SchumacherFM"><dir name="Markdown"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Form"><dir name="Renderer"><dir name="Fieldset"><dir name="Element"><file name="Textarea.php" hash="c79e09389749905c52ca2374fcf1d213"/></dir></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="503c6a4a6853ddd2eace0fce09e27599"/></dir><dir name="Model"><dir name="Editor"><file name="Observer.php" hash="0683e4ed2e97c9efbabea6aad92c1f44"/></dir><dir name="Markdown"><file name="Abstract.php" hash="da5de08b7bf3361b345ad1f84ab728d3"/><file name="Interface.php" hash="05df0ecf7a7c6bc09481f213cdc98255"/><file name="Observer.php" hash="0bb81d4be39ec4184f76585672c34f60"/><file name="Render.php" hash="df0addc5cfbd8d805c0b8a1661bbd496"/></dir><dir name="Michelf"><dir name="Markdown"><file name="Extra.php" hash="aaee7a66298007f8c003ba96d53deab9"/><file name="TmpImpl.php" hash="5ec68c28519d8ecb4a43324f5f197a80"/></dir><file name="Markdown.php" hash="76219ba32f37cad14755c8613b390c83"/></dir><dir name="Observer"><dir name="Adminhtml"><file name="Block.php" hash="a48a2b1e784f889666cad03fbd5f5d09"/><file name="EpicEditor.php" hash="f67f8e07be8bb8a403411432eb142ad7"/><file name="LayoutUpdate.php" hash="a01b599ebed057f9a99266cb91441a99"/></dir></dir><dir name="Options"><dir name="Styles"><file name="AbstractStyles.php" hash="225140811534132c8d39878e6fe3f4b1"/><file name="HighLightStyles.php" hash="62c9e1fb6e9a979957683d83047a5253"/><file name="MarkdownStyles.php" hash="ee0d8d1385c5bac1b3f0c23f9b11eeef"/><file name="TextareaStyles.php" hash="dab854923f1782b0fe2be2fc4e5fe6e9"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="MarkdownController.php" hash="e4a2c270b391a9ea62674862ccbbe43f"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="26a4e5e7c1ce03bdf2157b53cecc647a"/><file name="config.xml" hash="6c563b8c393eb5d7ed349af0fd4c36a1"/><file name="system.xml" hash="8700e0eeba776a24a6b174936c5c5f05"/></dir><dir name="sql"><dir name="markdown_setup"><file name="install-1.0.0.php" hash="0fe5a9650dd224f691caf585a34c52e6"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="markdown.xml" hash="a57113191d75eb358a377c5f3308cb8f"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="SchumacherFM_Markdown.xml" hash="db8742448ef30a5af1bd60865f429c26"/></dir></target><target name="magelocale"><dir><dir name="de_DE"><file name="SchumacherFM_Markdown.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir><dir name="en_US"><file name="SchumacherFM_Markdown.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir></target><target name="mage"><dir name="js"><dir name="markdown"><dir><dir name="adminhtml"><file name="beautify-html.js" hash="5890ac48ec4f2155535e9efb8cbd87b8"/><file name="epiceditor.js" hash="5c29b9d4d25d897ba63e9109ba6e3564"/><file name="filereader.js" hash="52655dadec0f8660c761c61c6af93192"/><file name="highlight.pack.js" hash="8bb5ed52b512c8e76fcd929e388dda9e"/><file name="markdown.js" hash="5fa9439fa6cdaa2a71972488c73d843a"/><file name="marked.js" hash="418a990721a4fee11a87224c360385b9"/><file name="reMarked.js" hash="1b30fdb506ab82fb9ea30c1f28415603"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="markdown"><dir><dir name="highlight"><dir name="styles"><file name="arta.css" hash="beb43641c62b1e3445356a5325e8f347"/><file name="ascetic.css" hash="bb82a488454ab59ce09f87e37697eab6"/><file name="brown_paper.css" hash="20a30e6e72a0b0c8acb58a0b15523a18"/><file name="dark.css" hash="e67d201e74c39d665da5664d34f1db6b"/><file name="default.css" hash="1f0e251735747f01ff67f19bb5bb7827"/><file name="docco.css" hash="2017983407b0a64300761bebb17b136d"/><file name="far.css" hash="122a2f779ce770e21ed2ce622c7faadc"/><file name="foundation.css" hash="4a2e6ec32a44043f27ae50412dc297a2"/><file name="github.css" hash="a80e55756ce38aab87f54799ca6d23fc"/><file name="googlecode.css" hash="a692819d8384a019dd6b85d45099e39f"/><file name="idea.css" hash="cad5036ff7da4f7009278b0ddc18dc05"/><file name="ir_black.css" hash="52c475b3950fec315bff3a1e7c80762b"/><file name="magula.css" hash="5423c79d91364aec7879eaf9c5117a4c"/><file name="mono-blue.css" hash="3b1df3173738c43737f195d20efe782d"/><file name="monokai.css" hash="d072e03d256f572a13f0658502dc0539"/><file name="monokai_sublime.css" hash="513121ca0ea4439dd8da671d258f7f6d"/><file name="obsidian.css" hash="880d6adf366e109c81a485ff095e30b1"/><file name="pojoaque.css" hash="c384dc304230dced8bd94e5e7afd5d78"/><file name="railscasts.css" hash="d88f7026d20d32c84bb1aa527f77852f"/><file name="rainbow.css" hash="d394d934b0bb7908db78f0e08f268ade"/><file name="school_book.css" hash="c716a7d7609f08b4c07a5cbee107a10b"/><file name="solarized_dark.css" hash="845eb33f2a4001645b340642c8cd386f"/><file name="solarized_light.css" hash="bb3f05eb8a3a3d4b6b2cfeb89352dadf"/><file name="sunburst.css" hash="0f85672ebff47a8b9201accf75da86d5"/><file name="tomorrow-night-blue.css" hash="bd717c6881d1fc4eabcd3591482761ae"/><file name="tomorrow-night-bright.css" hash="f4c2a42e479b65f616edcc39ea6f8f6e"/><file name="tomorrow-night-eighties.css" hash="d95cf4207791e84a97ffae83638f1e45"/><file name="tomorrow-night.css" hash="4067182039737bed4dfed1be396cdb68"/><file name="tomorrow.css" hash="bd04363ff97befcf2b0587f6fa4e3498"/><file name="vs.css" hash="54d3a346139a9f45bc0459ec4d1f571c"/><file name="xcode.css" hash="d93e64c1764043da5f372684c60fb2eb"/><file name="zenburn.css" hash="1603fc204a60dcb428f2c535fb6299ad"/></dir></dir><dir name="styles"><file name="github.css" hash="5641b80d5428d7e9294cb558038a00c9"/><file name="jasonm23-dark.css" hash="e5de83b1b46f743d43d0f9c85a5adbe3"/><file name="jasonm23-foghorn.css" hash="beda4802db758a6fbbf7ff8bdae4d784"/><file name="jasonm23-markdown.css" hash="e1c8a2ccd835d3d5a324ca37b3ea0bc6"/><file name="jasonm23-swiss.css" hash="80a7984e5f9421acf06dd4417f13945e"/><file name="kevinburke.css" hash="5270f06fbb5038563f58594d992b64aa"/><file name="markedapp-byword.css" hash="7bd9de1e004ef39d6cf3290848615227"/><file name="thomasf-solarizedcssdark.css" hash="e84d2edb9d84b3ce179bba087bf15418"/><file name="thomasf-solarizedcsslight.css" hash="19833766330728741c7a8047445a23ff"/></dir></dir><file name="mdm.css" hash="cf5084a6c25bb4eb11962a29eacf209b"/></dir><dir name="epiceditor"><dir><dir name="themes"><dir name="base"><file name="epiceditor.css" hash="72d9ff0a1296bf28b815d696129bb086"/></dir><dir name="editor"><file name="epic-dark.css" hash="872c9540cedbf5cdf69ca2b0accb3cef"/><file name="epic-light.css" hash="68d9441f297c73180dd83545ee70117a"/></dir><dir name="preview"><file name="bartik.css" hash="a8a3efffd02c3acf6e3dc62ee5e92936"/><file name="github.css" hash="6085b7303f9a3c3cc3d2d8039487bf5d"/><file name="githubNxcode.css" hash="c5639fe4cd88f0416c15892f2f9b90b2"/><file name="preview-dark.css" hash="660b85886b844d592e2c722937b438e1"/></dir></dir></dir></dir></dir></dir></dir></target></contents>
47
  <compatible/>
48
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
49
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>markdown</name>
4
+ <version>2.1.1</version>
5
  <stability>stable</stability>
6
  <license uri="https://github.com/SchumacherFM/Magento-Markdown">BSD-3-Clause</license>
7
  <channel>community</channel>
23
  For further information please see the github repository: https://github.com/SchumacherFM/Magento-Markdown</description>
24
  <notes>https://github.com/SchumacherFM/Magento-Markdown&#xD;
25
  &#xD;
26
+ - Update EpicEditor&#xD;
27
+ - Update marked.js to version v0.3.2&#xD;
28
+ - Update reMarked.js to latest version which fixes a lot of bugs&#xD;
29
+ - Tiny update of beautify-html.js (AMD)&#xD;
30
+ - Update highlight.js to version 8.0 http://highlightjs.org; new themes&#xD;
31
+ - Remove shortened array syntax (PHP 5.4 feature). Thanks Dan Gibbs!&#xD;
32
+ - Bug fix: Hide markdown in email editor when it is disabled. Thanks Paul Hachmang!</notes>
 
 
 
 
 
 
 
 
 
 
33
  <authors><author><name>Cyrill Schumacher</name><user>cyrills</user><email>cyrill@schumacher.fm</email></author></authors>
34
+ <date>2014-03-16</date>
35
+ <time>06:21:21</time>
36
+ <contents><target name="magecommunity"><dir name="SchumacherFM"><dir name="Markdown"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Form"><dir name="Renderer"><dir name="Fieldset"><dir name="Element"><file name="Textarea.php" hash="c79e09389749905c52ca2374fcf1d213"/></dir></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="6cfc6c31f6d2ca84497a28a339bf366a"/></dir><dir name="Model"><dir name="Editor"><file name="Observer.php" hash="0683e4ed2e97c9efbabea6aad92c1f44"/></dir><dir name="Markdown"><file name="Abstract.php" hash="da5de08b7bf3361b345ad1f84ab728d3"/><file name="Interface.php" hash="05df0ecf7a7c6bc09481f213cdc98255"/><file name="Observer.php" hash="0bb81d4be39ec4184f76585672c34f60"/><file name="Render.php" hash="df0addc5cfbd8d805c0b8a1661bbd496"/></dir><dir name="Michelf"><dir name="Markdown"><file name="Extra.php" hash="aaee7a66298007f8c003ba96d53deab9"/><file name="TmpImpl.php" hash="5ec68c28519d8ecb4a43324f5f197a80"/></dir><file name="Markdown.php" hash="76219ba32f37cad14755c8613b390c83"/></dir><dir name="Observer"><dir name="Adminhtml"><file name="Block.php" hash="a48a2b1e784f889666cad03fbd5f5d09"/><file name="EpicEditor.php" hash="f67f8e07be8bb8a403411432eb142ad7"/><file name="LayoutUpdate.php" hash="a01b599ebed057f9a99266cb91441a99"/></dir></dir><dir name="Options"><dir name="Styles"><file name="AbstractStyles.php" hash="564ac442d4bb5b9e3716b4e8a13dd333"/><file name="HighLightStyles.php" hash="62c9e1fb6e9a979957683d83047a5253"/><file name="MarkdownStyles.php" hash="ee0d8d1385c5bac1b3f0c23f9b11eeef"/><file name="TextareaStyles.php" hash="dab854923f1782b0fe2be2fc4e5fe6e9"/></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="MarkdownController.php" hash="e4a2c270b391a9ea62674862ccbbe43f"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="26a4e5e7c1ce03bdf2157b53cecc647a"/><file name="config.xml" hash="6c563b8c393eb5d7ed349af0fd4c36a1"/><file name="system.xml" hash="8700e0eeba776a24a6b174936c5c5f05"/></dir><dir name="sql"><dir name="markdown_setup"><file name="install-1.0.0.php" hash="0fe5a9650dd224f691caf585a34c52e6"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="markdown.xml" hash="a57113191d75eb358a377c5f3308cb8f"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="SchumacherFM_Markdown.xml" hash="db8742448ef30a5af1bd60865f429c26"/></dir></target><target name="magelocale"><dir><dir name="de_DE"><file name="SchumacherFM_Markdown.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir><dir name="en_US"><file name="SchumacherFM_Markdown.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir></target><target name="mage"><dir name="js"><dir name="markdown"><dir><dir name="adminhtml"><file name="beautify-html.js" hash="d1da287a706e6a278bf99508bd2d4fb5"/><file name="epiceditor.js" hash="5826623200340ef9aef6dedb3e050da6"/><file name="filereader.js" hash="52655dadec0f8660c761c61c6af93192"/><file name="highlight.pack.js" hash="117f4bbdfbc7baa19b9ac21a638452d4"/><file name="markdown.js" hash="94aa9b4b064bcf469ec08a92cdcf9c61"/><file name="marked.js" hash="50d2f75e06f769df183376cf0deead28"/><file name="reMarked.js" hash="51c7d6c3051ac065b2611ccb263c7c39"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="markdown"><dir><dir name="highlight"><dir name="styles"><file name="arta.css" hash="55d1f2275a31e1a5fb4f8382ba5c35a3"/><file name="ascetic.css" hash="c84dc3d3c3ab793c994502bc2aac1d44"/><file name="atelier-dune.dark.css" hash="d89fd3577154d523f13efbe8321a3edb"/><file name="atelier-dune.light.css" hash="f4c07fc969f9d300db19682e52c8fd94"/><file name="atelier-forest.dark.css" hash="94888bb30aa9e6d67a6379f6a9de8baa"/><file name="atelier-forest.light.css" hash="e4ce52df9fdb748948e1aacfcc026886"/><file name="atelier-heath.dark.css" hash="da6651808014d90c4c43e6a15a1bfb8f"/><file name="atelier-heath.light.css" hash="f4f639f6fb13b8af01704e5fe1e9b8d0"/><file name="atelier-lakeside.dark.css" hash="f3cfe2bc304e8c17c17c0d1b4a973eee"/><file name="atelier-lakeside.light.css" hash="c8983046babd713a8e170f62f0f3bcbf"/><file name="atelier-seaside.dark.css" hash="c47d6cdb232801628bd7e4e7b7886445"/><file name="atelier-seaside.light.css" hash="9c96918f7200ee04e2fc3a9f56c6fbe6"/><file name="brown_paper.css" hash="46bb2be9a4317c50614ea88fb6ce7fbf"/><file name="dark.css" hash="f3bd0ceb1ba5a60e05dc0c8135008f04"/><file name="default.css" hash="9140bf0a0fac22c579ad83d0e5acf348"/><file name="docco.css" hash="add551c85b2e7c8dcdfb15f1df5e0b3a"/><file name="far.css" hash="a781caedf323bd02596402fdff65cb22"/><file name="foundation.css" hash="c93165b50e87d50f2e21d386c432dc8b"/><file name="github.css" hash="fa16e0a6ef03585e48ad6f5e07e2584c"/><file name="googlecode.css" hash="045da96294110e9d04c4e0ca47424b25"/><file name="idea.css" hash="d2e21cb52d080c7e2059905127a94a0b"/><file name="ir_black.css" hash="3b7f32704144abf008924333c5166215"/><file name="magula.css" hash="e01664d230ee102fd89da3a21525b2c3"/><file name="mono-blue.css" hash="6fa5de189b2c64d2a80cf38968690e34"/><file name="monokai.css" hash="fdecf8f663a1b9a5b7b3e9db9af795e9"/><file name="monokai_sublime.css" hash="6e301ca05e5b5619df3d4d85d74750e3"/><file name="obsidian.css" hash="6b1cffd0d31a6f05136b6a79b5c19ab8"/><file name="paraiso.dark.css" hash="7fd28b228a73c183d8ad1cbc211edca3"/><file name="paraiso.light.css" hash="7ebb1da7d91d279c13527c3f03757276"/><file name="pojoaque.css" hash="087869a31183e62c556a5775972c1917"/><file name="railscasts.css" hash="c3048b050e7e1dfef7634cc0997418e5"/><file name="rainbow.css" hash="8eed0926da78d79806478e439c1bd82a"/><file name="school_book.css" hash="76f396c36ee3678196999c0cacddab82"/><file name="solarized_dark.css" hash="75909957493d08f20c44a64713dabd8f"/><file name="solarized_light.css" hash="d571d49e99226e57e129f7e80ec34312"/><file name="sunburst.css" hash="4fe7a78df80b115587b461f0231bdadc"/><file name="tomorrow-night-blue.css" hash="865d0f92850b80e26ff15bb186d2e6e5"/><file name="tomorrow-night-bright.css" hash="5bcc79edf3f3e0ee551b86771abf4ad2"/><file name="tomorrow-night-eighties.css" hash="c65a648ce3fced7770a5344bd68e4799"/><file name="tomorrow-night.css" hash="66cc8cf204f5a3fb84e152fde1d3c5d6"/><file name="tomorrow.css" hash="8cec6a4b7b990a66dc1a1604e16a7526"/><file name="vs.css" hash="6b1a2ccdde46317289c2750806fc50c6"/><file name="xcode.css" hash="15a72f05e35e1f2f1ff36e3749476228"/><file name="zenburn.css" hash="062469a0cfa12f87af10eb744ab4e593"/></dir></dir><dir name="styles"><file name="github.css" hash="5641b80d5428d7e9294cb558038a00c9"/><file name="jasonm23-dark.css" hash="e5de83b1b46f743d43d0f9c85a5adbe3"/><file name="jasonm23-foghorn.css" hash="beda4802db758a6fbbf7ff8bdae4d784"/><file name="jasonm23-markdown.css" hash="e1c8a2ccd835d3d5a324ca37b3ea0bc6"/><file name="jasonm23-swiss.css" hash="80a7984e5f9421acf06dd4417f13945e"/><file name="kevinburke.css" hash="5270f06fbb5038563f58594d992b64aa"/><file name="markedapp-byword.css" hash="7bd9de1e004ef39d6cf3290848615227"/><file name="thomasf-solarizedcssdark.css" hash="e84d2edb9d84b3ce179bba087bf15418"/><file name="thomasf-solarizedcsslight.css" hash="19833766330728741c7a8047445a23ff"/></dir></dir><file name="mdm.css" hash="cf5084a6c25bb4eb11962a29eacf209b"/></dir><dir name="epiceditor"><dir><dir name="themes"><dir name="base"><file name="epiceditor.css" hash="72d9ff0a1296bf28b815d696129bb086"/></dir><dir name="editor"><file name="epic-dark.css" hash="872c9540cedbf5cdf69ca2b0accb3cef"/><file name="epic-light.css" hash="68d9441f297c73180dd83545ee70117a"/></dir><dir name="preview"><file name="bartik.css" hash="a8a3efffd02c3acf6e3dc62ee5e92936"/><file name="github.css" hash="6085b7303f9a3c3cc3d2d8039487bf5d"/><file name="githubNxcode.css" hash="c5639fe4cd88f0416c15892f2f9b90b2"/><file name="preview-dark.css" hash="660b85886b844d592e2c722937b438e1"/></dir></dir></dir></dir></dir></dir></dir></target></contents>
37
  <compatible/>
38
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
39
  </package>
skin/adminhtml/default/default/markdown/highlight/styles/arta.css CHANGED
@@ -3,158 +3,158 @@ Date: 17.V.2011
3
  Author: pumbur <pumbur@pumbur.net>
4
  */
5
 
6
- pre code
7
  {
8
  display: block; padding: 0.5em;
9
  background: #222;
10
  }
11
 
12
- pre .profile .header *,
13
- pre .ini .title,
14
- pre .nginx .title
15
  {
16
  color: #fff;
17
  }
18
 
19
- pre .comment,
20
- pre .javadoc,
21
- pre .preprocessor,
22
- pre .preprocessor .title,
23
- pre .pragma,
24
- pre .shebang,
25
- pre .profile .summary,
26
- pre .diff,
27
- pre .pi,
28
- pre .doctype,
29
- pre .tag,
30
- pre .template_comment,
31
- pre .css .rules,
32
- pre .tex .special
33
  {
34
  color: #444;
35
  }
36
 
37
- pre .string,
38
- pre .symbol,
39
- pre .diff .change,
40
- pre .regexp,
41
- pre .xml .attribute,
42
- pre .smalltalk .char,
43
- pre .xml .value,
44
- pre .ini .value,
45
- pre .clojure .attribute,
46
- pre .coffeescript .attribute
47
  {
48
  color: #ffcc33;
49
  }
50
 
51
- pre .number,
52
- pre .addition
53
  {
54
  color: #00cc66;
55
  }
56
 
57
- pre .built_in,
58
- pre .literal,
59
- pre .vhdl .typename,
60
- pre .go .constant,
61
- pre .go .typename,
62
- pre .ini .keyword,
63
- pre .lua .title,
64
- pre .perl .variable,
65
- pre .php .variable,
66
- pre .mel .variable,
67
- pre .django .variable,
68
- pre .css .funtion,
69
- pre .smalltalk .method,
70
- pre .hexcolor,
71
- pre .important,
72
- pre .flow,
73
- pre .inheritance,
74
- pre .parser3 .variable
75
  {
76
  color: #32AAEE;
77
  }
78
 
79
- pre .keyword,
80
- pre .tag .title,
81
- pre .css .tag,
82
- pre .css .class,
83
- pre .css .id,
84
- pre .css .pseudo,
85
- pre .css .attr_selector,
86
- pre .lisp .title,
87
- pre .clojure .built_in,
88
- pre .winutils,
89
- pre .tex .command,
90
- pre .request,
91
- pre .status
92
  {
93
  color: #6644aa;
94
  }
95
 
96
- pre .title,
97
- pre .ruby .constant,
98
- pre .vala .constant,
99
- pre .parent,
100
- pre .deletion,
101
- pre .template_tag,
102
- pre .css .keyword,
103
- pre .objectivec .class .id,
104
- pre .smalltalk .class,
105
- pre .lisp .keyword,
106
- pre .apache .tag,
107
- pre .nginx .variable,
108
- pre .envvar,
109
- pre .bash .variable,
110
- pre .go .built_in,
111
- pre .vbscript .built_in,
112
- pre .lua .built_in,
113
- pre .rsl .built_in,
114
- pre .tail,
115
- pre .avrasm .label,
116
- pre .tex .formula,
117
- pre .tex .formula *
118
  {
119
  color: #bb1166;
120
  }
121
 
122
- pre .yardoctag,
123
- pre .phpdoc,
124
- pre .profile .header,
125
- pre .ini .title,
126
- pre .apache .tag,
127
- pre .parser3 .title
128
  {
129
  font-weight: bold;
130
  }
131
 
132
- pre .coffeescript .javascript,
133
- pre .javascript .xml,
134
- pre .tex .formula,
135
- pre .xml .javascript,
136
- pre .xml .vbscript,
137
- pre .xml .css,
138
- pre .xml .cdata
139
  {
140
  opacity: 0.6;
141
  }
142
 
143
- pre code,
144
- pre .javascript,
145
- pre .css,
146
- pre .xml,
147
- pre .subst,
148
- pre .diff .chunk,
149
- pre .css .value,
150
- pre .css .attribute,
151
- pre .lisp .string,
152
- pre .lisp .number,
153
- pre .tail .params,
154
- pre .container,
155
- pre .haskell *,
156
- pre .erlang *,
157
- pre .erlang_repl *
158
  {
159
  color: #aaa;
160
  }
3
  Author: pumbur <pumbur@pumbur.net>
4
  */
5
 
6
+ .hljs
7
  {
8
  display: block; padding: 0.5em;
9
  background: #222;
10
  }
11
 
12
+ .profile .hljs-header *,
13
+ .ini .hljs-title,
14
+ .nginx .hljs-title
15
  {
16
  color: #fff;
17
  }
18
 
19
+ .hljs-comment,
20
+ .hljs-javadoc,
21
+ .hljs-preprocessor,
22
+ .hljs-preprocessor .hljs-title,
23
+ .hljs-pragma,
24
+ .hljs-shebang,
25
+ .profile .hljs-summary,
26
+ .diff,
27
+ .hljs-pi,
28
+ .hljs-doctype,
29
+ .hljs-tag,
30
+ .hljs-template_comment,
31
+ .css .hljs-rules,
32
+ .tex .hljs-special
33
  {
34
  color: #444;
35
  }
36
 
37
+ .hljs-string,
38
+ .hljs-symbol,
39
+ .diff .hljs-change,
40
+ .hljs-regexp,
41
+ .xml .hljs-attribute,
42
+ .smalltalk .hljs-char,
43
+ .xml .hljs-value,
44
+ .ini .hljs-value,
45
+ .clojure .hljs-attribute,
46
+ .coffeescript .hljs-attribute
47
  {
48
  color: #ffcc33;
49
  }
50
 
51
+ .hljs-number,
52
+ .hljs-addition
53
  {
54
  color: #00cc66;
55
  }
56
 
57
+ .hljs-built_in,
58
+ .hljs-literal,
59
+ .vhdl .hljs-typename,
60
+ .go .hljs-constant,
61
+ .go .hljs-typename,
62
+ .ini .hljs-keyword,
63
+ .lua .hljs-title,
64
+ .perl .hljs-variable,
65
+ .php .hljs-variable,
66
+ .mel .hljs-variable,
67
+ .django .hljs-variable,
68
+ .css .funtion,
69
+ .smalltalk .method,
70
+ .hljs-hexcolor,
71
+ .hljs-important,
72
+ .hljs-flow,
73
+ .hljs-inheritance,
74
+ .parser3 .hljs-variable
75
  {
76
  color: #32AAEE;
77
  }
78
 
79
+ .hljs-keyword,
80
+ .hljs-tag .hljs-title,
81
+ .css .hljs-tag,
82
+ .css .hljs-class,
83
+ .css .hljs-id,
84
+ .css .hljs-pseudo,
85
+ .css .hljs-attr_selector,
86
+ .lisp .hljs-title,
87
+ .clojure .hljs-built_in,
88
+ .hljs-winutils,
89
+ .tex .hljs-command,
90
+ .hljs-request,
91
+ .hljs-status
92
  {
93
  color: #6644aa;
94
  }
95
 
96
+ .hljs-title,
97
+ .ruby .hljs-constant,
98
+ .vala .hljs-constant,
99
+ .hljs-parent,
100
+ .hljs-deletion,
101
+ .hljs-template_tag,
102
+ .css .hljs-keyword,
103
+ .objectivec .hljs-class .hljs-id,
104
+ .smalltalk .hljs-class,
105
+ .lisp .hljs-keyword,
106
+ .apache .hljs-tag,
107
+ .nginx .hljs-variable,
108
+ .hljs-envvar,
109
+ .bash .hljs-variable,
110
+ .go .hljs-built_in,
111
+ .vbscript .hljs-built_in,
112
+ .lua .hljs-built_in,
113
+ .rsl .hljs-built_in,
114
+ .tail,
115
+ .avrasm .hljs-label,
116
+ .tex .hljs-formula,
117
+ .tex .hljs-formula *
118
  {
119
  color: #bb1166;
120
  }
121
 
122
+ .hljs-yardoctag,
123
+ .hljs-phpdoc,
124
+ .profile .hljs-header,
125
+ .ini .hljs-title,
126
+ .apache .hljs-tag,
127
+ .parser3 .hljs-title
128
  {
129
  font-weight: bold;
130
  }
131
 
132
+ .coffeescript .javascript,
133
+ .javascript .xml,
134
+ .tex .hljs-formula,
135
+ .xml .javascript,
136
+ .xml .vbscript,
137
+ .xml .css,
138
+ .xml .hljs-cdata
139
  {
140
  opacity: 0.6;
141
  }
142
 
143
+ .hljs,
144
+ .javascript,
145
+ .css,
146
+ .xml,
147
+ .hljs-subst,
148
+ .diff .hljs-chunk,
149
+ .css .hljs-value,
150
+ .css .hljs-attribute,
151
+ .lisp .hljs-string,
152
+ .lisp .hljs-number,
153
+ .tail .hljs-params,
154
+ .hljs-container,
155
+ .haskell *,
156
+ .erlang *,
157
+ .erlang_repl *
158
  {
159
  color: #aaa;
160
  }
skin/adminhtml/default/default/markdown/highlight/styles/ascetic.css CHANGED
@@ -4,47 +4,47 @@ Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiac
4
 
5
  */
6
 
7
- pre code {
8
  display: block; padding: 0.5em;
9
  background: white; color: black;
10
  }
11
 
12
- pre .string,
13
- pre .tag .value,
14
- pre .filter .argument,
15
- pre .addition,
16
- pre .change,
17
- pre .apache .tag,
18
- pre .apache .cbracket,
19
- pre .nginx .built_in,
20
- pre .tex .formula {
21
  color: #888;
22
  }
23
 
24
- pre .comment,
25
- pre .template_comment,
26
- pre .shebang,
27
- pre .doctype,
28
- pre .pi,
29
- pre .javadoc,
30
- pre .deletion,
31
- pre .apache .sqbracket {
32
  color: #CCC;
33
  }
34
 
35
- pre .keyword,
36
- pre .tag .title,
37
- pre .ini .title,
38
- pre .lisp .title,
39
- pre .clojure .title,
40
- pre .http .title,
41
- pre .nginx .title,
42
- pre .css .tag,
43
- pre .winutils,
44
- pre .flow,
45
- pre .apache .tag,
46
- pre .tex .command,
47
- pre .request,
48
- pre .status {
49
  font-weight: bold;
50
  }
4
 
5
  */
6
 
7
+ .hljs {
8
  display: block; padding: 0.5em;
9
  background: white; color: black;
10
  }
11
 
12
+ .hljs-string,
13
+ .hljs-tag .hljs-value,
14
+ .hljs-filter .hljs-argument,
15
+ .hljs-addition,
16
+ .hljs-change,
17
+ .apache .hljs-tag,
18
+ .apache .hljs-cbracket,
19
+ .nginx .hljs-built_in,
20
+ .tex .hljs-formula {
21
  color: #888;
22
  }
23
 
24
+ .hljs-comment,
25
+ .hljs-template_comment,
26
+ .hljs-shebang,
27
+ .hljs-doctype,
28
+ .hljs-pi,
29
+ .hljs-javadoc,
30
+ .hljs-deletion,
31
+ .apache .hljs-sqbracket {
32
  color: #CCC;
33
  }
34
 
35
+ .hljs-keyword,
36
+ .hljs-tag .hljs-title,
37
+ .ini .hljs-title,
38
+ .lisp .hljs-title,
39
+ .clojure .hljs-title,
40
+ .http .hljs-title,
41
+ .nginx .hljs-title,
42
+ .css .hljs-tag,
43
+ .hljs-winutils,
44
+ .hljs-flow,
45
+ .apache .hljs-tag,
46
+ .tex .hljs-command,
47
+ .hljs-request,
48
+ .hljs-status {
49
  font-weight: bold;
50
  }
skin/adminhtml/default/default/markdown/highlight/styles/atelier-dune.dark.css ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Base16 Atelier Dune Dark - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Dune Dark Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #999580;
10
+ }
11
+
12
+ /* Atelier Dune Dark Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #d73737;
26
+ }
27
+
28
+ /* Atelier Dune Dark Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #b65611;
37
+ }
38
+
39
+ /* Atelier Dune Dark Yellow */
40
+ .ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #cfb017;
43
+ }
44
+
45
+ /* Atelier Dune Dark Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #60ac39;
53
+ }
54
+
55
+ /* Atelier Dune Dark Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #1fad83;
58
+ }
59
+
60
+ /* Atelier Dune Dark Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #6684e1;
70
+ }
71
+
72
+ /* Atelier Dune Dark Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #b854d4;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #292824;
81
+ color: #a6a28c;
82
+ padding: 0.5em;
83
+ }
84
+
85
+ .coffeescript .javascript,
86
+ .javascript .xml,
87
+ .tex .hljs-formula,
88
+ .xml .javascript,
89
+ .xml .vbscript,
90
+ .xml .css,
91
+ .xml .hljs-cdata {
92
+ opacity: 0.5;
93
+ }
skin/adminhtml/default/default/markdown/highlight/styles/atelier-dune.light.css ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Base16 Atelier Dune Light - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Dune Light Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #7d7a68;
10
+ }
11
+
12
+ /* Atelier Dune Light Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #d73737;
26
+ }
27
+
28
+ /* Atelier Dune Light Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #b65611;
37
+ }
38
+
39
+ /* Atelier Dune Light Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #cfb017;
43
+ }
44
+
45
+ /* Atelier Dune Light Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #60ac39;
53
+ }
54
+
55
+ /* Atelier Dune Light Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #1fad83;
58
+ }
59
+
60
+ /* Atelier Dune Light Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #6684e1;
70
+ }
71
+
72
+ /* Atelier Dune Light Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #b854d4;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #fefbec;
81
+ color: #6e6b5e;
82
+ padding: 0.5em;
83
+ }
84
+
85
+ .coffeescript .javascript,
86
+ .javascript .xml,
87
+ .tex .hljs-formula,
88
+ .xml .javascript,
89
+ .xml .vbscript,
90
+ .xml .css,
91
+ .xml .hljs-cdata {
92
+ opacity: 0.5;
93
+ }
skin/adminhtml/default/default/markdown/highlight/styles/atelier-forest.dark.css ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Base16 Atelier Forest Dark - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Forest Dark Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #9c9491;
10
+ }
11
+
12
+ /* Atelier Forest Dark Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #f22c40;
26
+ }
27
+
28
+ /* Atelier Forest Dark Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #df5320;
37
+ }
38
+
39
+ /* Atelier Forest Dark Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #d5911a;
43
+ }
44
+
45
+ /* Atelier Forest Dark Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #5ab738;
53
+ }
54
+
55
+ /* Atelier Forest Dark Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #00ad9c;
58
+ }
59
+
60
+ /* Atelier Forest Dark Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #407ee7;
70
+ }
71
+
72
+ /* Atelier Forest Dark Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #6666ea;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #2c2421;
81
+ color: #a8a19f;
82
+ padding: 0.5em;
83
+ }
84
+
85
+ .coffeescript .javascript,
86
+ .javascript .xml,
87
+ .tex .hljs-formula,
88
+ .xml .javascript,
89
+ .xml .vbscript,
90
+ .xml .css,
91
+ .xml .hljs-cdata {
92
+ opacity: 0.5;
93
+ }
skin/adminhtml/default/default/markdown/highlight/styles/atelier-forest.light.css ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Base16 Atelier Forest Light - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Forest Light Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #766e6b;
10
+ }
11
+
12
+ /* Atelier Forest Light Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #f22c40;
26
+ }
27
+
28
+ /* Atelier Forest Light Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #df5320;
37
+ }
38
+
39
+ /* Atelier Forest Light Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #d5911a;
43
+ }
44
+
45
+ /* Atelier Forest Light Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #5ab738;
53
+ }
54
+
55
+ /* Atelier Forest Light Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #00ad9c;
58
+ }
59
+
60
+ /* Atelier Forest Light Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #407ee7;
70
+ }
71
+
72
+ /* Atelier Forest Light Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #6666ea;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #f1efee;
81
+ color: #68615e;
82
+ padding: 0.5em;
83
+ }
84
+
85
+ .coffeescript .javascript,
86
+ .javascript .xml,
87
+ .tex .hljs-formula,
88
+ .xml .javascript,
89
+ .xml .vbscript,
90
+ .xml .css,
91
+ .xml .hljs-cdata {
92
+ opacity: 0.5;
93
+ }
skin/adminhtml/default/default/markdown/highlight/styles/atelier-heath.dark.css ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Base16 Atelier Heath Dark - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Heath Dark Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #9e8f9e;
10
+ }
11
+
12
+ /* Atelier Heath Dark Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #ca402b;
26
+ }
27
+
28
+ /* Atelier Heath Dark Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #a65926;
37
+ }
38
+
39
+ /* Atelier Heath Dark Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #bb8a35;
43
+ }
44
+
45
+ /* Atelier Heath Dark Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #379a37;
53
+ }
54
+
55
+ /* Atelier Heath Dark Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #159393;
58
+ }
59
+
60
+ /* Atelier Heath Dark Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #516aec;
70
+ }
71
+
72
+ /* Atelier Heath Dark Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #7b59c0;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #292329;
81
+ color: #ab9bab;
82
+ padding: 0.5em;
83
+ }
84
+
85
+ .coffeescript .javascript,
86
+ .javascript .xml,
87
+ .tex .hljs-formula,
88
+ .xml .javascript,
89
+ .xml .vbscript,
90
+ .xml .css,
91
+ .xml .hljs-cdata {
92
+ opacity: 0.5;
93
+ }
skin/adminhtml/default/default/markdown/highlight/styles/atelier-heath.light.css ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Base16 Atelier Heath Light - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Heath Light Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #776977;
10
+ }
11
+
12
+ /* Atelier Heath Light Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #ca402b;
26
+ }
27
+
28
+ /* Atelier Heath Light Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #a65926;
37
+ }
38
+
39
+ /* Atelier Heath Light Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #bb8a35;
43
+ }
44
+
45
+ /* Atelier Heath Light Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #379a37;
53
+ }
54
+
55
+ /* Atelier Heath Light Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #159393;
58
+ }
59
+
60
+ /* Atelier Heath Light Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #516aec;
70
+ }
71
+
72
+ /* Atelier Heath Light Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #7b59c0;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #f7f3f7;
81
+ color: #695d69;
82
+ padding: 0.5em;
83
+ }
84
+
85
+ .coffeescript .javascript,
86
+ .javascript .xml,
87
+ .tex .hljs-formula,
88
+ .xml .javascript,
89
+ .xml .vbscript,
90
+ .xml .css,
91
+ .xml .hljs-cdata {
92
+ opacity: 0.5;
93
+ }
skin/adminhtml/default/default/markdown/highlight/styles/atelier-lakeside.dark.css ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Base16 Atelier Lakeside Dark - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Lakeside Dark Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #7195a8;
10
+ }
11
+
12
+ /* Atelier Lakeside Dark Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #d22d72;
26
+ }
27
+
28
+ /* Atelier Lakeside Dark Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #935c25;
37
+ }
38
+
39
+ /* Atelier Lakeside Dark Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #8a8a0f;
43
+ }
44
+
45
+ /* Atelier Lakeside Dark Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #568c3b;
53
+ }
54
+
55
+ /* Atelier Lakeside Dark Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #2d8f6f;
58
+ }
59
+
60
+ /* Atelier Lakeside Dark Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #257fad;
70
+ }
71
+
72
+ /* Atelier Lakeside Dark Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #5d5db1;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #1f292e;
81
+ color: #7ea2b4;
82
+ padding: 0.5em;
83
+ }
84
+
85
+ .coffeescript .javascript,
86
+ .javascript .xml,
87
+ .tex .hljs-formula,
88
+ .xml .javascript,
89
+ .xml .vbscript,
90
+ .xml .css,
91
+ .xml .hljs-cdata {
92
+ opacity: 0.5;
93
+ }
skin/adminhtml/default/default/markdown/highlight/styles/atelier-lakeside.light.css ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Base16 Atelier Lakeside Light - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Lakeside Light Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #5a7b8c;
10
+ }
11
+
12
+ /* Atelier Lakeside Light Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #d22d72;
26
+ }
27
+
28
+ /* Atelier Lakeside Light Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #935c25;
37
+ }
38
+
39
+ /* Atelier Lakeside Light Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #8a8a0f;
43
+ }
44
+
45
+ /* Atelier Lakeside Light Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #568c3b;
53
+ }
54
+
55
+ /* Atelier Lakeside Light Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #2d8f6f;
58
+ }
59
+
60
+ /* Atelier Lakeside Light Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #257fad;
70
+ }
71
+
72
+ /* Atelier Lakeside Light Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #5d5db1;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #ebf8ff;
81
+ color: #516d7b;
82
+ padding: 0.5em;
83
+ }
84
+
85
+ .coffeescript .javascript,
86
+ .javascript .xml,
87
+ .tex .hljs-formula,
88
+ .xml .javascript,
89
+ .xml .vbscript,
90
+ .xml .css,
91
+ .xml .hljs-cdata {
92
+ opacity: 0.5;
93
+ }
skin/adminhtml/default/default/markdown/highlight/styles/atelier-seaside.dark.css ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Base16 Atelier Seaside Dark - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Seaside Dark Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #809980;
10
+ }
11
+
12
+ /* Atelier Seaside Dark Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #e6193c;
26
+ }
27
+
28
+ /* Atelier Seaside Dark Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #87711d;
37
+ }
38
+
39
+ /* Atelier Seaside Dark Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #c3c322;
43
+ }
44
+
45
+ /* Atelier Seaside Dark Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #29a329;
53
+ }
54
+
55
+ /* Atelier Seaside Dark Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #1999b3;
58
+ }
59
+
60
+ /* Atelier Seaside Dark Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #3d62f5;
70
+ }
71
+
72
+ /* Atelier Seaside Dark Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #ad2bee;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #242924;
81
+ color: #8ca68c;
82
+ padding: 0.5em;
83
+ }
84
+
85
+ .coffeescript .javascript,
86
+ .javascript .xml,
87
+ .tex .hljs-formula,
88
+ .xml .javascript,
89
+ .xml .vbscript,
90
+ .xml .css,
91
+ .xml .hljs-cdata {
92
+ opacity: 0.5;
93
+ }
skin/adminhtml/default/default/markdown/highlight/styles/atelier-seaside.light.css ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Base16 Atelier Seaside Light - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Seaside Light Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #687d68;
10
+ }
11
+
12
+ /* Atelier Seaside Light Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #e6193c;
26
+ }
27
+
28
+ /* Atelier Seaside Light Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #87711d;
37
+ }
38
+
39
+ /* Atelier Seaside Light Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #c3c322;
43
+ }
44
+
45
+ /* Atelier Seaside Light Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #29a329;
53
+ }
54
+
55
+ /* Atelier Seaside Light Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #1999b3;
58
+ }
59
+
60
+ /* Atelier Seaside Light Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #3d62f5;
70
+ }
71
+
72
+ /* Atelier Seaside Light Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #ad2bee;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #f0fff0;
81
+ color: #5e6e5e;
82
+ padding: 0.5em;
83
+ }
84
+
85
+ .coffeescript .javascript,
86
+ .javascript .xml,
87
+ .tex .hljs-formula,
88
+ .xml .javascript,
89
+ .xml .vbscript,
90
+ .xml .css,
91
+ .xml .hljs-cdata {
92
+ opacity: 0.5;
93
+ }
skin/adminhtml/default/default/markdown/highlight/styles/brown_paper.css CHANGED
@@ -4,102 +4,102 @@ Brown Paper style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net>
4
 
5
  */
6
 
7
- pre code {
8
  display: block; padding: 0.5em;
9
  background:#b7a68e url(./brown_papersq.png);
10
  }
11
 
12
- pre .keyword,
13
- pre .literal,
14
- pre .change,
15
- pre .winutils,
16
- pre .flow,
17
- pre .lisp .title,
18
- pre .clojure .built_in,
19
- pre .nginx .title,
20
- pre .tex .special,
21
- pre .request,
22
- pre .status {
23
  color:#005599;
24
  font-weight:bold;
25
  }
26
 
27
- pre code,
28
- pre .subst,
29
- pre .tag .keyword {
30
  color: #363C69;
31
  }
32
 
33
- pre .string,
34
- pre .title,
35
- pre .haskell .type,
36
- pre .tag .value,
37
- pre .css .rules .value,
38
- pre .preprocessor,
39
- pre .pragma,
40
- pre .ruby .symbol,
41
- pre .ruby .symbol .string,
42
- pre .ruby .class .parent,
43
- pre .built_in,
44
- pre .sql .aggregate,
45
- pre .django .template_tag,
46
- pre .django .variable,
47
- pre .smalltalk .class,
48
- pre .javadoc,
49
- pre .ruby .string,
50
- pre .django .filter .argument,
51
- pre .smalltalk .localvars,
52
- pre .smalltalk .array,
53
- pre .attr_selector,
54
- pre .pseudo,
55
- pre .addition,
56
- pre .stream,
57
- pre .envvar,
58
- pre .apache .tag,
59
- pre .apache .cbracket,
60
- pre .tex .number {
61
  color: #2C009F;
62
  }
63
 
64
- pre .comment,
65
- pre .java .annotation,
66
- pre .python .decorator,
67
- pre .template_comment,
68
- pre .pi,
69
- pre .doctype,
70
- pre .deletion,
71
- pre .shebang,
72
- pre .apache .sqbracket,
73
- pre .nginx .built_in,
74
- pre .tex .formula {
75
  color: #802022;
76
  }
77
 
78
- pre .keyword,
79
- pre .literal,
80
- pre .css .id,
81
- pre .phpdoc,
82
- pre .title,
83
- pre .haskell .type,
84
- pre .vbscript .built_in,
85
- pre .sql .aggregate,
86
- pre .rsl .built_in,
87
- pre .smalltalk .class,
88
- pre .diff .header,
89
- pre .chunk,
90
- pre .winutils,
91
- pre .bash .variable,
92
- pre .apache .tag,
93
- pre .tex .command {
94
  font-weight: bold;
95
  }
96
 
97
- pre .coffeescript .javascript,
98
- pre .javascript .xml,
99
- pre .tex .formula,
100
- pre .xml .javascript,
101
- pre .xml .vbscript,
102
- pre .xml .css,
103
- pre .xml .cdata {
104
  opacity: 0.8;
105
  }
4
 
5
  */
6
 
7
+ .hljs {
8
  display: block; padding: 0.5em;
9
  background:#b7a68e url(./brown_papersq.png);
10
  }
11
 
12
+ .hljs-keyword,
13
+ .hljs-literal,
14
+ .hljs-change,
15
+ .hljs-winutils,
16
+ .hljs-flow,
17
+ .lisp .hljs-title,
18
+ .clojure .hljs-built_in,
19
+ .nginx .hljs-title,
20
+ .tex .hljs-special,
21
+ .hljs-request,
22
+ .hljs-status {
23
  color:#005599;
24
  font-weight:bold;
25
  }
26
 
27
+ .hljs,
28
+ .hljs-subst,
29
+ .hljs-tag .hljs-keyword {
30
  color: #363C69;
31
  }
32
 
33
+ .hljs-string,
34
+ .hljs-title,
35
+ .haskell .hljs-type,
36
+ .hljs-tag .hljs-value,
37
+ .css .hljs-rules .hljs-value,
38
+ .hljs-preprocessor,
39
+ .hljs-pragma,
40
+ .ruby .hljs-symbol,
41
+ .ruby .hljs-symbol .hljs-string,
42
+ .ruby .hljs-class .hljs-parent,
43
+ .hljs-built_in,
44
+ .sql .hljs-aggregate,
45
+ .django .hljs-template_tag,
46
+ .django .hljs-variable,
47
+ .smalltalk .hljs-class,
48
+ .hljs-javadoc,
49
+ .ruby .hljs-string,
50
+ .django .hljs-filter .hljs-argument,
51
+ .smalltalk .hljs-localvars,
52
+ .smalltalk .hljs-array,
53
+ .hljs-attr_selector,
54
+ .hljs-pseudo,
55
+ .hljs-addition,
56
+ .hljs-stream,
57
+ .hljs-envvar,
58
+ .apache .hljs-tag,
59
+ .apache .hljs-cbracket,
60
+ .tex .hljs-number {
61
  color: #2C009F;
62
  }
63
 
64
+ .hljs-comment,
65
+ .java .hljs-annotation,
66
+ .python .hljs-decorator,
67
+ .hljs-template_comment,
68
+ .hljs-pi,
69
+ .hljs-doctype,
70
+ .hljs-deletion,
71
+ .hljs-shebang,
72
+ .apache .hljs-sqbracket,
73
+ .nginx .hljs-built_in,
74
+ .tex .hljs-formula {
75
  color: #802022;
76
  }
77
 
78
+ .hljs-keyword,
79
+ .hljs-literal,
80
+ .css .hljs-id,
81
+ .hljs-phpdoc,
82
+ .hljs-title,
83
+ .haskell .hljs-type,
84
+ .vbscript .hljs-built_in,
85
+ .sql .hljs-aggregate,
86
+ .rsl .hljs-built_in,
87
+ .smalltalk .hljs-class,
88
+ .diff .hljs-header,
89
+ .hljs-chunk,
90
+ .hljs-winutils,
91
+ .bash .hljs-variable,
92
+ .apache .hljs-tag,
93
+ .tex .hljs-command {
94
  font-weight: bold;
95
  }
96
 
97
+ .coffeescript .javascript,
98
+ .javascript .xml,
99
+ .tex .hljs-formula,
100
+ .xml .javascript,
101
+ .xml .vbscript,
102
+ .xml .css,
103
+ .xml .hljs-cdata {
104
  opacity: 0.8;
105
  }
skin/adminhtml/default/default/markdown/highlight/styles/dark.css CHANGED
@@ -4,102 +4,102 @@ Dark style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Or
4
 
5
  */
6
 
7
- pre code {
8
  display: block; padding: 0.5em;
9
  background: #444;
10
  }
11
 
12
- pre .keyword,
13
- pre .literal,
14
- pre .change,
15
- pre .winutils,
16
- pre .flow,
17
- pre .lisp .title,
18
- pre .clojure .built_in,
19
- pre .nginx .title,
20
- pre .tex .special {
21
  color: white;
22
  }
23
 
24
- pre code,
25
- pre .subst {
26
  color: #DDD;
27
  }
28
 
29
- pre .string,
30
- pre .title,
31
- pre .haskell .type,
32
- pre .ini .title,
33
- pre .tag .value,
34
- pre .css .rules .value,
35
- pre .preprocessor,
36
- pre .pragma,
37
- pre .ruby .symbol,
38
- pre .ruby .symbol .string,
39
- pre .ruby .class .parent,
40
- pre .built_in,
41
- pre .sql .aggregate,
42
- pre .django .template_tag,
43
- pre .django .variable,
44
- pre .smalltalk .class,
45
- pre .javadoc,
46
- pre .ruby .string,
47
- pre .django .filter .argument,
48
- pre .smalltalk .localvars,
49
- pre .smalltalk .array,
50
- pre .attr_selector,
51
- pre .pseudo,
52
- pre .addition,
53
- pre .stream,
54
- pre .envvar,
55
- pre .apache .tag,
56
- pre .apache .cbracket,
57
- pre .tex .command,
58
- pre .prompt,
59
- pre .coffeescript .attribute {
60
  color: #D88;
61
  }
62
 
63
- pre .comment,
64
- pre .java .annotation,
65
- pre .python .decorator,
66
- pre .template_comment,
67
- pre .pi,
68
- pre .doctype,
69
- pre .deletion,
70
- pre .shebang,
71
- pre .apache .sqbracket,
72
- pre .tex .formula {
73
  color: #777;
74
  }
75
 
76
- pre .keyword,
77
- pre .literal,
78
- pre .title,
79
- pre .css .id,
80
- pre .phpdoc,
81
- pre .haskell .type,
82
- pre .vbscript .built_in,
83
- pre .sql .aggregate,
84
- pre .rsl .built_in,
85
- pre .smalltalk .class,
86
- pre .diff .header,
87
- pre .chunk,
88
- pre .winutils,
89
- pre .bash .variable,
90
- pre .apache .tag,
91
- pre .tex .special,
92
- pre .request,
93
- pre .status {
94
  font-weight: bold;
95
  }
96
 
97
- pre .coffeescript .javascript,
98
- pre .javascript .xml,
99
- pre .tex .formula,
100
- pre .xml .javascript,
101
- pre .xml .vbscript,
102
- pre .xml .css,
103
- pre .xml .cdata {
104
  opacity: 0.5;
105
  }
4
 
5
  */
6
 
7
+ .hljs {
8
  display: block; padding: 0.5em;
9
  background: #444;
10
  }
11
 
12
+ .hljs-keyword,
13
+ .hljs-literal,
14
+ .hljs-change,
15
+ .hljs-winutils,
16
+ .hljs-flow,
17
+ .lisp .hljs-title,
18
+ .clojure .hljs-built_in,
19
+ .nginx .hljs-title,
20
+ .tex .hljs-special {
21
  color: white;
22
  }
23
 
24
+ .hljs,
25
+ .hljs-subst {
26
  color: #DDD;
27
  }
28
 
29
+ .hljs-string,
30
+ .hljs-title,
31
+ .haskell .hljs-type,
32
+ .ini .hljs-title,
33
+ .hljs-tag .hljs-value,
34
+ .css .hljs-rules .hljs-value,
35
+ .hljs-preprocessor,
36
+ .hljs-pragma,
37
+ .ruby .hljs-symbol,
38
+ .ruby .hljs-symbol .hljs-string,
39
+ .ruby .hljs-class .hljs-parent,
40
+ .hljs-built_in,
41
+ .sql .hljs-aggregate,
42
+ .django .hljs-template_tag,
43
+ .django .hljs-variable,
44
+ .smalltalk .hljs-class,
45
+ .hljs-javadoc,
46
+ .ruby .hljs-string,
47
+ .django .hljs-filter .hljs-argument,
48
+ .smalltalk .hljs-localvars,
49
+ .smalltalk .hljs-array,
50
+ .hljs-attr_selector,
51
+ .hljs-pseudo,
52
+ .hljs-addition,
53
+ .hljs-stream,
54
+ .hljs-envvar,
55
+ .apache .hljs-tag,
56
+ .apache .hljs-cbracket,
57
+ .tex .hljs-command,
58
+ .hljs-prompt,
59
+ .coffeescript .hljs-attribute {
60
  color: #D88;
61
  }
62
 
63
+ .hljs-comment,
64
+ .java .hljs-annotation,
65
+ .python .hljs-decorator,
66
+ .hljs-template_comment,
67
+ .hljs-pi,
68
+ .hljs-doctype,
69
+ .hljs-deletion,
70
+ .hljs-shebang,
71
+ .apache .hljs-sqbracket,
72
+ .tex .hljs-formula {
73
  color: #777;
74
  }
75
 
76
+ .hljs-keyword,
77
+ .hljs-literal,
78
+ .hljs-title,
79
+ .css .hljs-id,
80
+ .hljs-phpdoc,
81
+ .haskell .hljs-type,
82
+ .vbscript .hljs-built_in,
83
+ .sql .hljs-aggregate,
84
+ .rsl .hljs-built_in,
85
+ .smalltalk .hljs-class,
86
+ .diff .hljs-header,
87
+ .hljs-chunk,
88
+ .hljs-winutils,
89
+ .bash .hljs-variable,
90
+ .apache .hljs-tag,
91
+ .tex .hljs-special,
92
+ .hljs-request,
93
+ .hljs-status {
94
  font-weight: bold;
95
  }
96
 
97
+ .coffeescript .javascript,
98
+ .javascript .xml,
99
+ .tex .hljs-formula,
100
+ .xml .javascript,
101
+ .xml .vbscript,
102
+ .xml .css,
103
+ .xml .hljs-cdata {
104
  opacity: 0.5;
105
  }
skin/adminhtml/default/default/markdown/highlight/styles/default.css CHANGED
@@ -4,150 +4,150 @@ Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiac
4
 
5
  */
6
 
7
- pre code {
8
  display: block; padding: 0.5em;
9
  background: #F0F0F0;
10
  }
11
 
12
- pre code,
13
- pre .subst,
14
- pre .tag .title,
15
- pre .lisp .title,
16
- pre .clojure .built_in,
17
- pre .nginx .title {
18
  color: black;
19
  }
20
 
21
- pre .string,
22
- pre .title,
23
- pre .constant,
24
- pre .parent,
25
- pre .tag .value,
26
- pre .rules .value,
27
- pre .rules .value .number,
28
- pre .preprocessor,
29
- pre .pragma,
30
- pre .haml .symbol,
31
- pre .ruby .symbol,
32
- pre .ruby .symbol .string,
33
- pre .aggregate,
34
- pre .template_tag,
35
- pre .django .variable,
36
- pre .smalltalk .class,
37
- pre .addition,
38
- pre .flow,
39
- pre .stream,
40
- pre .bash .variable,
41
- pre .apache .tag,
42
- pre .apache .cbracket,
43
- pre .tex .command,
44
- pre .tex .special,
45
- pre .erlang_repl .function_or_atom,
46
- pre .asciidoc .header,
47
- pre .markdown .header,
48
- pre .coffeescript .attribute {
49
  color: #800;
50
  }
51
 
52
- pre .smartquote,
53
- pre .comment,
54
- pre .annotation,
55
- pre .template_comment,
56
- pre .diff .header,
57
- pre .chunk,
58
- pre .asciidoc .blockquote,
59
- pre .markdown .blockquote {
60
  color: #888;
61
  }
62
 
63
- pre .number,
64
- pre .date,
65
- pre .regexp,
66
- pre .literal,
67
- pre .hexcolor,
68
- pre .smalltalk .symbol,
69
- pre .smalltalk .char,
70
- pre .go .constant,
71
- pre .change,
72
- pre .lasso .variable,
73
- pre .makefile .variable,
74
- pre .asciidoc .bullet,
75
- pre .markdown .bullet,
76
- pre .asciidoc .link_url,
77
- pre .markdown .link_url {
78
  color: #080;
79
  }
80
 
81
- pre .label,
82
- pre .javadoc,
83
- pre .ruby .string,
84
- pre .decorator,
85
- pre .filter .argument,
86
- pre .localvars,
87
- pre .array,
88
- pre .attr_selector,
89
- pre .important,
90
- pre .pseudo,
91
- pre .pi,
92
- pre .haml .bullet,
93
- pre .doctype,
94
- pre .deletion,
95
- pre .envvar,
96
- pre .shebang,
97
- pre .apache .sqbracket,
98
- pre .nginx .built_in,
99
- pre .tex .formula,
100
- pre .erlang_repl .reserved,
101
- pre .prompt,
102
- pre .asciidoc .link_label,
103
- pre .markdown .link_label,
104
- pre .vhdl .attribute,
105
- pre .clojure .attribute,
106
- pre .asciidoc .attribute,
107
- pre .lasso .attribute,
108
- pre .coffeescript .property,
109
- pre .makefile .phony {
110
  color: #88F
111
  }
112
 
113
- pre .keyword,
114
- pre .id,
115
- pre .title,
116
- pre .built_in,
117
- pre .aggregate,
118
- pre .css .tag,
119
- pre .javadoctag,
120
- pre .phpdoc,
121
- pre .yardoctag,
122
- pre .smalltalk .class,
123
- pre .winutils,
124
- pre .bash .variable,
125
- pre .apache .tag,
126
- pre .go .typename,
127
- pre .tex .command,
128
- pre .asciidoc .strong,
129
- pre .markdown .strong,
130
- pre .request,
131
- pre .status {
132
  font-weight: bold;
133
  }
134
 
135
- pre .asciidoc .emphasis,
136
- pre .markdown .emphasis {
137
  font-style: italic;
138
  }
139
 
140
- pre .nginx .built_in {
141
  font-weight: normal;
142
  }
143
 
144
- pre .coffeescript .javascript,
145
- pre .javascript .xml,
146
- pre .lasso .markup,
147
- pre .tex .formula,
148
- pre .xml .javascript,
149
- pre .xml .vbscript,
150
- pre .xml .css,
151
- pre .xml .cdata {
152
  opacity: 0.5;
153
  }
4
 
5
  */
6
 
7
+ .hljs {
8
  display: block; padding: 0.5em;
9
  background: #F0F0F0;
10
  }
11
 
12
+ .hljs,
13
+ .hljs-subst,
14
+ .hljs-tag .hljs-title,
15
+ .lisp .hljs-title,
16
+ .clojure .hljs-built_in,
17
+ .nginx .hljs-title {
18
  color: black;
19
  }
20
 
21
+ .hljs-string,
22
+ .hljs-title,
23
+ .hljs-constant,
24
+ .hljs-parent,
25
+ .hljs-tag .hljs-value,
26
+ .hljs-rules .hljs-value,
27
+ .hljs-rules .hljs-value .hljs-number,
28
+ .hljs-preprocessor,
29
+ .hljs-pragma,
30
+ .haml .hljs-symbol,
31
+ .ruby .hljs-symbol,
32
+ .ruby .hljs-symbol .hljs-string,
33
+ .hljs-aggregate,
34
+ .hljs-template_tag,
35
+ .django .hljs-variable,
36
+ .smalltalk .hljs-class,
37
+ .hljs-addition,
38
+ .hljs-flow,
39
+ .hljs-stream,
40
+ .bash .hljs-variable,
41
+ .apache .hljs-tag,
42
+ .apache .hljs-cbracket,
43
+ .tex .hljs-command,
44
+ .tex .hljs-special,
45
+ .erlang_repl .hljs-function_or_atom,
46
+ .asciidoc .hljs-header,
47
+ .markdown .hljs-header,
48
+ .coffeescript .hljs-attribute {
49
  color: #800;
50
  }
51
 
52
+ .smartquote,
53
+ .hljs-comment,
54
+ .hljs-annotation,
55
+ .hljs-template_comment,
56
+ .diff .hljs-header,
57
+ .hljs-chunk,
58
+ .asciidoc .hljs-blockquote,
59
+ .markdown .hljs-blockquote {
60
  color: #888;
61
  }
62
 
63
+ .hljs-number,
64
+ .hljs-date,
65
+ .hljs-regexp,
66
+ .hljs-literal,
67
+ .hljs-hexcolor,
68
+ .smalltalk .hljs-symbol,
69
+ .smalltalk .hljs-char,
70
+ .go .hljs-constant,
71
+ .hljs-change,
72
+ .lasso .hljs-variable,
73
+ .makefile .hljs-variable,
74
+ .asciidoc .hljs-bullet,
75
+ .markdown .hljs-bullet,
76
+ .asciidoc .hljs-link_url,
77
+ .markdown .hljs-link_url {
78
  color: #080;
79
  }
80
 
81
+ .hljs-label,
82
+ .hljs-javadoc,
83
+ .ruby .hljs-string,
84
+ .hljs-decorator,
85
+ .hljs-filter .hljs-argument,
86
+ .hljs-localvars,
87
+ .hljs-array,
88
+ .hljs-attr_selector,
89
+ .hljs-important,
90
+ .hljs-pseudo,
91
+ .hljs-pi,
92
+ .haml .hljs-bullet,
93
+ .hljs-doctype,
94
+ .hljs-deletion,
95
+ .hljs-envvar,
96
+ .hljs-shebang,
97
+ .apache .hljs-sqbracket,
98
+ .nginx .hljs-built_in,
99
+ .tex .hljs-formula,
100
+ .erlang_repl .hljs-reserved,
101
+ .hljs-prompt,
102
+ .asciidoc .hljs-link_label,
103
+ .markdown .hljs-link_label,
104
+ .vhdl .hljs-attribute,
105
+ .clojure .hljs-attribute,
106
+ .asciidoc .hljs-attribute,
107
+ .lasso .hljs-attribute,
108
+ .coffeescript .hljs-property,
109
+ .hljs-phony {
110
  color: #88F
111
  }
112
 
113
+ .hljs-keyword,
114
+ .hljs-id,
115
+ .hljs-title,
116
+ .hljs-built_in,
117
+ .hljs-aggregate,
118
+ .css .hljs-tag,
119
+ .hljs-javadoctag,
120
+ .hljs-phpdoc,
121
+ .hljs-yardoctag,
122
+ .smalltalk .hljs-class,
123
+ .hljs-winutils,
124
+ .bash .hljs-variable,
125
+ .apache .hljs-tag,
126
+ .go .hljs-typename,
127
+ .tex .hljs-command,
128
+ .asciidoc .hljs-strong,
129
+ .markdown .hljs-strong,
130
+ .hljs-request,
131
+ .hljs-status {
132
  font-weight: bold;
133
  }
134
 
135
+ .asciidoc .hljs-emphasis,
136
+ .markdown .hljs-emphasis {
137
  font-style: italic;
138
  }
139
 
140
+ .nginx .hljs-built_in {
141
  font-weight: normal;
142
  }
143
 
144
+ .coffeescript .javascript,
145
+ .javascript .xml,
146
+ .lasso .markup,
147
+ .tex .hljs-formula,
148
+ .xml .javascript,
149
+ .xml .vbscript,
150
+ .xml .css,
151
+ .xml .hljs-cdata {
152
  opacity: 0.5;
153
  }
skin/adminhtml/default/default/markdown/highlight/styles/docco.css CHANGED
@@ -2,131 +2,131 @@
2
  Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars)
3
  */
4
 
5
- pre code {
6
  display: block; padding: 0.5em;
7
  color: #000;
8
  background: #f8f8ff
9
  }
10
 
11
- pre .comment,
12
- pre .template_comment,
13
- pre .diff .header,
14
- pre .javadoc {
15
  color: #408080;
16
  font-style: italic
17
  }
18
 
19
- pre .keyword,
20
- pre .assignment,
21
- pre .literal,
22
- pre .css .rule .keyword,
23
- pre .winutils,
24
- pre .javascript .title,
25
- pre .lisp .title,
26
- pre .subst {
27
  color: #954121;
28
  }
29
 
30
- pre .number,
31
- pre .hexcolor {
32
  color: #40a070
33
  }
34
 
35
- pre .string,
36
- pre .tag .value,
37
- pre .phpdoc,
38
- pre .tex .formula {
39
  color: #219161;
40
  }
41
 
42
- pre .title,
43
- pre .id {
44
  color: #19469D;
45
  }
46
- pre .params {
47
  color: #00F;
48
  }
49
 
50
- pre .javascript .title,
51
- pre .lisp .title,
52
- pre .subst {
53
  font-weight: normal
54
  }
55
 
56
- pre .class .title,
57
- pre .haskell .label,
58
- pre .tex .command {
59
  color: #458;
60
  font-weight: bold
61
  }
62
 
63
- pre .tag,
64
- pre .tag .title,
65
- pre .rules .property,
66
- pre .django .tag .keyword {
67
  color: #000080;
68
  font-weight: normal
69
  }
70
 
71
- pre .attribute,
72
- pre .variable,
73
- pre .instancevar,
74
- pre .lisp .body {
75
  color: #008080
76
  }
77
 
78
- pre .regexp {
79
  color: #B68
80
  }
81
 
82
- pre .class {
83
  color: #458;
84
  font-weight: bold
85
  }
86
 
87
- pre .symbol,
88
- pre .ruby .symbol .string,
89
- pre .ruby .symbol .keyword,
90
- pre .ruby .symbol .keymethods,
91
- pre .lisp .keyword,
92
- pre .tex .special,
93
- pre .input_number {
94
  color: #990073
95
  }
96
 
97
- pre .builtin,
98
- pre .constructor,
99
- pre .built_in,
100
- pre .lisp .title {
101
  color: #0086b3
102
  }
103
 
104
- pre .preprocessor,
105
- pre .pragma,
106
- pre .pi,
107
- pre .doctype,
108
- pre .shebang,
109
- pre .cdata {
110
  color: #999;
111
  font-weight: bold
112
  }
113
 
114
- pre .deletion {
115
  background: #fdd
116
  }
117
 
118
- pre .addition {
119
  background: #dfd
120
  }
121
 
122
- pre .diff .change {
123
  background: #0086b3
124
  }
125
 
126
- pre .chunk {
127
  color: #aaa
128
  }
129
 
130
- pre .tex .formula {
131
  opacity: 0.5;
132
  }
2
  Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars)
3
  */
4
 
5
+ .hljs {
6
  display: block; padding: 0.5em;
7
  color: #000;
8
  background: #f8f8ff
9
  }
10
 
11
+ .hljs-comment,
12
+ .hljs-template_comment,
13
+ .diff .hljs-header,
14
+ .hljs-javadoc {
15
  color: #408080;
16
  font-style: italic
17
  }
18
 
19
+ .hljs-keyword,
20
+ .assignment,
21
+ .hljs-literal,
22
+ .css .rule .hljs-keyword,
23
+ .hljs-winutils,
24
+ .javascript .hljs-title,
25
+ .lisp .hljs-title,
26
+ .hljs-subst {
27
  color: #954121;
28
  }
29
 
30
+ .hljs-number,
31
+ .hljs-hexcolor {
32
  color: #40a070
33
  }
34
 
35
+ .hljs-string,
36
+ .hljs-tag .hljs-value,
37
+ .hljs-phpdoc,
38
+ .tex .hljs-formula {
39
  color: #219161;
40
  }
41
 
42
+ .hljs-title,
43
+ .hljs-id {
44
  color: #19469D;
45
  }
46
+ .hljs-params {
47
  color: #00F;
48
  }
49
 
50
+ .javascript .hljs-title,
51
+ .lisp .hljs-title,
52
+ .hljs-subst {
53
  font-weight: normal
54
  }
55
 
56
+ .hljs-class .hljs-title,
57
+ .haskell .hljs-label,
58
+ .tex .hljs-command {
59
  color: #458;
60
  font-weight: bold
61
  }
62
 
63
+ .hljs-tag,
64
+ .hljs-tag .hljs-title,
65
+ .hljs-rules .hljs-property,
66
+ .django .hljs-tag .hljs-keyword {
67
  color: #000080;
68
  font-weight: normal
69
  }
70
 
71
+ .hljs-attribute,
72
+ .hljs-variable,
73
+ .instancevar,
74
+ .lisp .hljs-body {
75
  color: #008080
76
  }
77
 
78
+ .hljs-regexp {
79
  color: #B68
80
  }
81
 
82
+ .hljs-class {
83
  color: #458;
84
  font-weight: bold
85
  }
86
 
87
+ .hljs-symbol,
88
+ .ruby .hljs-symbol .hljs-string,
89
+ .ruby .hljs-symbol .hljs-keyword,
90
+ .ruby .hljs-symbol .keymethods,
91
+ .lisp .hljs-keyword,
92
+ .tex .hljs-special,
93
+ .input_number {
94
  color: #990073
95
  }
96
 
97
+ .builtin,
98
+ .constructor,
99
+ .hljs-built_in,
100
+ .lisp .hljs-title {
101
  color: #0086b3
102
  }
103
 
104
+ .hljs-preprocessor,
105
+ .hljs-pragma,
106
+ .hljs-pi,
107
+ .hljs-doctype,
108
+ .hljs-shebang,
109
+ .hljs-cdata {
110
  color: #999;
111
  font-weight: bold
112
  }
113
 
114
+ .hljs-deletion {
115
  background: #fdd
116
  }
117
 
118
+ .hljs-addition {
119
  background: #dfd
120
  }
121
 
122
+ .diff .hljs-change {
123
  background: #0086b3
124
  }
125
 
126
+ .hljs-chunk {
127
  color: #aaa
128
  }
129
 
130
+ .tex .hljs-formula {
131
  opacity: 0.5;
132
  }
skin/adminhtml/default/default/markdown/highlight/styles/far.css CHANGED
@@ -4,110 +4,110 @@ FAR Style (c) MajestiC <majestic2k@gmail.com>
4
 
5
  */
6
 
7
- pre code {
8
  display: block; padding: 0.5em;
9
  background: #000080;
10
  }
11
 
12
- pre code,
13
- pre .subst {
14
  color: #0FF;
15
  }
16
 
17
- pre .string,
18
- pre .ruby .string,
19
- pre .haskell .type,
20
- pre .tag .value,
21
- pre .css .rules .value,
22
- pre .css .rules .value .number,
23
- pre .preprocessor,
24
- pre .pragma,
25
- pre .ruby .symbol,
26
- pre .ruby .symbol .string,
27
- pre .built_in,
28
- pre .sql .aggregate,
29
- pre .django .template_tag,
30
- pre .django .variable,
31
- pre .smalltalk .class,
32
- pre .addition,
33
- pre .apache .tag,
34
- pre .apache .cbracket,
35
- pre .tex .command,
36
- pre .clojure .title,
37
- pre .coffeescript .attribute {
38
  color: #FF0;
39
  }
40
 
41
- pre .keyword,
42
- pre .css .id,
43
- pre .title,
44
- pre .haskell .type,
45
- pre .vbscript .built_in,
46
- pre .sql .aggregate,
47
- pre .rsl .built_in,
48
- pre .smalltalk .class,
49
- pre .xml .tag .title,
50
- pre .winutils,
51
- pre .flow,
52
- pre .change,
53
- pre .envvar,
54
- pre .bash .variable,
55
- pre .tex .special,
56
- pre .clojure .built_in {
57
  color: #FFF;
58
  }
59
 
60
- pre .comment,
61
- pre .phpdoc,
62
- pre .javadoc,
63
- pre .java .annotation,
64
- pre .template_comment,
65
- pre .deletion,
66
- pre .apache .sqbracket,
67
- pre .tex .formula {
68
  color: #888;
69
  }
70
 
71
- pre .number,
72
- pre .date,
73
- pre .regexp,
74
- pre .literal,
75
- pre .smalltalk .symbol,
76
- pre .smalltalk .char,
77
- pre .clojure .attribute {
78
  color: #0F0;
79
  }
80
 
81
- pre .python .decorator,
82
- pre .django .filter .argument,
83
- pre .smalltalk .localvars,
84
- pre .smalltalk .array,
85
- pre .attr_selector,
86
- pre .pseudo,
87
- pre .xml .pi,
88
- pre .diff .header,
89
- pre .chunk,
90
- pre .shebang,
91
- pre .nginx .built_in,
92
- pre .prompt {
93
  color: #008080;
94
  }
95
 
96
- pre .keyword,
97
- pre .css .id,
98
- pre .title,
99
- pre .haskell .type,
100
- pre .vbscript .built_in,
101
- pre .sql .aggregate,
102
- pre .rsl .built_in,
103
- pre .smalltalk .class,
104
- pre .winutils,
105
- pre .flow,
106
- pre .apache .tag,
107
- pre .nginx .built_in,
108
- pre .tex .command,
109
- pre .tex .special,
110
- pre .request,
111
- pre .status {
112
  font-weight: bold;
113
  }
4
 
5
  */
6
 
7
+ .hljs {
8
  display: block; padding: 0.5em;
9
  background: #000080;
10
  }
11
 
12
+ .hljs,
13
+ .hljs-subst {
14
  color: #0FF;
15
  }
16
 
17
+ .hljs-string,
18
+ .ruby .hljs-string,
19
+ .haskell .hljs-type,
20
+ .hljs-tag .hljs-value,
21
+ .css .hljs-rules .hljs-value,
22
+ .css .hljs-rules .hljs-value .hljs-number,
23
+ .hljs-preprocessor,
24
+ .hljs-pragma,
25
+ .ruby .hljs-symbol,
26
+ .ruby .hljs-symbol .hljs-string,
27
+ .hljs-built_in,
28
+ .sql .hljs-aggregate,
29
+ .django .hljs-template_tag,
30
+ .django .hljs-variable,
31
+ .smalltalk .hljs-class,
32
+ .hljs-addition,
33
+ .apache .hljs-tag,
34
+ .apache .hljs-cbracket,
35
+ .tex .hljs-command,
36
+ .clojure .hljs-title,
37
+ .coffeescript .hljs-attribute {
38
  color: #FF0;
39
  }
40
 
41
+ .hljs-keyword,
42
+ .css .hljs-id,
43
+ .hljs-title,
44
+ .haskell .hljs-type,
45
+ .vbscript .hljs-built_in,
46
+ .sql .hljs-aggregate,
47
+ .rsl .hljs-built_in,
48
+ .smalltalk .hljs-class,
49
+ .xml .hljs-tag .hljs-title,
50
+ .hljs-winutils,
51
+ .hljs-flow,
52
+ .hljs-change,
53
+ .hljs-envvar,
54
+ .bash .hljs-variable,
55
+ .tex .hljs-special,
56
+ .clojure .hljs-built_in {
57
  color: #FFF;
58
  }
59
 
60
+ .hljs-comment,
61
+ .hljs-phpdoc,
62
+ .hljs-javadoc,
63
+ .java .hljs-annotation,
64
+ .hljs-template_comment,
65
+ .hljs-deletion,
66
+ .apache .hljs-sqbracket,
67
+ .tex .hljs-formula {
68
  color: #888;
69
  }
70
 
71
+ .hljs-number,
72
+ .hljs-date,
73
+ .hljs-regexp,
74
+ .hljs-literal,
75
+ .smalltalk .hljs-symbol,
76
+ .smalltalk .hljs-char,
77
+ .clojure .hljs-attribute {
78
  color: #0F0;
79
  }
80
 
81
+ .python .hljs-decorator,
82
+ .django .hljs-filter .hljs-argument,
83
+ .smalltalk .hljs-localvars,
84
+ .smalltalk .hljs-array,
85
+ .hljs-attr_selector,
86
+ .hljs-pseudo,
87
+ .xml .hljs-pi,
88
+ .diff .hljs-header,
89
+ .hljs-chunk,
90
+ .hljs-shebang,
91
+ .nginx .hljs-built_in,
92
+ .hljs-prompt {
93
  color: #008080;
94
  }
95
 
96
+ .hljs-keyword,
97
+ .css .hljs-id,
98
+ .hljs-title,
99
+ .haskell .hljs-type,
100
+ .vbscript .hljs-built_in,
101
+ .sql .hljs-aggregate,
102
+ .rsl .hljs-built_in,
103
+ .smalltalk .hljs-class,
104
+ .hljs-winutils,
105
+ .hljs-flow,
106
+ .apache .hljs-tag,
107
+ .nginx .hljs-built_in,
108
+ .tex .hljs-command,
109
+ .tex .hljs-special,
110
+ .hljs-request,
111
+ .hljs-status {
112
  font-weight: bold;
113
  }
skin/adminhtml/default/default/markdown/highlight/styles/foundation.css CHANGED
@@ -6,128 +6,128 @@ Version: 1.0
6
  Date: 2013-04-02
7
  */
8
 
9
- pre code {
10
  display: block; padding: 0.5em;
11
  background: #eee;
12
  }
13
 
14
- pre .header,
15
- pre .decorator,
16
- pre .annotation {
17
  color: #000077;
18
  }
19
 
20
- pre .horizontal_rule,
21
- pre .link_url,
22
- pre .emphasis,
23
- pre .attribute {
24
  color: #070;
25
  }
26
 
27
- pre .emphasis {
28
  font-style: italic;
29
  }
30
 
31
- pre .link_label,
32
- pre .strong,
33
- pre .value,
34
- pre .string,
35
- pre .scss .value .string {
36
  color: #d14;
37
  }
38
 
39
- pre .strong {
40
  font-weight: bold;
41
  }
42
 
43
- pre .blockquote,
44
- pre .comment {
45
  color: #998;
46
  font-style: italic;
47
  }
48
 
49
- pre .asciidoc .title,
50
- pre .function .title {
51
  color: #900;
52
  }
53
 
54
- pre .class {
55
  color: #458;
56
  }
57
 
58
- pre .id,
59
- pre .pseudo,
60
- pre .constant,
61
- pre .hexcolor {
62
  color: teal;
63
  }
64
 
65
- pre .variable {
66
  color: #336699;
67
  }
68
 
69
- pre .bullet,
70
- pre .javadoc {
71
  color: #997700;
72
  }
73
 
74
- pre .pi,
75
- pre .doctype {
76
  color: #3344bb;
77
  }
78
 
79
- pre .code,
80
- pre .number {
81
  color: #099;
82
  }
83
 
84
- pre .important {
85
  color: #f00;
86
  }
87
 
88
- pre .smartquote,
89
- pre .label {
90
  color: #970;
91
  }
92
 
93
- pre .preprocessor,
94
- pre .pragma {
95
  color: #579;
96
  }
97
 
98
- pre .reserved,
99
- pre .keyword,
100
- pre .scss .value {
101
  color: #000;
102
  }
103
 
104
- pre .regexp {
105
  background-color: #fff0ff;
106
  color: #880088;
107
  }
108
 
109
- pre .symbol {
110
  color: #990073;
111
  }
112
 
113
- pre .symbol .string {
114
  color: #a60;
115
  }
116
 
117
- pre .tag {
118
  color: #007700;
119
  }
120
 
121
- pre .at_rule,
122
- pre .at_rule .keyword {
123
  color: #088;
124
  }
125
 
126
- pre .at_rule .preprocessor {
127
  color: #808;
128
  }
129
 
130
- pre .scss .tag,
131
- pre .scss .attribute {
132
  color: #339;
133
  }
6
  Date: 2013-04-02
7
  */
8
 
9
+ .hljs {
10
  display: block; padding: 0.5em;
11
  background: #eee;
12
  }
13
 
14
+ .hljs-header,
15
+ .hljs-decorator,
16
+ .hljs-annotation {
17
  color: #000077;
18
  }
19
 
20
+ .hljs-horizontal_rule,
21
+ .hljs-link_url,
22
+ .hljs-emphasis,
23
+ .hljs-attribute {
24
  color: #070;
25
  }
26
 
27
+ .hljs-emphasis {
28
  font-style: italic;
29
  }
30
 
31
+ .hljs-link_label,
32
+ .hljs-strong,
33
+ .hljs-value,
34
+ .hljs-string,
35
+ .scss .hljs-value .hljs-string {
36
  color: #d14;
37
  }
38
 
39
+ .hljs-strong {
40
  font-weight: bold;
41
  }
42
 
43
+ .hljs-blockquote,
44
+ .hljs-comment {
45
  color: #998;
46
  font-style: italic;
47
  }
48
 
49
+ .asciidoc .hljs-title,
50
+ .hljs-function .hljs-title {
51
  color: #900;
52
  }
53
 
54
+ .hljs-class {
55
  color: #458;
56
  }
57
 
58
+ .hljs-id,
59
+ .hljs-pseudo,
60
+ .hljs-constant,
61
+ .hljs-hexcolor {
62
  color: teal;
63
  }
64
 
65
+ .hljs-variable {
66
  color: #336699;
67
  }
68
 
69
+ .hljs-bullet,
70
+ .hljs-javadoc {
71
  color: #997700;
72
  }
73
 
74
+ .hljs-pi,
75
+ .hljs-doctype {
76
  color: #3344bb;
77
  }
78
 
79
+ .hljs-code,
80
+ .hljs-number {
81
  color: #099;
82
  }
83
 
84
+ .hljs-important {
85
  color: #f00;
86
  }
87
 
88
+ .smartquote,
89
+ .hljs-label {
90
  color: #970;
91
  }
92
 
93
+ .hljs-preprocessor,
94
+ .hljs-pragma {
95
  color: #579;
96
  }
97
 
98
+ .hljs-reserved,
99
+ .hljs-keyword,
100
+ .scss .hljs-value {
101
  color: #000;
102
  }
103
 
104
+ .hljs-regexp {
105
  background-color: #fff0ff;
106
  color: #880088;
107
  }
108
 
109
+ .hljs-symbol {
110
  color: #990073;
111
  }
112
 
113
+ .hljs-symbol .hljs-string {
114
  color: #a60;
115
  }
116
 
117
+ .hljs-tag {
118
  color: #007700;
119
  }
120
 
121
+ .hljs-at_rule,
122
+ .hljs-at_rule .hljs-keyword {
123
  color: #088;
124
  }
125
 
126
+ .hljs-at_rule .hljs-preprocessor {
127
  color: #808;
128
  }
129
 
130
+ .scss .hljs-tag,
131
+ .scss .hljs-attribute {
132
  color: #339;
133
  }
skin/adminhtml/default/default/markdown/highlight/styles/github.css CHANGED
@@ -4,127 +4,122 @@ github.com style (c) Vasily Polovnyov <vast@whiteants.net>
4
 
5
  */
6
 
7
- pre code {
8
  display: block; padding: 0.5em;
9
  color: #333;
10
- background: #f8f8ff
11
  }
12
 
13
- pre .comment,
14
- pre .template_comment,
15
- pre .diff .header,
16
- pre .javadoc {
17
  color: #998;
18
  font-style: italic
19
  }
20
 
21
- pre .keyword,
22
- pre .css .rule .keyword,
23
- pre .winutils,
24
- pre .javascript .title,
25
- pre .nginx .title,
26
- pre .subst,
27
- pre .request,
28
- pre .status {
29
  color: #333;
30
  font-weight: bold
31
  }
32
 
33
- pre .number,
34
- pre .hexcolor,
35
- pre .ruby .constant {
36
  color: #099;
37
  }
38
 
39
- pre .string,
40
- pre .tag .value,
41
- pre .phpdoc,
42
- pre .tex .formula {
43
  color: #d14
44
  }
45
 
46
- pre .title,
47
- pre .id,
48
- pre .coffeescript .params,
49
- pre .scss .preprocessor {
50
  color: #900;
51
  font-weight: bold
52
  }
53
 
54
- pre .javascript .title,
55
- pre .lisp .title,
56
- pre .clojure .title,
57
- pre .subst {
58
  font-weight: normal
59
  }
60
 
61
- pre .class .title,
62
- pre .haskell .type,
63
- pre .vhdl .literal,
64
- pre .tex .command {
65
  color: #458;
66
  font-weight: bold
67
  }
68
 
69
- pre .tag,
70
- pre .tag .title,
71
- pre .rules .property,
72
- pre .django .tag .keyword {
73
  color: #000080;
74
  font-weight: normal
75
  }
76
 
77
- pre .attribute,
78
- pre .variable,
79
- pre .lisp .body {
80
  color: #008080
81
  }
82
 
83
- pre .regexp {
84
  color: #009926
85
  }
86
 
87
- pre .class {
88
- color: #458;
89
- font-weight: bold
90
- }
91
-
92
- pre .symbol,
93
- pre .ruby .symbol .string,
94
- pre .lisp .keyword,
95
- pre .tex .special,
96
- pre .prompt {
97
  color: #990073
98
  }
99
 
100
- pre .built_in,
101
- pre .lisp .title,
102
- pre .clojure .built_in {
103
  color: #0086b3
104
  }
105
 
106
- pre .preprocessor,
107
- pre .pragma,
108
- pre .pi,
109
- pre .doctype,
110
- pre .shebang,
111
- pre .cdata {
112
  color: #999;
113
  font-weight: bold
114
  }
115
 
116
- pre .deletion {
117
  background: #fdd
118
  }
119
 
120
- pre .addition {
121
  background: #dfd
122
  }
123
 
124
- pre .diff .change {
125
  background: #0086b3
126
  }
127
 
128
- pre .chunk {
129
  color: #aaa
130
  }
4
 
5
  */
6
 
7
+ .hljs {
8
  display: block; padding: 0.5em;
9
  color: #333;
10
+ background: #f8f8f8
11
  }
12
 
13
+ .hljs-comment,
14
+ .hljs-template_comment,
15
+ .diff .hljs-header,
16
+ .hljs-javadoc {
17
  color: #998;
18
  font-style: italic
19
  }
20
 
21
+ .hljs-keyword,
22
+ .css .rule .hljs-keyword,
23
+ .hljs-winutils,
24
+ .javascript .hljs-title,
25
+ .nginx .hljs-title,
26
+ .hljs-subst,
27
+ .hljs-request,
28
+ .hljs-status {
29
  color: #333;
30
  font-weight: bold
31
  }
32
 
33
+ .hljs-number,
34
+ .hljs-hexcolor,
35
+ .ruby .hljs-constant {
36
  color: #099;
37
  }
38
 
39
+ .hljs-string,
40
+ .hljs-tag .hljs-value,
41
+ .hljs-phpdoc,
42
+ .tex .hljs-formula {
43
  color: #d14
44
  }
45
 
46
+ .hljs-title,
47
+ .hljs-id,
48
+ .coffeescript .hljs-params,
49
+ .scss .hljs-preprocessor {
50
  color: #900;
51
  font-weight: bold
52
  }
53
 
54
+ .javascript .hljs-title,
55
+ .lisp .hljs-title,
56
+ .clojure .hljs-title,
57
+ .hljs-subst {
58
  font-weight: normal
59
  }
60
 
61
+ .hljs-class .hljs-title,
62
+ .haskell .hljs-type,
63
+ .vhdl .hljs-literal,
64
+ .tex .hljs-command {
65
  color: #458;
66
  font-weight: bold
67
  }
68
 
69
+ .hljs-tag,
70
+ .hljs-tag .hljs-title,
71
+ .hljs-rules .hljs-property,
72
+ .django .hljs-tag .hljs-keyword {
73
  color: #000080;
74
  font-weight: normal
75
  }
76
 
77
+ .hljs-attribute,
78
+ .hljs-variable,
79
+ .lisp .hljs-body {
80
  color: #008080
81
  }
82
 
83
+ .hljs-regexp {
84
  color: #009926
85
  }
86
 
87
+ .hljs-symbol,
88
+ .ruby .hljs-symbol .hljs-string,
89
+ .lisp .hljs-keyword,
90
+ .tex .hljs-special,
91
+ .hljs-prompt {
 
 
 
 
 
92
  color: #990073
93
  }
94
 
95
+ .hljs-built_in,
96
+ .lisp .hljs-title,
97
+ .clojure .hljs-built_in {
98
  color: #0086b3
99
  }
100
 
101
+ .hljs-preprocessor,
102
+ .hljs-pragma,
103
+ .hljs-pi,
104
+ .hljs-doctype,
105
+ .hljs-shebang,
106
+ .hljs-cdata {
107
  color: #999;
108
  font-weight: bold
109
  }
110
 
111
+ .hljs-deletion {
112
  background: #fdd
113
  }
114
 
115
+ .hljs-addition {
116
  background: #dfd
117
  }
118
 
119
+ .diff .hljs-change {
120
  background: #0086b3
121
  }
122
 
123
+ .hljs-chunk {
124
  color: #aaa
125
  }
skin/adminhtml/default/default/markdown/highlight/styles/googlecode.css CHANGED
@@ -4,143 +4,144 @@ Google Code style (c) Aahan Krish <geekpanth3r@gmail.com>
4
 
5
  */
6
 
7
- pre code {
8
  display: block; padding: 0.5em;
9
  background: white; color: black;
10
  }
11
 
12
- pre .comment,
13
- pre .template_comment,
14
- pre .javadoc,
15
- pre .comment * {
16
  color: #800;
17
  }
18
 
19
- pre .keyword,
20
- pre .method,
21
- pre .list .title,
22
- pre .clojure .built_in,
23
- pre .nginx .title,
24
- pre .tag .title,
25
- pre .setting .value,
26
- pre .winutils,
27
- pre .tex .command,
28
- pre .http .title,
29
- pre .request,
30
- pre .status {
31
  color: #008;
32
  }
33
 
34
- pre .envvar,
35
- pre .tex .special {
36
  color: #660;
37
  }
38
 
39
- pre .string,
40
- pre .tag .value,
41
- pre .cdata,
42
- pre .filter .argument,
43
- pre .attr_selector,
44
- pre .apache .cbracket,
45
- pre .date,
46
- pre .regexp,
47
- pre .coffeescript .attribute {
48
  color: #080;
49
  }
50
 
51
- pre .sub .identifier,
52
- pre .pi,
53
- pre .tag,
54
- pre .tag .keyword,
55
- pre .decorator,
56
- pre .ini .title,
57
- pre .shebang,
58
- pre .prompt,
59
- pre .hexcolor,
60
- pre .rules .value,
61
- pre .css .value .number,
62
- pre .literal,
63
- pre .symbol,
64
- pre .ruby .symbol .string,
65
- pre .number,
66
- pre .css .function,
67
- pre .clojure .attribute {
68
  color: #066;
69
  }
70
 
71
- pre .class .title,
72
- pre .haskell .type,
73
- pre .smalltalk .class,
74
- pre .javadoctag,
75
- pre .yardoctag,
76
- pre .phpdoc,
77
- pre .typename,
78
- pre .tag .attribute,
79
- pre .doctype,
80
- pre .class .id,
81
- pre .built_in,
82
- pre .setting,
83
- pre .params,
84
- pre .variable,
85
- pre .clojure .title {
86
  color: #606;
87
  }
88
 
89
- pre .css .tag,
90
- pre .rules .property,
91
- pre .pseudo,
92
- pre .subst {
93
  color: #000;
94
  }
95
 
96
- pre .css .class, pre .css .id {
 
97
  color: #9B703F;
98
  }
99
 
100
- pre .value .important {
101
  color: #ff7700;
102
  font-weight: bold;
103
  }
104
 
105
- pre .rules .keyword {
106
  color: #C5AF75;
107
  }
108
 
109
- pre .annotation,
110
- pre .apache .sqbracket,
111
- pre .nginx .built_in {
112
  color: #9B859D;
113
  }
114
 
115
- pre .preprocessor,
116
- pre .preprocessor *,
117
- pre .pragma {
118
  color: #444;
119
  }
120
 
121
- pre .tex .formula {
122
  background-color: #EEE;
123
  font-style: italic;
124
  }
125
 
126
- pre .diff .header,
127
- pre .chunk {
128
  color: #808080;
129
  font-weight: bold;
130
  }
131
 
132
- pre .diff .change {
133
  background-color: #BCCFF9;
134
  }
135
 
136
- pre .addition {
137
  background-color: #BAEEBA;
138
  }
139
 
140
- pre .deletion {
141
  background-color: #FFC8BD;
142
  }
143
 
144
- pre .comment .yardoctag {
145
  font-weight: bold;
146
  }
4
 
5
  */
6
 
7
+ .hljs {
8
  display: block; padding: 0.5em;
9
  background: white; color: black;
10
  }
11
 
12
+ .hljs-comment,
13
+ .hljs-template_comment,
14
+ .hljs-javadoc,
15
+ .hljs-comment * {
16
  color: #800;
17
  }
18
 
19
+ .hljs-keyword,
20
+ .method,
21
+ .hljs-list .hljs-title,
22
+ .clojure .hljs-built_in,
23
+ .nginx .hljs-title,
24
+ .hljs-tag .hljs-title,
25
+ .setting .hljs-value,
26
+ .hljs-winutils,
27
+ .tex .hljs-command,
28
+ .http .hljs-title,
29
+ .hljs-request,
30
+ .hljs-status {
31
  color: #008;
32
  }
33
 
34
+ .hljs-envvar,
35
+ .tex .hljs-special {
36
  color: #660;
37
  }
38
 
39
+ .hljs-string,
40
+ .hljs-tag .hljs-value,
41
+ .hljs-cdata,
42
+ .hljs-filter .hljs-argument,
43
+ .hljs-attr_selector,
44
+ .apache .hljs-cbracket,
45
+ .hljs-date,
46
+ .hljs-regexp,
47
+ .coffeescript .hljs-attribute {
48
  color: #080;
49
  }
50
 
51
+ .hljs-sub .hljs-identifier,
52
+ .hljs-pi,
53
+ .hljs-tag,
54
+ .hljs-tag .hljs-keyword,
55
+ .hljs-decorator,
56
+ .ini .hljs-title,
57
+ .hljs-shebang,
58
+ .hljs-prompt,
59
+ .hljs-hexcolor,
60
+ .hljs-rules .hljs-value,
61
+ .css .hljs-value .hljs-number,
62
+ .hljs-literal,
63
+ .hljs-symbol,
64
+ .ruby .hljs-symbol .hljs-string,
65
+ .hljs-number,
66
+ .css .hljs-function,
67
+ .clojure .hljs-attribute {
68
  color: #066;
69
  }
70
 
71
+ .hljs-class .hljs-title,
72
+ .haskell .hljs-type,
73
+ .smalltalk .hljs-class,
74
+ .hljs-javadoctag,
75
+ .hljs-yardoctag,
76
+ .hljs-phpdoc,
77
+ .hljs-typename,
78
+ .hljs-tag .hljs-attribute,
79
+ .hljs-doctype,
80
+ .hljs-class .hljs-id,
81
+ .hljs-built_in,
82
+ .setting,
83
+ .hljs-params,
84
+ .hljs-variable,
85
+ .clojure .hljs-title {
86
  color: #606;
87
  }
88
 
89
+ .css .hljs-tag,
90
+ .hljs-rules .hljs-property,
91
+ .hljs-pseudo,
92
+ .hljs-subst {
93
  color: #000;
94
  }
95
 
96
+ .css .hljs-class,
97
+ .css .hljs-id {
98
  color: #9B703F;
99
  }
100
 
101
+ .hljs-value .hljs-important {
102
  color: #ff7700;
103
  font-weight: bold;
104
  }
105
 
106
+ .hljs-rules .hljs-keyword {
107
  color: #C5AF75;
108
  }
109
 
110
+ .hljs-annotation,
111
+ .apache .hljs-sqbracket,
112
+ .nginx .hljs-built_in {
113
  color: #9B859D;
114
  }
115
 
116
+ .hljs-preprocessor,
117
+ .hljs-preprocessor *,
118
+ .hljs-pragma {
119
  color: #444;
120
  }
121
 
122
+ .tex .hljs-formula {
123
  background-color: #EEE;
124
  font-style: italic;
125
  }
126
 
127
+ .diff .hljs-header,
128
+ .hljs-chunk {
129
  color: #808080;
130
  font-weight: bold;
131
  }
132
 
133
+ .diff .hljs-change {
134
  background-color: #BCCFF9;
135
  }
136
 
137
+ .hljs-addition {
138
  background-color: #BAEEBA;
139
  }
140
 
141
+ .hljs-deletion {
142
  background-color: #FFC8BD;
143
  }
144
 
145
+ .hljs-comment .hljs-yardoctag {
146
  font-weight: bold;
147
  }
skin/adminhtml/default/default/markdown/highlight/styles/idea.css CHANGED
@@ -4,119 +4,119 @@ Intellij Idea-like styling (c) Vasily Polovnyov <vast@whiteants.net>
4
 
5
  */
6
 
7
- pre code {
8
  display: block; padding: 0.5em;
9
  color: #000;
10
  background: #fff;
11
  }
12
 
13
- pre .subst,
14
- pre .title {
15
  font-weight: normal;
16
  color: #000;
17
  }
18
 
19
- pre .comment,
20
- pre .template_comment,
21
- pre .javadoc,
22
- pre .diff .header {
23
  color: #808080;
24
  font-style: italic;
25
  }
26
 
27
- pre .annotation,
28
- pre .decorator,
29
- pre .preprocessor,
30
- pre .pragma,
31
- pre .doctype,
32
- pre .pi,
33
- pre .chunk,
34
- pre .shebang,
35
- pre .apache .cbracket,
36
- pre .prompt,
37
- pre .http .title {
38
  color: #808000;
39
  }
40
 
41
- pre .tag,
42
- pre .pi {
43
  background: #efefef;
44
  }
45
 
46
- pre .tag .title,
47
- pre .id,
48
- pre .attr_selector,
49
- pre .pseudo,
50
- pre .literal,
51
- pre .keyword,
52
- pre .hexcolor,
53
- pre .css .function,
54
- pre .ini .title,
55
- pre .css .class,
56
- pre .list .title,
57
- pre .clojure .title,
58
- pre .nginx .title,
59
- pre .tex .command,
60
- pre .request,
61
- pre .status {
62
  font-weight: bold;
63
  color: #000080;
64
  }
65
 
66
- pre .attribute,
67
- pre .rules .keyword,
68
- pre .number,
69
- pre .date,
70
- pre .regexp,
71
- pre .tex .special {
72
  font-weight: bold;
73
  color: #0000ff;
74
  }
75
 
76
- pre .number,
77
- pre .regexp {
78
  font-weight: normal;
79
  }
80
 
81
- pre .string,
82
- pre .value,
83
- pre .filter .argument,
84
- pre .css .function .params,
85
- pre .apache .tag {
86
  color: #008000;
87
  font-weight: bold;
88
  }
89
 
90
- pre .symbol,
91
- pre .ruby .symbol .string,
92
- pre .char,
93
- pre .tex .formula {
94
  color: #000;
95
  background: #d0eded;
96
  font-style: italic;
97
  }
98
 
99
- pre .phpdoc,
100
- pre .yardoctag,
101
- pre .javadoctag {
102
  text-decoration: underline;
103
  }
104
 
105
- pre .variable,
106
- pre .envvar,
107
- pre .apache .sqbracket,
108
- pre .nginx .built_in {
109
  color: #660e7a;
110
  }
111
 
112
- pre .addition {
113
  background: #baeeba;
114
  }
115
 
116
- pre .deletion {
117
  background: #ffc8bd;
118
  }
119
 
120
- pre .diff .change {
121
  background: #bccff9;
122
  }
4
 
5
  */
6
 
7
+ .hljs {
8
  display: block; padding: 0.5em;
9
  color: #000;
10
  background: #fff;
11
  }
12
 
13
+ .hljs-subst,
14
+ .hljs-title {
15
  font-weight: normal;
16
  color: #000;
17
  }
18
 
19
+ .hljs-comment,
20
+ .hljs-template_comment,
21
+ .hljs-javadoc,
22
+ .diff .hljs-header {
23
  color: #808080;
24
  font-style: italic;
25
  }
26
 
27
+ .hljs-annotation,
28
+ .hljs-decorator,
29
+ .hljs-preprocessor,
30
+ .hljs-pragma,
31
+ .hljs-doctype,
32
+ .hljs-pi,
33
+ .hljs-chunk,
34
+ .hljs-shebang,
35
+ .apache .hljs-cbracket,
36
+ .hljs-prompt,
37
+ .http .hljs-title {
38
  color: #808000;
39
  }
40
 
41
+ .hljs-tag,
42
+ .hljs-pi {
43
  background: #efefef;
44
  }
45
 
46
+ .hljs-tag .hljs-title,
47
+ .hljs-id,
48
+ .hljs-attr_selector,
49
+ .hljs-pseudo,
50
+ .hljs-literal,
51
+ .hljs-keyword,
52
+ .hljs-hexcolor,
53
+ .css .hljs-function,
54
+ .ini .hljs-title,
55
+ .css .hljs-class,
56
+ .hljs-list .hljs-title,
57
+ .clojure .hljs-title,
58
+ .nginx .hljs-title,
59
+ .tex .hljs-command,
60
+ .hljs-request,
61
+ .hljs-status {
62
  font-weight: bold;
63
  color: #000080;
64
  }
65
 
66
+ .hljs-attribute,
67
+ .hljs-rules .hljs-keyword,
68
+ .hljs-number,
69
+ .hljs-date,
70
+ .hljs-regexp,
71
+ .tex .hljs-special {
72
  font-weight: bold;
73
  color: #0000ff;
74
  }
75
 
76
+ .hljs-number,
77
+ .hljs-regexp {
78
  font-weight: normal;
79
  }
80
 
81
+ .hljs-string,
82
+ .hljs-value,
83
+ .hljs-filter .hljs-argument,
84
+ .css .hljs-function .hljs-params,
85
+ .apache .hljs-tag {
86
  color: #008000;
87
  font-weight: bold;
88
  }
89
 
90
+ .hljs-symbol,
91
+ .ruby .hljs-symbol .hljs-string,
92
+ .hljs-char,
93
+ .tex .hljs-formula {
94
  color: #000;
95
  background: #d0eded;
96
  font-style: italic;
97
  }
98
 
99
+ .hljs-phpdoc,
100
+ .hljs-yardoctag,
101
+ .hljs-javadoctag {
102
  text-decoration: underline;
103
  }
104
 
105
+ .hljs-variable,
106
+ .hljs-envvar,
107
+ .apache .hljs-sqbracket,
108
+ .nginx .hljs-built_in {
109
  color: #660e7a;
110
  }
111
 
112
+ .hljs-addition {
113
  background: #baeeba;
114
  }
115
 
116
+ .hljs-deletion {
117
  background: #ffc8bd;
118
  }
119
 
120
+ .diff .hljs-change {
121
  background: #bccff9;
122
  }
skin/adminhtml/default/default/markdown/highlight/styles/ir_black.css CHANGED
@@ -2,104 +2,104 @@
2
  IR_Black style (c) Vasily Mikhailitchenko <vaskas@programica.ru>
3
  */
4
 
5
- pre code {
6
  display: block; padding: 0.5em;
7
  background: #000; color: #f8f8f8;
8
  }
9
 
10
- pre .shebang,
11
- pre .comment,
12
- pre .template_comment,
13
- pre .javadoc {
14
  color: #7c7c7c;
15
  }
16
 
17
- pre .keyword,
18
- pre .tag,
19
- pre .tex .command,
20
- pre .request,
21
- pre .status,
22
- pre .clojure .attribute {
23
  color: #96CBFE;
24
  }
25
 
26
- pre .sub .keyword,
27
- pre .method,
28
- pre .list .title,
29
- pre .nginx .title {
30
  color: #FFFFB6;
31
  }
32
 
33
- pre .string,
34
- pre .tag .value,
35
- pre .cdata,
36
- pre .filter .argument,
37
- pre .attr_selector,
38
- pre .apache .cbracket,
39
- pre .date,
40
- pre .coffeescript .attribute {
41
  color: #A8FF60;
42
  }
43
 
44
- pre .subst {
45
  color: #DAEFA3;
46
  }
47
 
48
- pre .regexp {
49
  color: #E9C062;
50
  }
51
 
52
- pre .title,
53
- pre .sub .identifier,
54
- pre .pi,
55
- pre .decorator,
56
- pre .tex .special,
57
- pre .haskell .type,
58
- pre .constant,
59
- pre .smalltalk .class,
60
- pre .javadoctag,
61
- pre .yardoctag,
62
- pre .phpdoc,
63
- pre .nginx .built_in {
64
  color: #FFFFB6;
65
  }
66
 
67
- pre .symbol,
68
- pre .ruby .symbol .string,
69
- pre .number,
70
- pre .variable,
71
- pre .vbscript,
72
- pre .literal {
73
  color: #C6C5FE;
74
  }
75
 
76
- pre .css .tag {
77
  color: #96CBFE;
78
  }
79
 
80
- pre .css .rules .property,
81
- pre .css .id {
82
  color: #FFFFB6;
83
  }
84
 
85
- pre .css .class {
86
  color: #FFF;
87
  }
88
 
89
- pre .hexcolor {
90
  color: #C6C5FE;
91
  }
92
 
93
- pre .number {
94
  color:#FF73FD;
95
  }
96
 
97
- pre .coffeescript .javascript,
98
- pre .javascript .xml,
99
- pre .tex .formula,
100
- pre .xml .javascript,
101
- pre .xml .vbscript,
102
- pre .xml .css,
103
- pre .xml .cdata {
104
  opacity: 0.7;
105
  }
2
  IR_Black style (c) Vasily Mikhailitchenko <vaskas@programica.ru>
3
  */
4
 
5
+ .hljs {
6
  display: block; padding: 0.5em;
7
  background: #000; color: #f8f8f8;
8
  }
9
 
10
+ .hljs-shebang,
11
+ .hljs-comment,
12
+ .hljs-template_comment,
13
+ .hljs-javadoc {
14
  color: #7c7c7c;
15
  }
16
 
17
+ .hljs-keyword,
18
+ .hljs-tag,
19
+ .tex .hljs-command,
20
+ .hljs-request,
21
+ .hljs-status,
22
+ .clojure .hljs-attribute {
23
  color: #96CBFE;
24
  }
25
 
26
+ .hljs-sub .hljs-keyword,
27
+ .method,
28
+ .hljs-list .hljs-title,
29
+ .nginx .hljs-title {
30
  color: #FFFFB6;
31
  }
32
 
33
+ .hljs-string,
34
+ .hljs-tag .hljs-value,
35
+ .hljs-cdata,
36
+ .hljs-filter .hljs-argument,
37
+ .hljs-attr_selector,
38
+ .apache .hljs-cbracket,
39
+ .hljs-date,
40
+ .coffeescript .hljs-attribute {
41
  color: #A8FF60;
42
  }
43
 
44
+ .hljs-subst {
45
  color: #DAEFA3;
46
  }
47
 
48
+ .hljs-regexp {
49
  color: #E9C062;
50
  }
51
 
52
+ .hljs-title,
53
+ .hljs-sub .hljs-identifier,
54
+ .hljs-pi,
55
+ .hljs-decorator,
56
+ .tex .hljs-special,
57
+ .haskell .hljs-type,
58
+ .hljs-constant,
59
+ .smalltalk .hljs-class,
60
+ .hljs-javadoctag,
61
+ .hljs-yardoctag,
62
+ .hljs-phpdoc,
63
+ .nginx .hljs-built_in {
64
  color: #FFFFB6;
65
  }
66
 
67
+ .hljs-symbol,
68
+ .ruby .hljs-symbol .hljs-string,
69
+ .hljs-number,
70
+ .hljs-variable,
71
+ .vbscript,
72
+ .hljs-literal {
73
  color: #C6C5FE;
74
  }
75
 
76
+ .css .hljs-tag {
77
  color: #96CBFE;
78
  }
79
 
80
+ .css .hljs-rules .hljs-property,
81
+ .css .hljs-id {
82
  color: #FFFFB6;
83
  }
84
 
85
+ .css .hljs-class {
86
  color: #FFF;
87
  }
88
 
89
+ .hljs-hexcolor {
90
  color: #C6C5FE;
91
  }
92
 
93
+ .hljs-number {
94
  color:#FF73FD;
95
  }
96
 
97
+ .coffeescript .javascript,
98
+ .javascript .xml,
99
+ .tex .hljs-formula,
100
+ .xml .javascript,
101
+ .xml .vbscript,
102
+ .xml .css,
103
+ .xml .hljs-cdata {
104
  opacity: 0.7;
105
  }
skin/adminhtml/default/default/markdown/highlight/styles/magula.css CHANGED
@@ -7,116 +7,116 @@ Date: 2009-01-03
7
  Music: Aphex Twin / Xtal
8
  */
9
 
10
- pre code {
11
  display: block; padding: 0.5em;
12
  background-color: #f4f4f4;
13
  }
14
 
15
- pre code,
16
- pre .subst,
17
- pre .lisp .title,
18
- pre .clojure .built_in {
19
  color: black;
20
  }
21
 
22
- pre .string,
23
- pre .title,
24
- pre .parent,
25
- pre .tag .value,
26
- pre .rules .value,
27
- pre .rules .value .number,
28
- pre .preprocessor,
29
- pre .pragma,
30
- pre .ruby .symbol,
31
- pre .ruby .symbol .string,
32
- pre .aggregate,
33
- pre .template_tag,
34
- pre .django .variable,
35
- pre .smalltalk .class,
36
- pre .addition,
37
- pre .flow,
38
- pre .stream,
39
- pre .bash .variable,
40
- pre .apache .cbracket,
41
- pre .coffeescript .attribute {
42
  color: #050;
43
  }
44
 
45
- pre .comment,
46
- pre .annotation,
47
- pre .template_comment,
48
- pre .diff .header,
49
- pre .chunk {
50
  color: #777;
51
  }
52
 
53
- pre .number,
54
- pre .date,
55
- pre .regexp,
56
- pre .literal,
57
- pre .smalltalk .symbol,
58
- pre .smalltalk .char,
59
- pre .change,
60
- pre .tex .special {
61
  color: #800;
62
  }
63
 
64
- pre .label,
65
- pre .javadoc,
66
- pre .ruby .string,
67
- pre .decorator,
68
- pre .filter .argument,
69
- pre .localvars,
70
- pre .array,
71
- pre .attr_selector,
72
- pre .pseudo,
73
- pre .pi,
74
- pre .doctype,
75
- pre .deletion,
76
- pre .envvar,
77
- pre .shebang,
78
- pre .apache .sqbracket,
79
- pre .nginx .built_in,
80
- pre .tex .formula,
81
- pre .prompt,
82
- pre .clojure .attribute {
83
  color: #00e;
84
  }
85
 
86
- pre .keyword,
87
- pre .id,
88
- pre .phpdoc,
89
- pre .title,
90
- pre .built_in,
91
- pre .aggregate,
92
- pre .smalltalk .class,
93
- pre .winutils,
94
- pre .bash .variable,
95
- pre .apache .tag,
96
- pre .xml .tag,
97
- pre .tex .command,
98
- pre .request,
99
- pre .status {
100
  font-weight: bold;
101
  color: navy;
102
  }
103
 
104
- pre .nginx .built_in {
105
  font-weight: normal;
106
  }
107
 
108
- pre .coffeescript .javascript,
109
- pre .javascript .xml,
110
- pre .tex .formula,
111
- pre .xml .javascript,
112
- pre .xml .vbscript,
113
- pre .xml .css,
114
- pre .xml .cdata {
115
  opacity: 0.5;
116
  }
117
 
118
  /* --- */
119
- pre .apache .tag {
120
  font-weight: bold;
121
  color: blue;
122
  }
7
  Music: Aphex Twin / Xtal
8
  */
9
 
10
+ .hljs {
11
  display: block; padding: 0.5em;
12
  background-color: #f4f4f4;
13
  }
14
 
15
+ .hljs,
16
+ .hljs-subst,
17
+ .lisp .hljs-title,
18
+ .clojure .hljs-built_in {
19
  color: black;
20
  }
21
 
22
+ .hljs-string,
23
+ .hljs-title,
24
+ .hljs-parent,
25
+ .hljs-tag .hljs-value,
26
+ .hljs-rules .hljs-value,
27
+ .hljs-rules .hljs-value .hljs-number,
28
+ .hljs-preprocessor,
29
+ .hljs-pragma,
30
+ .ruby .hljs-symbol,
31
+ .ruby .hljs-symbol .hljs-string,
32
+ .hljs-aggregate,
33
+ .hljs-template_tag,
34
+ .django .hljs-variable,
35
+ .smalltalk .hljs-class,
36
+ .hljs-addition,
37
+ .hljs-flow,
38
+ .hljs-stream,
39
+ .bash .hljs-variable,
40
+ .apache .hljs-cbracket,
41
+ .coffeescript .hljs-attribute {
42
  color: #050;
43
  }
44
 
45
+ .hljs-comment,
46
+ .hljs-annotation,
47
+ .hljs-template_comment,
48
+ .diff .hljs-header,
49
+ .hljs-chunk {
50
  color: #777;
51
  }
52
 
53
+ .hljs-number,
54
+ .hljs-date,
55
+ .hljs-regexp,
56
+ .hljs-literal,
57
+ .smalltalk .hljs-symbol,
58
+ .smalltalk .hljs-char,
59
+ .hljs-change,
60
+ .tex .hljs-special {
61
  color: #800;
62
  }
63
 
64
+ .hljs-label,
65
+ .hljs-javadoc,
66
+ .ruby .hljs-string,
67
+ .hljs-decorator,
68
+ .hljs-filter .hljs-argument,
69
+ .hljs-localvars,
70
+ .hljs-array,
71
+ .hljs-attr_selector,
72
+ .hljs-pseudo,
73
+ .hljs-pi,
74
+ .hljs-doctype,
75
+ .hljs-deletion,
76
+ .hljs-envvar,
77
+ .hljs-shebang,
78
+ .apache .hljs-sqbracket,
79
+ .nginx .hljs-built_in,
80
+ .tex .hljs-formula,
81
+ .hljs-prompt,
82
+ .clojure .hljs-attribute {
83
  color: #00e;
84
  }
85
 
86
+ .hljs-keyword,
87
+ .hljs-id,
88
+ .hljs-phpdoc,
89
+ .hljs-title,
90
+ .hljs-built_in,
91
+ .hljs-aggregate,
92
+ .smalltalk .hljs-class,
93
+ .hljs-winutils,
94
+ .bash .hljs-variable,
95
+ .apache .hljs-tag,
96
+ .xml .hljs-tag,
97
+ .tex .hljs-command,
98
+ .hljs-request,
99
+ .hljs-status {
100
  font-weight: bold;
101
  color: navy;
102
  }
103
 
104
+ .nginx .hljs-built_in {
105
  font-weight: normal;
106
  }
107
 
108
+ .coffeescript .javascript,
109
+ .javascript .xml,
110
+ .tex .hljs-formula,
111
+ .xml .javascript,
112
+ .xml .vbscript,
113
+ .xml .css,
114
+ .xml .hljs-cdata {
115
  opacity: 0.5;
116
  }
117
 
118
  /* --- */
119
+ .apache .hljs-tag {
120
  font-weight: bold;
121
  color: blue;
122
  }
skin/adminhtml/default/default/markdown/highlight/styles/mono-blue.css CHANGED
@@ -1,62 +1,62 @@
1
  /*
2
  Five-color theme from a single blue hue.
3
  */
4
- pre code {
5
  display: block; padding: 0.5em;
6
  background: #EAEEF3; color: #00193A;
7
  }
8
 
9
- pre .keyword,
10
- pre .title,
11
- pre .important,
12
- pre .request,
13
- pre .header,
14
- pre .javadoctag {
15
  font-weight: bold;
16
  }
17
 
18
- pre .comment,
19
- pre .chunk,
20
- pre .template_comment {
21
  color: #738191;
22
  }
23
 
24
- pre .string,
25
- pre .title,
26
- pre .parent,
27
- pre .built_in,
28
- pre .literal,
29
- pre .filename,
30
- pre .value,
31
- pre .addition,
32
- pre .tag,
33
- pre .argument,
34
- pre .link_label,
35
- pre .blockquote,
36
- pre .header {
37
  color: #0048AB;
38
  }
39
 
40
- pre .decorator,
41
- pre .prompt,
42
- pre .yardoctag,
43
- pre .subst,
44
- pre .symbol,
45
- pre .doctype,
46
- pre .regexp,
47
- pre .preprocessor,
48
- pre .pragma,
49
- pre .pi,
50
- pre .attribute,
51
- pre .attr_selector,
52
- pre .javadoc,
53
- pre .xmlDocTag,
54
- pre .deletion,
55
- pre .shebang,
56
- pre .string .variable,
57
- pre .link_url,
58
- pre .bullet,
59
- pre .sqbracket,
60
- pre .phony {
61
  color: #4C81C9;
62
  }
1
  /*
2
  Five-color theme from a single blue hue.
3
  */
4
+ .hljs {
5
  display: block; padding: 0.5em;
6
  background: #EAEEF3; color: #00193A;
7
  }
8
 
9
+ .hljs-keyword,
10
+ .hljs-title,
11
+ .hljs-important,
12
+ .hljs-request,
13
+ .hljs-header,
14
+ .hljs-javadoctag {
15
  font-weight: bold;
16
  }
17
 
18
+ .hljs-comment,
19
+ .hljs-chunk,
20
+ .hljs-template_comment {
21
  color: #738191;
22
  }
23
 
24
+ .hljs-string,
25
+ .hljs-title,
26
+ .hljs-parent,
27
+ .hljs-built_in,
28
+ .hljs-literal,
29
+ .hljs-filename,
30
+ .hljs-value,
31
+ .hljs-addition,
32
+ .hljs-tag,
33
+ .hljs-argument,
34
+ .hljs-link_label,
35
+ .hljs-blockquote,
36
+ .hljs-header {
37
  color: #0048AB;
38
  }
39
 
40
+ .hljs-decorator,
41
+ .hljs-prompt,
42
+ .hljs-yardoctag,
43
+ .hljs-subst,
44
+ .hljs-symbol,
45
+ .hljs-doctype,
46
+ .hljs-regexp,
47
+ .hljs-preprocessor,
48
+ .hljs-pragma,
49
+ .hljs-pi,
50
+ .hljs-attribute,
51
+ .hljs-attr_selector,
52
+ .hljs-javadoc,
53
+ .hljs-xmlDocTag,
54
+ .hljs-deletion,
55
+ .hljs-shebang,
56
+ .hljs-string .hljs-variable,
57
+ .hljs-link_url,
58
+ .hljs-bullet,
59
+ .hljs-sqbracket,
60
+ .hljs-phony {
61
  color: #4C81C9;
62
  }
skin/adminhtml/default/default/markdown/highlight/styles/monokai.css CHANGED
@@ -2,126 +2,126 @@
2
  Monokai style - ported by Luigi Maselli - http://grigio.org
3
  */
4
 
5
- pre code {
6
  display: block; padding: 0.5em;
7
  background: #272822;
8
  }
9
 
10
- pre .tag,
11
- pre .tag .title,
12
- pre .keyword,
13
- pre .literal,
14
- pre .strong,
15
- pre .change,
16
- pre .winutils,
17
- pre .flow,
18
- pre .lisp .title,
19
- pre .clojure .built_in,
20
- pre .nginx .title,
21
- pre .tex .special {
22
  color: #F92672;
23
  }
24
 
25
- pre code {
26
  color: #DDD;
27
  }
28
 
29
- pre code .constant,
30
- pre .asciidoc .code {
31
  color: #66D9EF;
32
  }
33
 
34
- pre .code,
35
- pre .class .title,
36
- pre .header {
37
  color: white;
38
  }
39
 
40
- pre .link_label,
41
- pre .attribute,
42
- pre .symbol,
43
- pre .symbol .string,
44
- pre .value,
45
- pre .regexp {
46
  color: #BF79DB;
47
  }
48
 
49
- pre .link_url,
50
- pre .tag .value,
51
- pre .string,
52
- pre .bullet,
53
- pre .subst,
54
- pre .title,
55
- pre .emphasis,
56
- pre .haskell .type,
57
- pre .preprocessor,
58
- pre .pragma,
59
- pre .ruby .class .parent,
60
- pre .built_in,
61
- pre .sql .aggregate,
62
- pre .django .template_tag,
63
- pre .django .variable,
64
- pre .smalltalk .class,
65
- pre .javadoc,
66
- pre .django .filter .argument,
67
- pre .smalltalk .localvars,
68
- pre .smalltalk .array,
69
- pre .attr_selector,
70
- pre .pseudo,
71
- pre .addition,
72
- pre .stream,
73
- pre .envvar,
74
- pre .apache .tag,
75
- pre .apache .cbracket,
76
- pre .tex .command,
77
- pre .prompt {
78
  color: #A6E22E;
79
  }
80
 
81
- pre .comment,
82
- pre .java .annotation,
83
- pre .smartquote,
84
- pre .blockquote,
85
- pre .horizontal_rule,
86
- pre .python .decorator,
87
- pre .template_comment,
88
- pre .pi,
89
- pre .doctype,
90
- pre .deletion,
91
- pre .shebang,
92
- pre .apache .sqbracket,
93
- pre .tex .formula {
94
  color: #75715E;
95
  }
96
 
97
- pre .keyword,
98
- pre .literal,
99
- pre .css .id,
100
- pre .phpdoc,
101
- pre .title,
102
- pre .header,
103
- pre .haskell .type,
104
- pre .vbscript .built_in,
105
- pre .sql .aggregate,
106
- pre .rsl .built_in,
107
- pre .smalltalk .class,
108
- pre .diff .header,
109
- pre .chunk,
110
- pre .winutils,
111
- pre .bash .variable,
112
- pre .apache .tag,
113
- pre .tex .special,
114
- pre .request,
115
- pre .status {
116
  font-weight: bold;
117
  }
118
 
119
- pre .coffeescript .javascript,
120
- pre .javascript .xml,
121
- pre .tex .formula,
122
- pre .xml .javascript,
123
- pre .xml .vbscript,
124
- pre .xml .css,
125
- pre .xml .cdata {
126
  opacity: 0.5;
127
  }
2
  Monokai style - ported by Luigi Maselli - http://grigio.org
3
  */
4
 
5
+ .hljs {
6
  display: block; padding: 0.5em;
7
  background: #272822;
8
  }
9
 
10
+ .hljs-tag,
11
+ .hljs-tag .hljs-title,
12
+ .hljs-keyword,
13
+ .hljs-literal,
14
+ .hljs-strong,
15
+ .hljs-change,
16
+ .hljs-winutils,
17
+ .hljs-flow,
18
+ .lisp .hljs-title,
19
+ .clojure .hljs-built_in,
20
+ .nginx .hljs-title,
21
+ .tex .hljs-special {
22
  color: #F92672;
23
  }
24
 
25
+ .hljs {
26
  color: #DDD;
27
  }
28
 
29
+ .hljs .hljs-constant,
30
+ .asciidoc .hljs-code {
31
  color: #66D9EF;
32
  }
33
 
34
+ .hljs-code,
35
+ .hljs-class .hljs-title,
36
+ .hljs-header {
37
  color: white;
38
  }
39
 
40
+ .hljs-link_label,
41
+ .hljs-attribute,
42
+ .hljs-symbol,
43
+ .hljs-symbol .hljs-string,
44
+ .hljs-value,
45
+ .hljs-regexp {
46
  color: #BF79DB;
47
  }
48
 
49
+ .hljs-link_url,
50
+ .hljs-tag .hljs-value,
51
+ .hljs-string,
52
+ .hljs-bullet,
53
+ .hljs-subst,
54
+ .hljs-title,
55
+ .hljs-emphasis,
56
+ .haskell .hljs-type,
57
+ .hljs-preprocessor,
58
+ .hljs-pragma,
59
+ .ruby .hljs-class .hljs-parent,
60
+ .hljs-built_in,
61
+ .sql .hljs-aggregate,
62
+ .django .hljs-template_tag,
63
+ .django .hljs-variable,
64
+ .smalltalk .hljs-class,
65
+ .hljs-javadoc,
66
+ .django .hljs-filter .hljs-argument,
67
+ .smalltalk .hljs-localvars,
68
+ .smalltalk .hljs-array,
69
+ .hljs-attr_selector,
70
+ .hljs-pseudo,
71
+ .hljs-addition,
72
+ .hljs-stream,
73
+ .hljs-envvar,
74
+ .apache .hljs-tag,
75
+ .apache .hljs-cbracket,
76
+ .tex .hljs-command,
77
+ .hljs-prompt {
78
  color: #A6E22E;
79
  }
80
 
81
+ .hljs-comment,
82
+ .java .hljs-annotation,
83
+ .smartquote,
84
+ .hljs-blockquote,
85
+ .hljs-horizontal_rule,
86
+ .python .hljs-decorator,
87
+ .hljs-template_comment,
88
+ .hljs-pi,
89
+ .hljs-doctype,
90
+ .hljs-deletion,
91
+ .hljs-shebang,
92
+ .apache .hljs-sqbracket,
93
+ .tex .hljs-formula {
94
  color: #75715E;
95
  }
96
 
97
+ .hljs-keyword,
98
+ .hljs-literal,
99
+ .css .hljs-id,
100
+ .hljs-phpdoc,
101
+ .hljs-title,
102
+ .hljs-header,
103
+ .haskell .hljs-type,
104
+ .vbscript .hljs-built_in,
105
+ .sql .hljs-aggregate,
106
+ .rsl .hljs-built_in,
107
+ .smalltalk .hljs-class,
108
+ .diff .hljs-header,
109
+ .hljs-chunk,
110
+ .hljs-winutils,
111
+ .bash .hljs-variable,
112
+ .apache .hljs-tag,
113
+ .tex .hljs-special,
114
+ .hljs-request,
115
+ .hljs-status {
116
  font-weight: bold;
117
  }
118
 
119
+ .coffeescript .javascript,
120
+ .javascript .xml,
121
+ .tex .hljs-formula,
122
+ .xml .javascript,
123
+ .xml .vbscript,
124
+ .xml .css,
125
+ .xml .hljs-cdata {
126
  opacity: 0.5;
127
  }
skin/adminhtml/default/default/markdown/highlight/styles/monokai_sublime.css CHANGED
@@ -1,102 +1,149 @@
1
- /*
2
-
3
- Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/
4
-
5
- */
6
-
7
- pre code {
8
- display: block;
9
- padding: 0.5em;
10
- background: #23241f;
11
- }
12
- pre .tag,
13
- pre code {
14
- color: #f8f8f2;
15
- }
16
- pre .keyword,
17
- pre .function,
18
- pre .literal,
19
- pre .change,
20
- pre .winutils,
21
- pre .flow,
22
- pre .lisp .title,
23
- pre .clojure .built_in,
24
- pre .nginx .title,
25
- pre .tex .special {
26
- color: #66d9ef;
27
- }
28
- pre .variable,
29
- pre .params {
30
- color: #fd9720;
31
- }
32
- pre .constant {
33
- color: #66d9ef;
34
- }
35
- pre .title,
36
- pre .class .title,
37
- pre .css .class {
38
- color: #a6e22e;
39
- }
40
- pre .attribute,
41
- pre .symbol,
42
- pre .symbol .string,
43
- pre .tag .title,
44
- pre .value,
45
- pre .css .tag {
46
- color: #f92672;
47
- }
48
- pre .number,
49
- pre .preprocessor,
50
- pre .pragma,
51
- pre .regexp {
52
- color: #ae81ff;
53
- }
54
- pre .tag .value,
55
- pre .string,
56
- pre .css .id,
57
- pre .subst,
58
- pre .haskell .type,
59
- pre .ruby .class .parent,
60
- pre .built_in,
61
- pre .sql .aggregate,
62
- pre .django .template_tag,
63
- pre .django .variable,
64
- pre .smalltalk .class,
65
- pre .django .filter .argument,
66
- pre .smalltalk .localvars,
67
- pre .smalltalk .array,
68
- pre .attr_selector,
69
- pre .pseudo,
70
- pre .addition,
71
- pre .stream,
72
- pre .envvar,
73
- pre .apache .tag,
74
- pre .apache .cbracket,
75
- pre .tex .command,
76
- pre .prompt {
77
- color: #e6db74;
78
- }
79
- pre .comment,
80
- pre .javadoc,
81
- pre .java .annotation,
82
- pre .python .decorator,
83
- pre .template_comment,
84
- pre .pi,
85
- pre .doctype,
86
- pre .deletion,
87
- pre .shebang,
88
- pre .apache .sqbracket,
89
- pre .tex .formula {
90
- color: #75715e;
91
- }
92
- pre .coffeescript .javascript,
93
- pre .javascript .xml,
94
- pre .tex .formula {
95
- opacity: 0.5;
96
- }
97
- pre .xml .javascript,
98
- pre .xml .vbscript,
99
- pre .xml .css,
100
- pre .xml .cdata {
101
- opacity: 0.5;
102
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+
3
+ Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/
4
+
5
+ */
6
+
7
+ .hljs {
8
+ display: block;
9
+ padding: 0.5em;
10
+ background: #23241f;
11
+ }
12
+
13
+ .hljs,
14
+ .hljs-tag,
15
+ .css .hljs-rules,
16
+ .css .hljs-value,
17
+ .css .hljs-function
18
+ .hljs-preprocessor,
19
+ .hljs-pragma {
20
+ color: #f8f8f2;
21
+ }
22
+
23
+ .hljs-strongemphasis,
24
+ .hljs-strong,
25
+ .hljs-emphasis {
26
+ color: #a8a8a2;
27
+ }
28
+
29
+ .hljs-bullet,
30
+ .hljs-blockquote,
31
+ .hljs-horizontal_rule,
32
+ .hljs-number,
33
+ .hljs-regexp,
34
+ .alias .hljs-keyword,
35
+ .hljs-literal,
36
+ .hljs-hexcolor {
37
+ color: #ae81ff;
38
+ }
39
+
40
+ .hljs-tag .hljs-value,
41
+ .hljs-code,
42
+ .hljs-title,
43
+ .css .hljs-class,
44
+ .hljs-class .hljs-title:last-child {
45
+ color: #a6e22e;
46
+ }
47
+
48
+ .hljs-link_url {
49
+ font-size: 80%;
50
+ }
51
+
52
+ .hljs-strong,
53
+ .hljs-strongemphasis {
54
+ font-weight: bold;
55
+ }
56
+
57
+ .hljs-emphasis,
58
+ .hljs-strongemphasis,
59
+ .hljs-class .hljs-title:last-child {
60
+ font-style: italic;
61
+ }
62
+
63
+ .hljs-keyword,
64
+ .hljs-function,
65
+ .hljs-change,
66
+ .hljs-winutils,
67
+ .hljs-flow,
68
+ .lisp .hljs-title,
69
+ .clojure .hljs-built_in,
70
+ .nginx .hljs-title,
71
+ .tex .hljs-special,
72
+ .hljs-header,
73
+ .hljs-attribute,
74
+ .hljs-symbol,
75
+ .hljs-symbol .hljs-string,
76
+ .hljs-tag .hljs-title,
77
+ .hljs-value,
78
+ .alias .hljs-keyword:first-child,
79
+ .css .hljs-tag,
80
+ .css .unit,
81
+ .css .hljs-important {
82
+ color: #F92672;
83
+ }
84
+
85
+ .hljs-function .hljs-keyword,
86
+ .hljs-class .hljs-keyword:first-child,
87
+ .hljs-constant,
88
+ .css .hljs-attribute {
89
+ color: #66d9ef;
90
+ }
91
+
92
+ .hljs-variable,
93
+ .hljs-params,
94
+ .hljs-class .hljs-title {
95
+ color: #f8f8f2;
96
+ }
97
+
98
+ .hljs-string,
99
+ .css .hljs-id,
100
+ .hljs-subst,
101
+ .haskell .hljs-type,
102
+ .ruby .hljs-class .hljs-parent,
103
+ .hljs-built_in,
104
+ .sql .hljs-aggregate,
105
+ .django .hljs-template_tag,
106
+ .django .hljs-variable,
107
+ .smalltalk .hljs-class,
108
+ .django .hljs-filter .hljs-argument,
109
+ .smalltalk .hljs-localvars,
110
+ .smalltalk .hljs-array,
111
+ .hljs-attr_selector,
112
+ .hljs-pseudo,
113
+ .hljs-addition,
114
+ .hljs-stream,
115
+ .hljs-envvar,
116
+ .apache .hljs-tag,
117
+ .apache .hljs-cbracket,
118
+ .tex .hljs-command,
119
+ .hljs-prompt,
120
+ .hljs-link_label,
121
+ .hljs-link_url {
122
+ color: #e6db74;
123
+ }
124
+
125
+ .hljs-comment,
126
+ .hljs-javadoc,
127
+ .java .hljs-annotation,
128
+ .python .hljs-decorator,
129
+ .hljs-template_comment,
130
+ .hljs-pi,
131
+ .hljs-doctype,
132
+ .hljs-deletion,
133
+ .hljs-shebang,
134
+ .apache .hljs-sqbracket,
135
+ .tex .hljs-formula {
136
+ color: #75715e;
137
+ }
138
+
139
+ .coffeescript .javascript,
140
+ .javascript .xml,
141
+ .tex .hljs-formula,
142
+ .xml .javascript,
143
+ .xml .vbscript,
144
+ .xml .css,
145
+ .xml .hljs-cdata,
146
+ .xml .php,
147
+ .php .xml {
148
+ opacity: 0.5;
149
+ }
skin/adminhtml/default/default/markdown/highlight/styles/obsidian.css CHANGED
@@ -3,152 +3,152 @@
3
  * ported by Alexander Marenin (http://github.com/ioncreature)
4
  */
5
 
6
- pre code {
7
  display: block; padding: 0.5em;
8
  background: #282B2E;
9
  }
10
 
11
- pre .keyword,
12
- pre .literal,
13
- pre .change,
14
- pre .winutils,
15
- pre .flow,
16
- pre .lisp .title,
17
- pre .clojure .built_in,
18
- pre .nginx .title,
19
- pre .css .id,
20
- pre .tex .special {
21
  color: #93C763;
22
  }
23
 
24
- pre .number {
25
  color: #FFCD22;
26
  }
27
 
28
- pre code {
29
  color: #E0E2E4;
30
  }
31
 
32
- pre .css .tag,
33
- pre .css .pseudo {
34
  color: #D0D2B5;
35
  }
36
 
37
- pre .attribute,
38
- pre code .constant {
39
  color: #668BB0;
40
  }
41
 
42
- pre .xml .attribute {
43
  color: #B3B689;
44
  }
45
 
46
- pre .xml .tag .value {
47
  color: #E8E2B7;
48
  }
49
 
50
- pre .code,
51
- pre .class .title,
52
- pre .header {
53
  color: white;
54
  }
55
 
56
- pre .class,
57
- pre .hexcolor {
58
  color: #93C763;
59
  }
60
 
61
- pre .regexp {
62
  color: #D39745;
63
  }
64
 
65
- pre .at_rule,
66
- pre .at_rule .keyword {
67
  color: #A082BD;
68
  }
69
 
70
- pre .doctype {
71
  color: #557182;
72
  }
73
 
74
- pre .link_url,
75
- pre .tag,
76
- pre .tag .title,
77
- pre .bullet,
78
- pre .subst,
79
- pre .emphasis,
80
- pre .haskell .type,
81
- pre .preprocessor,
82
- pre .pragma,
83
- pre .ruby .class .parent,
84
- pre .built_in,
85
- pre .sql .aggregate,
86
- pre .django .template_tag,
87
- pre .django .variable,
88
- pre .smalltalk .class,
89
- pre .javadoc,
90
- pre .django .filter .argument,
91
- pre .smalltalk .localvars,
92
- pre .smalltalk .array,
93
- pre .attr_selector,
94
- pre .pseudo,
95
- pre .addition,
96
- pre .stream,
97
- pre .envvar,
98
- pre .apache .tag,
99
- pre .apache .cbracket,
100
- pre .tex .command,
101
- pre .prompt {
102
  color: #8CBBAD;
103
  }
104
 
105
- pre .string {
106
  color: #EC7600;
107
  }
108
 
109
- pre .comment,
110
- pre .java .annotation,
111
- pre .blockquote,
112
- pre .horizontal_rule,
113
- pre .python .decorator,
114
- pre .template_comment,
115
- pre .pi,
116
- pre .deletion,
117
- pre .shebang,
118
- pre .apache .sqbracket,
119
- pre .tex .formula {
120
  color: #818E96;
121
  }
122
 
123
- pre .keyword,
124
- pre .literal,
125
- pre .css .id,
126
- pre .phpdoc,
127
- pre .title,
128
- pre .header,
129
- pre .haskell .type,
130
- pre .vbscript .built_in,
131
- pre .sql .aggregate,
132
- pre .rsl .built_in,
133
- pre .smalltalk .class,
134
- pre .diff .header,
135
- pre .chunk,
136
- pre .winutils,
137
- pre .bash .variable,
138
- pre .apache .tag,
139
- pre .tex .special,
140
- pre .request,
141
- pre .at_rule .keyword,
142
- pre .status {
143
  font-weight: bold;
144
  }
145
 
146
- pre .coffeescript .javascript,
147
- pre .javascript .xml,
148
- pre .tex .formula,
149
- pre .xml .javascript,
150
- pre .xml .vbscript,
151
- pre .xml .css,
152
- pre .xml .cdata {
153
  opacity: 0.5;
154
  }
3
  * ported by Alexander Marenin (http://github.com/ioncreature)
4
  */
5
 
6
+ .hljs {
7
  display: block; padding: 0.5em;
8
  background: #282B2E;
9
  }
10
 
11
+ .hljs-keyword,
12
+ .hljs-literal,
13
+ .hljs-change,
14
+ .hljs-winutils,
15
+ .hljs-flow,
16
+ .lisp .hljs-title,
17
+ .clojure .hljs-built_in,
18
+ .nginx .hljs-title,
19
+ .css .hljs-id,
20
+ .tex .hljs-special {
21
  color: #93C763;
22
  }
23
 
24
+ .hljs-number {
25
  color: #FFCD22;
26
  }
27
 
28
+ .hljs {
29
  color: #E0E2E4;
30
  }
31
 
32
+ .css .hljs-tag,
33
+ .css .hljs-pseudo {
34
  color: #D0D2B5;
35
  }
36
 
37
+ .hljs-attribute,
38
+ .hljs .hljs-constant {
39
  color: #668BB0;
40
  }
41
 
42
+ .xml .hljs-attribute {
43
  color: #B3B689;
44
  }
45
 
46
+ .xml .hljs-tag .hljs-value {
47
  color: #E8E2B7;
48
  }
49
 
50
+ .hljs-code,
51
+ .hljs-class .hljs-title,
52
+ .hljs-header {
53
  color: white;
54
  }
55
 
56
+ .hljs-class,
57
+ .hljs-hexcolor {
58
  color: #93C763;
59
  }
60
 
61
+ .hljs-regexp {
62
  color: #D39745;
63
  }
64
 
65
+ .hljs-at_rule,
66
+ .hljs-at_rule .hljs-keyword {
67
  color: #A082BD;
68
  }
69
 
70
+ .hljs-doctype {
71
  color: #557182;
72
  }
73
 
74
+ .hljs-link_url,
75
+ .hljs-tag,
76
+ .hljs-tag .hljs-title,
77
+ .hljs-bullet,
78
+ .hljs-subst,
79
+ .hljs-emphasis,
80
+ .haskell .hljs-type,
81
+ .hljs-preprocessor,
82
+ .hljs-pragma,
83
+ .ruby .hljs-class .hljs-parent,
84
+ .hljs-built_in,
85
+ .sql .hljs-aggregate,
86
+ .django .hljs-template_tag,
87
+ .django .hljs-variable,
88
+ .smalltalk .hljs-class,
89
+ .hljs-javadoc,
90
+ .django .hljs-filter .hljs-argument,
91
+ .smalltalk .hljs-localvars,
92
+ .smalltalk .hljs-array,
93
+ .hljs-attr_selector,
94
+ .hljs-pseudo,
95
+ .hljs-addition,
96
+ .hljs-stream,
97
+ .hljs-envvar,
98
+ .apache .hljs-tag,
99
+ .apache .hljs-cbracket,
100
+ .tex .hljs-command,
101
+ .hljs-prompt {
102
  color: #8CBBAD;
103
  }
104
 
105
+ .hljs-string {
106
  color: #EC7600;
107
  }
108
 
109
+ .hljs-comment,
110
+ .java .hljs-annotation,
111
+ .hljs-blockquote,
112
+ .hljs-horizontal_rule,
113
+ .python .hljs-decorator,
114
+ .hljs-template_comment,
115
+ .hljs-pi,
116
+ .hljs-deletion,
117
+ .hljs-shebang,
118
+ .apache .hljs-sqbracket,
119
+ .tex .hljs-formula {
120
  color: #818E96;
121
  }
122
 
123
+ .hljs-keyword,
124
+ .hljs-literal,
125
+ .css .hljs-id,
126
+ .hljs-phpdoc,
127
+ .hljs-title,
128
+ .hljs-header,
129
+ .haskell .hljs-type,
130
+ .vbscript .hljs-built_in,
131
+ .sql .hljs-aggregate,
132
+ .rsl .hljs-built_in,
133
+ .smalltalk .hljs-class,
134
+ .diff .hljs-header,
135
+ .hljs-chunk,
136
+ .hljs-winutils,
137
+ .bash .hljs-variable,
138
+ .apache .hljs-tag,
139
+ .tex .hljs-special,
140
+ .hljs-request,
141
+ .hljs-at_rule .hljs-keyword,
142
+ .hljs-status {
143
  font-weight: bold;
144
  }
145
 
146
+ .coffeescript .javascript,
147
+ .javascript .xml,
148
+ .tex .hljs-formula,
149
+ .xml .javascript,
150
+ .xml .vbscript,
151
+ .xml .css,
152
+ .xml .hljs-cdata {
153
  opacity: 0.5;
154
  }
skin/adminhtml/default/default/markdown/highlight/styles/paraiso.dark.css ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Paraíso (dark)
3
+ Created by Jan T. Sott (http://github.com/idleberg)
4
+ Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
5
+ */
6
+
7
+ /* Paraíso Comment */
8
+ .hljs-comment,
9
+ .hljs-title {
10
+ color: #8d8687;
11
+ }
12
+
13
+ /* Paraíso Red */
14
+ .hljs-variable,
15
+ .hljs-attribute,
16
+ .hljs-tag,
17
+ .hljs-regexp,
18
+ .ruby .hljs-constant,
19
+ .xml .hljs-tag .hljs-title,
20
+ .xml .hljs-pi,
21
+ .xml .hljs-doctype,
22
+ .html .hljs-doctype,
23
+ .css .hljs-id,
24
+ .css .hljs-class,
25
+ .css .hljs-pseudo {
26
+ color: #ef6155;
27
+ }
28
+
29
+ /* Paraíso Orange */
30
+ .hljs-number,
31
+ .hljs-preprocessor,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #f99b15;
37
+ }
38
+
39
+ /* Paraíso Yellow */
40
+ .ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #fec418;
43
+ }
44
+
45
+ /* Paraíso Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #48b685;
53
+ }
54
+
55
+ /* Paraíso Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #5bc4bf;
58
+ }
59
+
60
+ /* Paraíso Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #06b6ef;
70
+ }
71
+
72
+ /* Paraíso Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #815ba4;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #2f1e2e;
81
+ color: #a39e9b;
82
+ padding: 0.5em;
83
+ }
84
+
85
+ .coffeescript .javascript,
86
+ .javascript .xml,
87
+ .tex .hljs-formula,
88
+ .xml .javascript,
89
+ .xml .vbscript,
90
+ .xml .css,
91
+ .xml .hljs-cdata {
92
+ opacity: 0.5;
93
+ }
skin/adminhtml/default/default/markdown/highlight/styles/paraiso.light.css ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Paraíso (light)
3
+ Created by Jan T. Sott (http://github.com/idleberg)
4
+ Inspired by the art of Rubens LP (http://www.rubenslp.com.br)
5
+ */
6
+
7
+ /* Paraíso Comment */
8
+ .hljs-comment,
9
+ .hljs-title {
10
+ color: #776e71;
11
+ }
12
+
13
+ /* Paraíso Red */
14
+ .hljs-variable,
15
+ .hljs-attribute,
16
+ .hljs-tag,
17
+ .hljs-regexp,
18
+ .ruby .hljs-constant,
19
+ .xml .hljs-tag .hljs-title,
20
+ .xml .hljs-pi,
21
+ .xml .hljs-doctype,
22
+ .html .hljs-doctype,
23
+ .css .hljs-id,
24
+ .css .hljs-class,
25
+ .css .hljs-pseudo {
26
+ color: #ef6155;
27
+ }
28
+
29
+ /* Paraíso Orange */
30
+ .hljs-number,
31
+ .hljs-preprocessor,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #f99b15;
37
+ }
38
+
39
+ /* Paraíso Yellow */
40
+ .ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #fec418;
43
+ }
44
+
45
+ /* Paraíso Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #48b685;
53
+ }
54
+
55
+ /* Paraíso Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #5bc4bf;
58
+ }
59
+
60
+ /* Paraíso Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #06b6ef;
70
+ }
71
+
72
+ /* Paraíso Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #815ba4;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ background: #e7e9db;
81
+ color: #4f424c;
82
+ padding: 0.5em;
83
+ }
84
+
85
+ .coffeescript .javascript,
86
+ .javascript .xml,
87
+ .tex .hljs-formula,
88
+ .xml .javascript,
89
+ .xml .vbscript,
90
+ .xml .css,
91
+ .xml .hljs-cdata {
92
+ opacity: 0.5;
93
+ }
skin/adminhtml/default/default/markdown/highlight/styles/pojoaque.css CHANGED
@@ -6,100 +6,101 @@ Based on Solarized Style from http://ethanschoonover.com/solarized
6
 
7
  */
8
 
9
- pre code {
10
  display: block; padding: 0.5em;
11
  color: #DCCF8F;
12
  background: url(./pojoaque.jpg) repeat scroll left top #181914;
13
  }
14
 
15
- pre .comment,
16
- pre .template_comment,
17
- pre .diff .header,
18
- pre .doctype,
19
- pre .lisp .string,
20
- pre .javadoc {
21
  color: #586e75;
22
  font-style: italic;
23
  }
24
 
25
- pre .keyword,
26
- pre .css .rule .keyword,
27
- pre .winutils,
28
- pre .javascript .title,
29
- pre .method,
30
- pre .addition,
31
- pre .css .tag,
32
- pre .clojure .title,
33
- pre .nginx .title {
34
  color: #B64926;
35
  }
36
 
37
- pre .number,
38
- pre .command,
39
- pre .string,
40
- pre .tag .value,
41
- pre .phpdoc,
42
- pre .tex .formula,
43
- pre .regexp,
44
- pre .hexcolor {
45
  color: #468966;
46
  }
47
 
48
- pre .title,
49
- pre .localvars,
50
- pre .function .title,
51
- pre .chunk,
52
- pre .decorator,
53
- pre .built_in,
54
- pre .lisp .title,
55
- pre .clojure .built_in,
56
- pre .identifier,
57
- pre .id {
58
  color: #FFB03B;
59
  }
60
 
61
- pre .attribute,
62
- pre .variable,
63
- pre .lisp .body,
64
- pre .smalltalk .number,
65
- pre .constant,
66
- pre .class .title,
67
- pre .parent,
68
- pre .haskell .type {
69
  color: #b58900;
70
  }
71
 
72
- pre .css .attribute {
73
  color: #b89859;
74
  }
75
 
76
- pre .css .number,pre .css .hexcolor{
 
77
  color: #DCCF8F;
78
  }
79
 
80
- pre .css .class {
81
  color: #d3a60c;
82
  }
83
 
84
- pre .preprocessor,
85
- pre .pragma,
86
- pre .pi,
87
- pre .shebang,
88
- pre .symbol,
89
- pre .symbol .string,
90
- pre .diff .change,
91
- pre .special,
92
- pre .attr_selector,
93
- pre .important,
94
- pre .subst,
95
- pre .cdata {
96
  color: #cb4b16;
97
  }
98
 
99
- pre .deletion {
100
  color: #dc322f;
101
  }
102
 
103
- pre .tex .formula {
104
  background: #073642;
105
  }
6
 
7
  */
8
 
9
+ .hljs {
10
  display: block; padding: 0.5em;
11
  color: #DCCF8F;
12
  background: url(./pojoaque.jpg) repeat scroll left top #181914;
13
  }
14
 
15
+ .hljs-comment,
16
+ .hljs-template_comment,
17
+ .diff .hljs-header,
18
+ .hljs-doctype,
19
+ .lisp .hljs-string,
20
+ .hljs-javadoc {
21
  color: #586e75;
22
  font-style: italic;
23
  }
24
 
25
+ .hljs-keyword,
26
+ .css .rule .hljs-keyword,
27
+ .hljs-winutils,
28
+ .javascript .hljs-title,
29
+ .method,
30
+ .hljs-addition,
31
+ .css .hljs-tag,
32
+ .clojure .hljs-title,
33
+ .nginx .hljs-title {
34
  color: #B64926;
35
  }
36
 
37
+ .hljs-number,
38
+ .hljs-command,
39
+ .hljs-string,
40
+ .hljs-tag .hljs-value,
41
+ .hljs-phpdoc,
42
+ .tex .hljs-formula,
43
+ .hljs-regexp,
44
+ .hljs-hexcolor {
45
  color: #468966;
46
  }
47
 
48
+ .hljs-title,
49
+ .hljs-localvars,
50
+ .hljs-function .hljs-title,
51
+ .hljs-chunk,
52
+ .hljs-decorator,
53
+ .hljs-built_in,
54
+ .lisp .hljs-title,
55
+ .clojure .hljs-built_in,
56
+ .hljs-identifier,
57
+ .hljs-id {
58
  color: #FFB03B;
59
  }
60
 
61
+ .hljs-attribute,
62
+ .hljs-variable,
63
+ .lisp .hljs-body,
64
+ .smalltalk .hljs-number,
65
+ .hljs-constant,
66
+ .hljs-class .hljs-title,
67
+ .hljs-parent,
68
+ .haskell .hljs-type {
69
  color: #b58900;
70
  }
71
 
72
+ .css .hljs-attribute {
73
  color: #b89859;
74
  }
75
 
76
+ .css .hljs-number,
77
+ .css .hljs-hexcolor {
78
  color: #DCCF8F;
79
  }
80
 
81
+ .css .hljs-class {
82
  color: #d3a60c;
83
  }
84
 
85
+ .hljs-preprocessor,
86
+ .hljs-pragma,
87
+ .hljs-pi,
88
+ .hljs-shebang,
89
+ .hljs-symbol,
90
+ .hljs-symbol .hljs-string,
91
+ .diff .hljs-change,
92
+ .hljs-special,
93
+ .hljs-attr_selector,
94
+ .hljs-important,
95
+ .hljs-subst,
96
+ .hljs-cdata {
97
  color: #cb4b16;
98
  }
99
 
100
+ .hljs-deletion {
101
  color: #dc322f;
102
  }
103
 
104
+ .tex .hljs-formula {
105
  background: #073642;
106
  }
skin/adminhtml/default/default/markdown/highlight/styles/railscasts.css CHANGED
@@ -4,179 +4,179 @@ Railscasts-like style (c) Visoft, Inc. (Damien White)
4
 
5
  */
6
 
7
- pre code {
8
  display: block;
9
  padding: 0.5em;
10
  background: #232323;
11
  color: #E6E1DC;
12
  }
13
 
14
- pre .comment,
15
- pre .template_comment,
16
- pre .javadoc,
17
- pre .shebang {
18
  color: #BC9458;
19
  font-style: italic;
20
  }
21
 
22
- pre .keyword,
23
- pre .ruby .function .keyword,
24
- pre .request,
25
- pre .status,
26
- pre .nginx .title,
27
- pre .method,
28
- pre .list .title {
29
  color: #C26230;
30
  }
31
 
32
- pre .string,
33
- pre .number,
34
- pre .regexp,
35
- pre .tag .value,
36
- pre .cdata,
37
- pre .filter .argument,
38
- pre .attr_selector,
39
- pre .apache .cbracket,
40
- pre .date,
41
- pre .tex .command,
42
- pre .markdown .link_label {
43
  color: #A5C261;
44
  }
45
 
46
- pre .subst {
47
  color: #519F50;
48
  }
49
 
50
- pre .tag,
51
- pre .tag .keyword,
52
- pre .tag .title,
53
- pre .doctype,
54
- pre .sub .identifier,
55
- pre .pi,
56
- pre .input_number {
57
  color: #E8BF6A;
58
  }
59
 
60
- pre .identifier {
61
  color: #D0D0FF;
62
  }
63
 
64
- pre .class .title,
65
- pre .haskell .type,
66
- pre .smalltalk .class,
67
- pre .javadoctag,
68
- pre .yardoctag,
69
- pre .phpdoc {
70
  text-decoration: none;
71
  }
72
 
73
- pre .constant {
74
  color: #DA4939;
75
  }
76
 
77
 
78
- pre .symbol,
79
- pre .built_in,
80
- pre .ruby .symbol .string,
81
- pre .ruby .symbol .identifier,
82
- pre .markdown .link_url,
83
- pre .attribute {
84
  color: #6D9CBE;
85
  }
86
 
87
- pre .markdown .link_url {
88
  text-decoration: underline;
89
  }
90
 
91
 
92
 
93
- pre .params,
94
- pre .variable,
95
- pre .clojure .attribute {
96
  color: #D0D0FF;
97
  }
98
 
99
- pre .css .tag,
100
- pre .rules .property,
101
- pre .pseudo,
102
- pre .tex .special {
103
  color: #CDA869;
104
  }
105
 
106
- pre .css .class {
107
  color: #9B703F;
108
  }
109
 
110
- pre .rules .keyword {
111
  color: #C5AF75;
112
  }
113
 
114
- pre .rules .value {
115
  color: #CF6A4C;
116
  }
117
 
118
- pre .css .id {
119
  color: #8B98AB;
120
  }
121
 
122
- pre .annotation,
123
- pre .apache .sqbracket,
124
- pre .nginx .built_in {
125
  color: #9B859D;
126
  }
127
 
128
- pre .preprocessor,
129
- pre .preprocessor *
130
- pre .pragma {
131
  color: #8996A8 !important;
132
  }
133
 
134
- pre .hexcolor,
135
- pre .css .value .number {
136
  color: #A5C261;
137
  }
138
 
139
- pre .title,
140
- pre .decorator,
141
- pre .css .function {
142
  color: #FFC66D;
143
  }
144
 
145
- pre .diff .header,
146
- pre .chunk {
147
  background-color: #2F33AB;
148
  color: #E6E1DC;
149
  display: inline-block;
150
  width: 100%;
151
  }
152
 
153
- pre .diff .change {
154
  background-color: #4A410D;
155
  color: #F8F8F8;
156
  display: inline-block;
157
  width: 100%;
158
  }
159
 
160
- pre .addition {
161
  background-color: #144212;
162
  color: #E6E1DC;
163
  display: inline-block;
164
  width: 100%;
165
  }
166
 
167
- pre .deletion {
168
  background-color: #600;
169
  color: #E6E1DC;
170
  display: inline-block;
171
  width: 100%;
172
  }
173
 
174
- pre .coffeescript .javascript,
175
- pre .javascript .xml,
176
- pre .tex .formula,
177
- pre .xml .javascript,
178
- pre .xml .vbscript,
179
- pre .xml .css,
180
- pre .xml .cdata {
181
  opacity: 0.7;
182
  }
4
 
5
  */
6
 
7
+ .hljs {
8
  display: block;
9
  padding: 0.5em;
10
  background: #232323;
11
  color: #E6E1DC;
12
  }
13
 
14
+ .hljs-comment,
15
+ .hljs-template_comment,
16
+ .hljs-javadoc,
17
+ .hljs-shebang {
18
  color: #BC9458;
19
  font-style: italic;
20
  }
21
 
22
+ .hljs-keyword,
23
+ .ruby .hljs-function .hljs-keyword,
24
+ .hljs-request,
25
+ .hljs-status,
26
+ .nginx .hljs-title,
27
+ .method,
28
+ .hljs-list .hljs-title {
29
  color: #C26230;
30
  }
31
 
32
+ .hljs-string,
33
+ .hljs-number,
34
+ .hljs-regexp,
35
+ .hljs-tag .hljs-value,
36
+ .hljs-cdata,
37
+ .hljs-filter .hljs-argument,
38
+ .hljs-attr_selector,
39
+ .apache .hljs-cbracket,
40
+ .hljs-date,
41
+ .tex .hljs-command,
42
+ .markdown .hljs-link_label {
43
  color: #A5C261;
44
  }
45
 
46
+ .hljs-subst {
47
  color: #519F50;
48
  }
49
 
50
+ .hljs-tag,
51
+ .hljs-tag .hljs-keyword,
52
+ .hljs-tag .hljs-title,
53
+ .hljs-doctype,
54
+ .hljs-sub .hljs-identifier,
55
+ .hljs-pi,
56
+ .input_number {
57
  color: #E8BF6A;
58
  }
59
 
60
+ .hljs-identifier {
61
  color: #D0D0FF;
62
  }
63
 
64
+ .hljs-class .hljs-title,
65
+ .haskell .hljs-type,
66
+ .smalltalk .hljs-class,
67
+ .hljs-javadoctag,
68
+ .hljs-yardoctag,
69
+ .hljs-phpdoc {
70
  text-decoration: none;
71
  }
72
 
73
+ .hljs-constant {
74
  color: #DA4939;
75
  }
76
 
77
 
78
+ .hljs-symbol,
79
+ .hljs-built_in,
80
+ .ruby .hljs-symbol .hljs-string,
81
+ .ruby .hljs-symbol .hljs-identifier,
82
+ .markdown .hljs-link_url,
83
+ .hljs-attribute {
84
  color: #6D9CBE;
85
  }
86
 
87
+ .markdown .hljs-link_url {
88
  text-decoration: underline;
89
  }
90
 
91
 
92
 
93
+ .hljs-params,
94
+ .hljs-variable,
95
+ .clojure .hljs-attribute {
96
  color: #D0D0FF;
97
  }
98
 
99
+ .css .hljs-tag,
100
+ .hljs-rules .hljs-property,
101
+ .hljs-pseudo,
102
+ .tex .hljs-special {
103
  color: #CDA869;
104
  }
105
 
106
+ .css .hljs-class {
107
  color: #9B703F;
108
  }
109
 
110
+ .hljs-rules .hljs-keyword {
111
  color: #C5AF75;
112
  }
113
 
114
+ .hljs-rules .hljs-value {
115
  color: #CF6A4C;
116
  }
117
 
118
+ .css .hljs-id {
119
  color: #8B98AB;
120
  }
121
 
122
+ .hljs-annotation,
123
+ .apache .hljs-sqbracket,
124
+ .nginx .hljs-built_in {
125
  color: #9B859D;
126
  }
127
 
128
+ .hljs-preprocessor,
129
+ .hljs-preprocessor *,
130
+ .hljs-pragma {
131
  color: #8996A8 !important;
132
  }
133
 
134
+ .hljs-hexcolor,
135
+ .css .hljs-value .hljs-number {
136
  color: #A5C261;
137
  }
138
 
139
+ .hljs-title,
140
+ .hljs-decorator,
141
+ .css .hljs-function {
142
  color: #FFC66D;
143
  }
144
 
145
+ .diff .hljs-header,
146
+ .hljs-chunk {
147
  background-color: #2F33AB;
148
  color: #E6E1DC;
149
  display: inline-block;
150
  width: 100%;
151
  }
152
 
153
+ .diff .hljs-change {
154
  background-color: #4A410D;
155
  color: #F8F8F8;
156
  display: inline-block;
157
  width: 100%;
158
  }
159
 
160
+ .hljs-addition {
161
  background-color: #144212;
162
  color: #E6E1DC;
163
  display: inline-block;
164
  width: 100%;
165
  }
166
 
167
+ .hljs-deletion {
168
  background-color: #600;
169
  color: #E6E1DC;
170
  display: inline-block;
171
  width: 100%;
172
  }
173
 
174
+ .coffeescript .javascript,
175
+ .javascript .xml,
176
+ .tex .hljs-formula,
177
+ .xml .javascript,
178
+ .xml .vbscript,
179
+ .xml .css,
180
+ .xml .hljs-cdata {
181
  opacity: 0.7;
182
  }
skin/adminhtml/default/default/markdown/highlight/styles/rainbow.css CHANGED
@@ -4,112 +4,109 @@ Style with support for rainbow parens
4
 
5
  */
6
 
7
- pre ::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
8
- pre ::selection { background:#FF5E99; color:#fff; text-shadow: none; }
9
-
10
- pre code {
11
  display: block; padding: 0.5em;
12
  background: #474949; color: #D1D9E1;
13
  }
14
 
15
 
16
- pre .body,
17
- pre .collection {
18
  color: #D1D9E1;
19
  }
20
 
21
- pre .comment,
22
- pre .template_comment,
23
- pre .diff .header,
24
- pre .doctype,
25
- pre .lisp .string,
26
- pre .javadoc {
27
  color: #969896;
28
  font-style: italic;
29
  }
30
 
31
- pre .keyword,
32
- pre .clojure .attribute,
33
- pre .winutils,
34
- pre .javascript .title,
35
- pre .addition,
36
- pre .css .tag {
37
  color: #cc99cc;
38
  }
39
 
40
- pre .number { color: #f99157; }
41
 
42
- pre .command,
43
- pre .string,
44
- pre .tag .value,
45
- pre .phpdoc,
46
- pre .tex .formula,
47
- pre .regexp,
48
- pre .hexcolor {
49
  color: #8abeb7;
50
  }
51
 
52
- pre .title,
53
- pre .localvars,
54
- pre .function .title,
55
- pre .chunk,
56
- pre .decorator,
57
- pre .built_in,
58
- pre .lisp .title,
59
- pre .identifier
60
  {
61
  color: #b5bd68;
62
  }
63
 
64
- pre .class .keyword
65
  {
66
  color: #f2777a;
67
  }
68
 
69
- pre .variable,
70
- pre .lisp .body,
71
- pre .smalltalk .number,
72
- pre .constant,
73
- pre .class .title,
74
- pre .parent,
75
- pre .haskell .label,
76
- pre .id,
77
- pre .lisp .title,
78
- pre .clojure .title .built_in {
79
  color: #ffcc66;
80
  }
81
 
82
- pre .tag .title,
83
- pre .rules .property,
84
- pre .django .tag .keyword,
85
- pre .clojure .title .built_in {
86
  font-weight: bold;
87
  }
88
 
89
- pre .attribute,
90
- pre .clojure .title {
91
  color: #81a2be;
92
  }
93
 
94
- pre .preprocessor,
95
- pre .pragma,
96
- pre .pi,
97
- pre .shebang,
98
- pre .symbol,
99
- pre .symbol .string,
100
- pre .diff .change,
101
- pre .special,
102
- pre .attr_selector,
103
- pre .important,
104
- pre .subst,
105
- pre .cdata {
106
  color: #f99157;
107
  }
108
 
109
- pre .deletion {
110
  color: #dc322f;
111
  }
112
 
113
- pre .tex .formula {
114
  background: #eee8d5;
115
  }
4
 
5
  */
6
 
7
+ .hljs {
 
 
 
8
  display: block; padding: 0.5em;
9
  background: #474949; color: #D1D9E1;
10
  }
11
 
12
 
13
+ .hljs-body,
14
+ .hljs-collection {
15
  color: #D1D9E1;
16
  }
17
 
18
+ .hljs-comment,
19
+ .hljs-template_comment,
20
+ .diff .hljs-header,
21
+ .hljs-doctype,
22
+ .lisp .hljs-string,
23
+ .hljs-javadoc {
24
  color: #969896;
25
  font-style: italic;
26
  }
27
 
28
+ .hljs-keyword,
29
+ .clojure .hljs-attribute,
30
+ .hljs-winutils,
31
+ .javascript .hljs-title,
32
+ .hljs-addition,
33
+ .css .hljs-tag {
34
  color: #cc99cc;
35
  }
36
 
37
+ .hljs-number { color: #f99157; }
38
 
39
+ .hljs-command,
40
+ .hljs-string,
41
+ .hljs-tag .hljs-value,
42
+ .hljs-phpdoc,
43
+ .tex .hljs-formula,
44
+ .hljs-regexp,
45
+ .hljs-hexcolor {
46
  color: #8abeb7;
47
  }
48
 
49
+ .hljs-title,
50
+ .hljs-localvars,
51
+ .hljs-function .hljs-title,
52
+ .hljs-chunk,
53
+ .hljs-decorator,
54
+ .hljs-built_in,
55
+ .lisp .hljs-title,
56
+ .hljs-identifier
57
  {
58
  color: #b5bd68;
59
  }
60
 
61
+ .hljs-class .hljs-keyword
62
  {
63
  color: #f2777a;
64
  }
65
 
66
+ .hljs-variable,
67
+ .lisp .hljs-body,
68
+ .smalltalk .hljs-number,
69
+ .hljs-constant,
70
+ .hljs-class .hljs-title,
71
+ .hljs-parent,
72
+ .haskell .hljs-label,
73
+ .hljs-id,
74
+ .lisp .hljs-title,
75
+ .clojure .hljs-title .hljs-built_in {
76
  color: #ffcc66;
77
  }
78
 
79
+ .hljs-tag .hljs-title,
80
+ .hljs-rules .hljs-property,
81
+ .django .hljs-tag .hljs-keyword,
82
+ .clojure .hljs-title .hljs-built_in {
83
  font-weight: bold;
84
  }
85
 
86
+ .hljs-attribute,
87
+ .clojure .hljs-title {
88
  color: #81a2be;
89
  }
90
 
91
+ .hljs-preprocessor,
92
+ .hljs-pragma,
93
+ .hljs-pi,
94
+ .hljs-shebang,
95
+ .hljs-symbol,
96
+ .hljs-symbol .hljs-string,
97
+ .diff .hljs-change,
98
+ .hljs-special,
99
+ .hljs-attr_selector,
100
+ .hljs-important,
101
+ .hljs-subst,
102
+ .hljs-cdata {
103
  color: #f99157;
104
  }
105
 
106
+ .hljs-deletion {
107
  color: #dc322f;
108
  }
109
 
110
+ .tex .hljs-formula {
111
  background: #eee8d5;
112
  }
skin/adminhtml/default/default/markdown/highlight/styles/school_book.css CHANGED
@@ -4,7 +4,7 @@ School Book style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net>
4
 
5
  */
6
 
7
- pre code {
8
  display: block; padding: 15px 0.5em 0.5em 30px;
9
  font-size: 11px !important;
10
  line-height:16px !important;
@@ -16,98 +16,98 @@ pre{
16
  border-bottom: solid 1px #d2e8b9;
17
  }
18
 
19
- pre .keyword,
20
- pre .literal,
21
- pre .change,
22
- pre .winutils,
23
- pre .flow,
24
- pre .lisp .title,
25
- pre .clojure .built_in,
26
- pre .nginx .title,
27
- pre .tex .special {
28
  color:#005599;
29
  font-weight:bold;
30
  }
31
 
32
- pre code,
33
- pre .subst,
34
- pre .tag .keyword {
35
  color: #3E5915;
36
  }
37
 
38
- pre .string,
39
- pre .title,
40
- pre .haskell .type,
41
- pre .tag .value,
42
- pre .css .rules .value,
43
- pre .preprocessor,
44
- pre .pragma,
45
- pre .ruby .symbol,
46
- pre .ruby .symbol .string,
47
- pre .ruby .class .parent,
48
- pre .built_in,
49
- pre .sql .aggregate,
50
- pre .django .template_tag,
51
- pre .django .variable,
52
- pre .smalltalk .class,
53
- pre .javadoc,
54
- pre .ruby .string,
55
- pre .django .filter .argument,
56
- pre .smalltalk .localvars,
57
- pre .smalltalk .array,
58
- pre .attr_selector,
59
- pre .pseudo,
60
- pre .addition,
61
- pre .stream,
62
- pre .envvar,
63
- pre .apache .tag,
64
- pre .apache .cbracket,
65
- pre .nginx .built_in,
66
- pre .tex .command,
67
- pre .coffeescript .attribute {
68
  color: #2C009F;
69
  }
70
 
71
- pre .comment,
72
- pre .java .annotation,
73
- pre .python .decorator,
74
- pre .template_comment,
75
- pre .pi,
76
- pre .doctype,
77
- pre .deletion,
78
- pre .shebang,
79
- pre .apache .sqbracket {
80
  color: #E60415;
81
  }
82
 
83
- pre .keyword,
84
- pre .literal,
85
- pre .css .id,
86
- pre .phpdoc,
87
- pre .title,
88
- pre .haskell .type,
89
- pre .vbscript .built_in,
90
- pre .sql .aggregate,
91
- pre .rsl .built_in,
92
- pre .smalltalk .class,
93
- pre .xml .tag .title,
94
- pre .diff .header,
95
- pre .chunk,
96
- pre .winutils,
97
- pre .bash .variable,
98
- pre .apache .tag,
99
- pre .tex .command,
100
- pre .request,
101
- pre .status {
102
  font-weight: bold;
103
  }
104
 
105
- pre .coffeescript .javascript,
106
- pre .javascript .xml,
107
- pre .tex .formula,
108
- pre .xml .javascript,
109
- pre .xml .vbscript,
110
- pre .xml .css,
111
- pre .xml .cdata {
112
  opacity: 0.5;
113
  }
4
 
5
  */
6
 
7
+ .hljs {
8
  display: block; padding: 15px 0.5em 0.5em 30px;
9
  font-size: 11px !important;
10
  line-height:16px !important;
16
  border-bottom: solid 1px #d2e8b9;
17
  }
18
 
19
+ .hljs-keyword,
20
+ .hljs-literal,
21
+ .hljs-change,
22
+ .hljs-winutils,
23
+ .hljs-flow,
24
+ .lisp .hljs-title,
25
+ .clojure .hljs-built_in,
26
+ .nginx .hljs-title,
27
+ .tex .hljs-special {
28
  color:#005599;
29
  font-weight:bold;
30
  }
31
 
32
+ .hljs,
33
+ .hljs-subst,
34
+ .hljs-tag .hljs-keyword {
35
  color: #3E5915;
36
  }
37
 
38
+ .hljs-string,
39
+ .hljs-title,
40
+ .haskell .hljs-type,
41
+ .hljs-tag .hljs-value,
42
+ .css .hljs-rules .hljs-value,
43
+ .hljs-preprocessor,
44
+ .hljs-pragma,
45
+ .ruby .hljs-symbol,
46
+ .ruby .hljs-symbol .hljs-string,
47
+ .ruby .hljs-class .hljs-parent,
48
+ .hljs-built_in,
49
+ .sql .hljs-aggregate,
50
+ .django .hljs-template_tag,
51
+ .django .hljs-variable,
52
+ .smalltalk .hljs-class,
53
+ .hljs-javadoc,
54
+ .ruby .hljs-string,
55
+ .django .hljs-filter .hljs-argument,
56
+ .smalltalk .hljs-localvars,
57
+ .smalltalk .hljs-array,
58
+ .hljs-attr_selector,
59
+ .hljs-pseudo,
60
+ .hljs-addition,
61
+ .hljs-stream,
62
+ .hljs-envvar,
63
+ .apache .hljs-tag,
64
+ .apache .hljs-cbracket,
65
+ .nginx .hljs-built_in,
66
+ .tex .hljs-command,
67
+ .coffeescript .hljs-attribute {
68
  color: #2C009F;
69
  }
70
 
71
+ .hljs-comment,
72
+ .java .hljs-annotation,
73
+ .python .hljs-decorator,
74
+ .hljs-template_comment,
75
+ .hljs-pi,
76
+ .hljs-doctype,
77
+ .hljs-deletion,
78
+ .hljs-shebang,
79
+ .apache .hljs-sqbracket {
80
  color: #E60415;
81
  }
82
 
83
+ .hljs-keyword,
84
+ .hljs-literal,
85
+ .css .hljs-id,
86
+ .hljs-phpdoc,
87
+ .hljs-title,
88
+ .haskell .hljs-type,
89
+ .vbscript .hljs-built_in,
90
+ .sql .hljs-aggregate,
91
+ .rsl .hljs-built_in,
92
+ .smalltalk .hljs-class,
93
+ .xml .hljs-tag .hljs-title,
94
+ .diff .hljs-header,
95
+ .hljs-chunk,
96
+ .hljs-winutils,
97
+ .bash .hljs-variable,
98
+ .apache .hljs-tag,
99
+ .tex .hljs-command,
100
+ .hljs-request,
101
+ .hljs-status {
102
  font-weight: bold;
103
  }
104
 
105
+ .coffeescript .javascript,
106
+ .javascript .xml,
107
+ .tex .hljs-formula,
108
+ .xml .javascript,
109
+ .xml .vbscript,
110
+ .xml .css,
111
+ .xml .hljs-cdata {
112
  opacity: 0.5;
113
  }
skin/adminhtml/default/default/markdown/highlight/styles/solarized_dark.css CHANGED
@@ -4,89 +4,104 @@ Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmai
4
 
5
  */
6
 
7
- pre code {
8
- display: block; padding: 0.5em;
9
- background: #002b36; color: #839496;
 
 
10
  }
11
 
12
- pre .comment,
13
- pre .template_comment,
14
- pre .diff .header,
15
- pre .doctype,
16
- pre .pi,
17
- pre .lisp .string,
18
- pre .javadoc {
19
  color: #586e75;
20
- font-style: italic;
21
  }
22
 
23
- pre .keyword,
24
- pre .winutils,
25
- pre .method,
26
- pre .addition,
27
- pre .css .tag,
28
- pre .request,
29
- pre .status,
30
- pre .nginx .title {
 
31
  color: #859900;
32
  }
33
 
34
- pre .number,
35
- pre .command,
36
- pre .string,
37
- pre .tag .value,
38
- pre .rules .value,
39
- pre .phpdoc,
40
- pre .tex .formula,
41
- pre .regexp,
42
- pre .hexcolor {
 
 
43
  color: #2aa198;
44
  }
45
 
46
- pre .title,
47
- pre .localvars,
48
- pre .chunk,
49
- pre .decorator,
50
- pre .built_in,
51
- pre .identifier,
52
- pre .vhdl .literal,
53
- pre .id,
54
- pre .css .function {
 
55
  color: #268bd2;
56
  }
57
 
58
- pre .attribute,
59
- pre .variable,
60
- pre .lisp .body,
61
- pre .smalltalk .number,
62
- pre .constant,
63
- pre .class .title,
64
- pre .parent,
65
- pre .haskell .type {
 
 
66
  color: #b58900;
67
  }
68
 
69
- pre .preprocessor,
70
- pre .preprocessor .keyword,
71
- pre .pragma,
72
- pre .shebang,
73
- pre .symbol,
74
- pre .symbol .string,
75
- pre .diff .change,
76
- pre .special,
77
- pre .attr_selector,
78
- pre .important,
79
- pre .subst,
80
- pre .cdata,
81
- pre .clojure .title,
82
- pre .css .pseudo {
 
83
  color: #cb4b16;
84
  }
85
 
86
- pre .deletion {
 
 
87
  color: #dc322f;
88
  }
89
 
90
- pre .tex .formula {
 
 
 
 
 
91
  background: #073642;
92
  }
4
 
5
  */
6
 
7
+ .hljs {
8
+ display: block;
9
+ padding: 0.5em;
10
+ background: #002b36;
11
+ color: #839496;
12
  }
13
 
14
+ .hljs-comment,
15
+ .hljs-template_comment,
16
+ .diff .hljs-header,
17
+ .hljs-doctype,
18
+ .hljs-pi,
19
+ .lisp .hljs-string,
20
+ .hljs-javadoc {
21
  color: #586e75;
 
22
  }
23
 
24
+ /* Solarized Green */
25
+ .hljs-keyword,
26
+ .hljs-winutils,
27
+ .method,
28
+ .hljs-addition,
29
+ .css .hljs-tag,
30
+ .hljs-request,
31
+ .hljs-status,
32
+ .nginx .hljs-title {
33
  color: #859900;
34
  }
35
 
36
+ /* Solarized Cyan */
37
+ .hljs-number,
38
+ .hljs-command,
39
+ .hljs-string,
40
+ .hljs-tag .hljs-value,
41
+ .hljs-rules .hljs-value,
42
+ .hljs-phpdoc,
43
+ .tex .hljs-formula,
44
+ .hljs-regexp,
45
+ .hljs-hexcolor,
46
+ .hljs-link_url {
47
  color: #2aa198;
48
  }
49
 
50
+ /* Solarized Blue */
51
+ .hljs-title,
52
+ .hljs-localvars,
53
+ .hljs-chunk,
54
+ .hljs-decorator,
55
+ .hljs-built_in,
56
+ .hljs-identifier,
57
+ .vhdl .hljs-literal,
58
+ .hljs-id,
59
+ .css .hljs-function {
60
  color: #268bd2;
61
  }
62
 
63
+ /* Solarized Yellow */
64
+ .hljs-attribute,
65
+ .hljs-variable,
66
+ .lisp .hljs-body,
67
+ .smalltalk .hljs-number,
68
+ .hljs-constant,
69
+ .hljs-class .hljs-title,
70
+ .hljs-parent,
71
+ .haskell .hljs-type,
72
+ .hljs-link_reference {
73
  color: #b58900;
74
  }
75
 
76
+ /* Solarized Orange */
77
+ .hljs-preprocessor,
78
+ .hljs-preprocessor .hljs-keyword,
79
+ .hljs-pragma,
80
+ .hljs-shebang,
81
+ .hljs-symbol,
82
+ .hljs-symbol .hljs-string,
83
+ .diff .hljs-change,
84
+ .hljs-special,
85
+ .hljs-attr_selector,
86
+ .hljs-subst,
87
+ .hljs-cdata,
88
+ .clojure .hljs-title,
89
+ .css .hljs-pseudo,
90
+ .hljs-header {
91
  color: #cb4b16;
92
  }
93
 
94
+ /* Solarized Red */
95
+ .hljs-deletion,
96
+ .hljs-important {
97
  color: #dc322f;
98
  }
99
 
100
+ /* Solarized Violet */
101
+ .hljs-link_label {
102
+ color: #6c71c4;
103
+ }
104
+
105
+ .tex .hljs-formula {
106
  background: #073642;
107
  }
skin/adminhtml/default/default/markdown/highlight/styles/solarized_light.css CHANGED
@@ -4,89 +4,104 @@ Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmai
4
 
5
  */
6
 
7
- pre code {
8
- display: block; padding: 0.5em;
9
- background: #fdf6e3; color: #657b83;
 
 
10
  }
11
 
12
- pre .comment,
13
- pre .template_comment,
14
- pre .diff .header,
15
- pre .doctype,
16
- pre .pi,
17
- pre .lisp .string,
18
- pre .javadoc {
19
  color: #93a1a1;
20
- font-style: italic;
21
  }
22
 
23
- pre .keyword,
24
- pre .winutils,
25
- pre .method,
26
- pre .addition,
27
- pre .css .tag,
28
- pre .request,
29
- pre .status,
30
- pre .nginx .title {
 
31
  color: #859900;
32
  }
33
 
34
- pre .number,
35
- pre .command,
36
- pre .string,
37
- pre .tag .value,
38
- pre .rules .value,
39
- pre .phpdoc,
40
- pre .tex .formula,
41
- pre .regexp,
42
- pre .hexcolor {
 
 
43
  color: #2aa198;
44
  }
45
 
46
- pre .title,
47
- pre .localvars,
48
- pre .chunk,
49
- pre .decorator,
50
- pre .built_in,
51
- pre .identifier,
52
- pre .vhdl .literal,
53
- pre .id,
54
- pre .css .function {
 
55
  color: #268bd2;
56
  }
57
 
58
- pre .attribute,
59
- pre .variable,
60
- pre .lisp .body,
61
- pre .smalltalk .number,
62
- pre .constant,
63
- pre .class .title,
64
- pre .parent,
65
- pre .haskell .type {
 
 
66
  color: #b58900;
67
  }
68
 
69
- pre .preprocessor,
70
- pre .preprocessor .keyword,
71
- pre .pragma,
72
- pre .shebang,
73
- pre .symbol,
74
- pre .symbol .string,
75
- pre .diff .change,
76
- pre .special,
77
- pre .attr_selector,
78
- pre .important,
79
- pre .subst,
80
- pre .cdata,
81
- pre .clojure .title,
82
- pre .css .pseudo {
 
83
  color: #cb4b16;
84
  }
85
 
86
- pre .deletion {
 
 
87
  color: #dc322f;
88
  }
89
 
90
- pre .tex .formula {
 
 
 
 
 
91
  background: #eee8d5;
92
  }
4
 
5
  */
6
 
7
+ .hljs {
8
+ display: block;
9
+ padding: 0.5em;
10
+ background: #fdf6e3;
11
+ color: #657b83;
12
  }
13
 
14
+ .hljs-comment,
15
+ .hljs-template_comment,
16
+ .diff .hljs-header,
17
+ .hljs-doctype,
18
+ .hljs-pi,
19
+ .lisp .hljs-string,
20
+ .hljs-javadoc {
21
  color: #93a1a1;
 
22
  }
23
 
24
+ /* Solarized Green */
25
+ .hljs-keyword,
26
+ .hljs-winutils,
27
+ .method,
28
+ .hljs-addition,
29
+ .css .hljs-tag,
30
+ .hljs-request,
31
+ .hljs-status,
32
+ .nginx .hljs-title {
33
  color: #859900;
34
  }
35
 
36
+ /* Solarized Cyan */
37
+ .hljs-number,
38
+ .hljs-command,
39
+ .hljs-string,
40
+ .hljs-tag .hljs-value,
41
+ .hljs-rules .hljs-value,
42
+ .hljs-phpdoc,
43
+ .tex .hljs-formula,
44
+ .hljs-regexp,
45
+ .hljs-hexcolor,
46
+ .hljs-link_url {
47
  color: #2aa198;
48
  }
49
 
50
+ /* Solarized Blue */
51
+ .hljs-title,
52
+ .hljs-localvars,
53
+ .hljs-chunk,
54
+ .hljs-decorator,
55
+ .hljs-built_in,
56
+ .hljs-identifier,
57
+ .vhdl .hljs-literal,
58
+ .hljs-id,
59
+ .css .hljs-function {
60
  color: #268bd2;
61
  }
62
 
63
+ /* Solarized Yellow */
64
+ .hljs-attribute,
65
+ .hljs-variable,
66
+ .lisp .hljs-body,
67
+ .smalltalk .hljs-number,
68
+ .hljs-constant,
69
+ .hljs-class .hljs-title,
70
+ .hljs-parent,
71
+ .haskell .hljs-type,
72
+ .hljs-link_reference {
73
  color: #b58900;
74
  }
75
 
76
+ /* Solarized Orange */
77
+ .hljs-preprocessor,
78
+ .hljs-preprocessor .hljs-keyword,
79
+ .hljs-pragma,
80
+ .hljs-shebang,
81
+ .hljs-symbol,
82
+ .hljs-symbol .hljs-string,
83
+ .diff .hljs-change,
84
+ .hljs-special,
85
+ .hljs-attr_selector,
86
+ .hljs-subst,
87
+ .hljs-cdata,
88
+ .clojure .hljs-title,
89
+ .css .hljs-pseudo,
90
+ .hljs-header {
91
  color: #cb4b16;
92
  }
93
 
94
+ /* Solarized Red */
95
+ .hljs-deletion,
96
+ .hljs-important {
97
  color: #dc322f;
98
  }
99
 
100
+ /* Solarized Violet */
101
+ .hljs-link_label {
102
+ color: #6c71c4;
103
+ }
104
+
105
+ .tex .hljs-formula {
106
  background: #eee8d5;
107
  }
skin/adminhtml/default/default/markdown/highlight/styles/sunburst.css CHANGED
@@ -4,157 +4,157 @@ Sunburst-like style (c) Vasily Polovnyov <vast@whiteants.net>
4
 
5
  */
6
 
7
- pre code {
8
  display: block; padding: 0.5em;
9
  background: #000; color: #f8f8f8;
10
  }
11
 
12
- pre .comment,
13
- pre .template_comment,
14
- pre .javadoc {
15
  color: #aeaeae;
16
  font-style: italic;
17
  }
18
 
19
- pre .keyword,
20
- pre .ruby .function .keyword,
21
- pre .request,
22
- pre .status,
23
- pre .nginx .title {
24
  color: #E28964;
25
  }
26
 
27
- pre .function .keyword,
28
- pre .sub .keyword,
29
- pre .method,
30
- pre .list .title {
31
  color: #99CF50;
32
  }
33
 
34
- pre .string,
35
- pre .tag .value,
36
- pre .cdata,
37
- pre .filter .argument,
38
- pre .attr_selector,
39
- pre .apache .cbracket,
40
- pre .date,
41
- pre .tex .command,
42
- pre .coffeescript .attribute {
43
  color: #65B042;
44
  }
45
 
46
- pre .subst {
47
  color: #DAEFA3;
48
  }
49
 
50
- pre .regexp {
51
  color: #E9C062;
52
  }
53
 
54
- pre .title,
55
- pre .sub .identifier,
56
- pre .pi,
57
- pre .tag,
58
- pre .tag .keyword,
59
- pre .decorator,
60
- pre .shebang,
61
- pre .prompt {
62
  color: #89BDFF;
63
  }
64
 
65
- pre .class .title,
66
- pre .haskell .type,
67
- pre .smalltalk .class,
68
- pre .javadoctag,
69
- pre .yardoctag,
70
- pre .phpdoc {
71
  text-decoration: underline;
72
  }
73
 
74
- pre .symbol,
75
- pre .ruby .symbol .string,
76
- pre .number {
77
  color: #3387CC;
78
  }
79
 
80
- pre .params,
81
- pre .variable,
82
- pre .clojure .attribute {
83
  color: #3E87E3;
84
  }
85
 
86
- pre .css .tag,
87
- pre .rules .property,
88
- pre .pseudo,
89
- pre .tex .special {
90
  color: #CDA869;
91
  }
92
 
93
- pre .css .class {
94
  color: #9B703F;
95
  }
96
 
97
- pre .rules .keyword {
98
  color: #C5AF75;
99
  }
100
 
101
- pre .rules .value {
102
  color: #CF6A4C;
103
  }
104
 
105
- pre .css .id {
106
  color: #8B98AB;
107
  }
108
 
109
- pre .annotation,
110
- pre .apache .sqbracket,
111
- pre .nginx .built_in {
112
  color: #9B859D;
113
  }
114
 
115
- pre .preprocessor,
116
- pre .pragma {
117
  color: #8996A8;
118
  }
119
 
120
- pre .hexcolor,
121
- pre .css .value .number {
122
  color: #DD7B3B;
123
  }
124
 
125
- pre .css .function {
126
  color: #DAD085;
127
  }
128
 
129
- pre .diff .header,
130
- pre .chunk,
131
- pre .tex .formula {
132
  background-color: #0E2231;
133
  color: #F8F8F8;
134
  font-style: italic;
135
  }
136
 
137
- pre .diff .change {
138
  background-color: #4A410D;
139
  color: #F8F8F8;
140
  }
141
 
142
- pre .addition {
143
  background-color: #253B22;
144
  color: #F8F8F8;
145
  }
146
 
147
- pre .deletion {
148
  background-color: #420E09;
149
  color: #F8F8F8;
150
  }
151
 
152
- pre .coffeescript .javascript,
153
- pre .javascript .xml,
154
- pre .tex .formula,
155
- pre .xml .javascript,
156
- pre .xml .vbscript,
157
- pre .xml .css,
158
- pre .xml .cdata {
159
  opacity: 0.5;
160
  }
4
 
5
  */
6
 
7
+ .hljs {
8
  display: block; padding: 0.5em;
9
  background: #000; color: #f8f8f8;
10
  }
11
 
12
+ .hljs-comment,
13
+ .hljs-template_comment,
14
+ .hljs-javadoc {
15
  color: #aeaeae;
16
  font-style: italic;
17
  }
18
 
19
+ .hljs-keyword,
20
+ .ruby .hljs-function .hljs-keyword,
21
+ .hljs-request,
22
+ .hljs-status,
23
+ .nginx .hljs-title {
24
  color: #E28964;
25
  }
26
 
27
+ .hljs-function .hljs-keyword,
28
+ .hljs-sub .hljs-keyword,
29
+ .method,
30
+ .hljs-list .hljs-title {
31
  color: #99CF50;
32
  }
33
 
34
+ .hljs-string,
35
+ .hljs-tag .hljs-value,
36
+ .hljs-cdata,
37
+ .hljs-filter .hljs-argument,
38
+ .hljs-attr_selector,
39
+ .apache .hljs-cbracket,
40
+ .hljs-date,
41
+ .tex .hljs-command,
42
+ .coffeescript .hljs-attribute {
43
  color: #65B042;
44
  }
45
 
46
+ .hljs-subst {
47
  color: #DAEFA3;
48
  }
49
 
50
+ .hljs-regexp {
51
  color: #E9C062;
52
  }
53
 
54
+ .hljs-title,
55
+ .hljs-sub .hljs-identifier,
56
+ .hljs-pi,
57
+ .hljs-tag,
58
+ .hljs-tag .hljs-keyword,
59
+ .hljs-decorator,
60
+ .hljs-shebang,
61
+ .hljs-prompt {
62
  color: #89BDFF;
63
  }
64
 
65
+ .hljs-class .hljs-title,
66
+ .haskell .hljs-type,
67
+ .smalltalk .hljs-class,
68
+ .hljs-javadoctag,
69
+ .hljs-yardoctag,
70
+ .hljs-phpdoc {
71
  text-decoration: underline;
72
  }
73
 
74
+ .hljs-symbol,
75
+ .ruby .hljs-symbol .hljs-string,
76
+ .hljs-number {
77
  color: #3387CC;
78
  }
79
 
80
+ .hljs-params,
81
+ .hljs-variable,
82
+ .clojure .hljs-attribute {
83
  color: #3E87E3;
84
  }
85
 
86
+ .css .hljs-tag,
87
+ .hljs-rules .hljs-property,
88
+ .hljs-pseudo,
89
+ .tex .hljs-special {
90
  color: #CDA869;
91
  }
92
 
93
+ .css .hljs-class {
94
  color: #9B703F;
95
  }
96
 
97
+ .hljs-rules .hljs-keyword {
98
  color: #C5AF75;
99
  }
100
 
101
+ .hljs-rules .hljs-value {
102
  color: #CF6A4C;
103
  }
104
 
105
+ .css .hljs-id {
106
  color: #8B98AB;
107
  }
108
 
109
+ .hljs-annotation,
110
+ .apache .hljs-sqbracket,
111
+ .nginx .hljs-built_in {
112
  color: #9B859D;
113
  }
114
 
115
+ .hljs-preprocessor,
116
+ .hljs-pragma {
117
  color: #8996A8;
118
  }
119
 
120
+ .hljs-hexcolor,
121
+ .css .hljs-value .hljs-number {
122
  color: #DD7B3B;
123
  }
124
 
125
+ .css .hljs-function {
126
  color: #DAD085;
127
  }
128
 
129
+ .diff .hljs-header,
130
+ .hljs-chunk,
131
+ .tex .hljs-formula {
132
  background-color: #0E2231;
133
  color: #F8F8F8;
134
  font-style: italic;
135
  }
136
 
137
+ .diff .hljs-change {
138
  background-color: #4A410D;
139
  color: #F8F8F8;
140
  }
141
 
142
+ .hljs-addition {
143
  background-color: #253B22;
144
  color: #F8F8F8;
145
  }
146
 
147
+ .hljs-deletion {
148
  background-color: #420E09;
149
  color: #F8F8F8;
150
  }
151
 
152
+ .coffeescript .javascript,
153
+ .javascript .xml,
154
+ .tex .hljs-formula,
155
+ .xml .javascript,
156
+ .xml .vbscript,
157
+ .xml .css,
158
+ .xml .hljs-cdata {
159
  opacity: 0.5;
160
  }
skin/adminhtml/default/default/markdown/highlight/styles/tomorrow-night-blue.css CHANGED
@@ -2,51 +2,92 @@
2
  /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
3
  /* Original theme - https://github.com/chriskempson/tomorrow-theme */
4
  /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
5
- .tomorrow-comment, pre .comment, pre .title {
 
 
 
6
  color: #7285b7;
7
  }
8
 
9
- .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
 
 
 
 
 
 
 
 
 
 
 
 
10
  color: #ff9da4;
11
  }
12
 
13
- .tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
 
 
 
 
 
 
 
14
  color: #ffc58f;
15
  }
16
 
17
- .tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
 
 
18
  color: #ffeead;
19
  }
20
 
21
- .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
 
 
 
 
 
 
22
  color: #d1f1a9;
23
  }
24
 
25
- .tomorrow-aqua, pre .css .hexcolor {
 
26
  color: #99ffff;
27
  }
28
 
29
- .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
 
 
 
 
 
 
 
 
30
  color: #bbdaff;
31
  }
32
 
33
- .tomorrow-purple, pre .keyword, pre .javascript .function {
 
 
34
  color: #ebbbff;
35
  }
36
 
37
- pre code {
38
  display: block;
39
  background: #002451;
40
  color: white;
41
  padding: 0.5em;
42
  }
43
 
44
- pre .coffeescript .javascript,
45
- pre .javascript .xml,
46
- pre .tex .formula,
47
- pre .xml .javascript,
48
- pre .xml .vbscript,
49
- pre .xml .css,
50
- pre .xml .cdata {
51
  opacity: 0.5;
52
  }
2
  /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
3
  /* Original theme - https://github.com/chriskempson/tomorrow-theme */
4
  /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
5
+
6
+ /* Tomorrow Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
  color: #7285b7;
10
  }
11
 
12
+ /* Tomorrow Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
  color: #ff9da4;
26
  }
27
 
28
+ /* Tomorrow Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
  color: #ffc58f;
37
  }
38
 
39
+ /* Tomorrow Yellow */
40
+ .ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
  color: #ffeead;
43
  }
44
 
45
+ /* Tomorrow Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
  color: #d1f1a9;
53
  }
54
 
55
+ /* Tomorrow Aqua */
56
+ .css .hljs-hexcolor {
57
  color: #99ffff;
58
  }
59
 
60
+ /* Tomorrow Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
  color: #bbdaff;
70
  }
71
 
72
+ /* Tomorrow Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
  color: #ebbbff;
76
  }
77
 
78
+ .hljs {
79
  display: block;
80
  background: #002451;
81
  color: white;
82
  padding: 0.5em;
83
  }
84
 
85
+ .coffeescript .javascript,
86
+ .javascript .xml,
87
+ .tex .hljs-formula,
88
+ .xml .javascript,
89
+ .xml .vbscript,
90
+ .xml .css,
91
+ .xml .hljs-cdata {
92
  opacity: 0.5;
93
  }
skin/adminhtml/default/default/markdown/highlight/styles/tomorrow-night-bright.css CHANGED
@@ -1,51 +1,92 @@
1
  /* Tomorrow Night Bright Theme */
2
  /* Original theme - https://github.com/chriskempson/tomorrow-theme */
3
  /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
4
- .tomorrow-comment, pre .comment, pre .title {
 
 
 
5
  color: #969896;
6
  }
7
 
8
- .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
 
 
 
 
 
 
 
 
 
 
 
 
9
  color: #d54e53;
10
  }
11
 
12
- .tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
 
 
 
 
 
 
 
13
  color: #e78c45;
14
  }
15
 
16
- .tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
 
 
17
  color: #e7c547;
18
  }
19
 
20
- .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
 
 
 
 
 
 
21
  color: #b9ca4a;
22
  }
23
 
24
- .tomorrow-aqua, pre .css .hexcolor {
 
25
  color: #70c0b1;
26
  }
27
 
28
- .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
 
 
 
 
 
 
 
 
29
  color: #7aa6da;
30
  }
31
 
32
- .tomorrow-purple, pre .keyword, pre .javascript .function {
 
 
33
  color: #c397d8;
34
  }
35
 
36
- pre code {
37
  display: block;
38
  background: black;
39
  color: #eaeaea;
40
  padding: 0.5em;
41
  }
42
 
43
- pre .coffeescript .javascript,
44
- pre .javascript .xml,
45
- pre .tex .formula,
46
- pre .xml .javascript,
47
- pre .xml .vbscript,
48
- pre .xml .css,
49
- pre .xml .cdata {
50
  opacity: 0.5;
51
  }
1
  /* Tomorrow Night Bright Theme */
2
  /* Original theme - https://github.com/chriskempson/tomorrow-theme */
3
  /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
4
+
5
+ /* Tomorrow Comment */
6
+ .hljs-comment,
7
+ .hljs-title {
8
  color: #969896;
9
  }
10
 
11
+ /* Tomorrow Red */
12
+ .hljs-variable,
13
+ .hljs-attribute,
14
+ .hljs-tag,
15
+ .hljs-regexp,
16
+ .ruby .hljs-constant,
17
+ .xml .hljs-tag .hljs-title,
18
+ .xml .hljs-pi,
19
+ .xml .hljs-doctype,
20
+ .html .hljs-doctype,
21
+ .css .hljs-id,
22
+ .css .hljs-class,
23
+ .css .hljs-pseudo {
24
  color: #d54e53;
25
  }
26
 
27
+ /* Tomorrow Orange */
28
+ .hljs-number,
29
+ .hljs-preprocessor,
30
+ .hljs-pragma,
31
+ .hljs-built_in,
32
+ .hljs-literal,
33
+ .hljs-params,
34
+ .hljs-constant {
35
  color: #e78c45;
36
  }
37
 
38
+ /* Tomorrow Yellow */
39
+ .ruby .hljs-class .hljs-title,
40
+ .css .hljs-rules .hljs-attribute {
41
  color: #e7c547;
42
  }
43
 
44
+ /* Tomorrow Green */
45
+ .hljs-string,
46
+ .hljs-value,
47
+ .hljs-inheritance,
48
+ .hljs-header,
49
+ .ruby .hljs-symbol,
50
+ .xml .hljs-cdata {
51
  color: #b9ca4a;
52
  }
53
 
54
+ /* Tomorrow Aqua */
55
+ .css .hljs-hexcolor {
56
  color: #70c0b1;
57
  }
58
 
59
+ /* Tomorrow Blue */
60
+ .hljs-function,
61
+ .python .hljs-decorator,
62
+ .python .hljs-title,
63
+ .ruby .hljs-function .hljs-title,
64
+ .ruby .hljs-title .hljs-keyword,
65
+ .perl .hljs-sub,
66
+ .javascript .hljs-title,
67
+ .coffeescript .hljs-title {
68
  color: #7aa6da;
69
  }
70
 
71
+ /* Tomorrow Purple */
72
+ .hljs-keyword,
73
+ .javascript .hljs-function {
74
  color: #c397d8;
75
  }
76
 
77
+ .hljs {
78
  display: block;
79
  background: black;
80
  color: #eaeaea;
81
  padding: 0.5em;
82
  }
83
 
84
+ .coffeescript .javascript,
85
+ .javascript .xml,
86
+ .tex .hljs-formula,
87
+ .xml .javascript,
88
+ .xml .vbscript,
89
+ .xml .css,
90
+ .xml .hljs-cdata {
91
  opacity: 0.5;
92
  }
skin/adminhtml/default/default/markdown/highlight/styles/tomorrow-night-eighties.css CHANGED
@@ -1,51 +1,92 @@
1
  /* Tomorrow Night Eighties Theme */
2
  /* Original theme - https://github.com/chriskempson/tomorrow-theme */
3
  /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
4
- .tomorrow-comment, pre .comment, pre .title {
 
 
 
5
  color: #999999;
6
  }
7
 
8
- .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
 
 
 
 
 
 
 
 
 
 
 
 
9
  color: #f2777a;
10
  }
11
 
12
- .tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
 
 
 
 
 
 
 
13
  color: #f99157;
14
  }
15
 
16
- .tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
 
 
17
  color: #ffcc66;
18
  }
19
 
20
- .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
 
 
 
 
 
 
21
  color: #99cc99;
22
  }
23
 
24
- .tomorrow-aqua, pre .css .hexcolor {
 
25
  color: #66cccc;
26
  }
27
 
28
- .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
 
 
 
 
 
 
 
 
29
  color: #6699cc;
30
  }
31
 
32
- .tomorrow-purple, pre .keyword, pre .javascript .function {
 
 
33
  color: #cc99cc;
34
  }
35
 
36
- pre code {
37
  display: block;
38
  background: #2d2d2d;
39
  color: #cccccc;
40
  padding: 0.5em;
41
  }
42
 
43
- pre .coffeescript .javascript,
44
- pre .javascript .xml,
45
- pre .tex .formula,
46
- pre .xml .javascript,
47
- pre .xml .vbscript,
48
- pre .xml .css,
49
- pre .xml .cdata {
50
  opacity: 0.5;
51
  }
1
  /* Tomorrow Night Eighties Theme */
2
  /* Original theme - https://github.com/chriskempson/tomorrow-theme */
3
  /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
4
+
5
+ /* Tomorrow Comment */
6
+ .hljs-comment,
7
+ .hljs-title {
8
  color: #999999;
9
  }
10
 
11
+ /* Tomorrow Red */
12
+ .hljs-variable,
13
+ .hljs-attribute,
14
+ .hljs-tag,
15
+ .hljs-regexp,
16
+ .ruby .hljs-constant,
17
+ .xml .hljs-tag .hljs-title,
18
+ .xml .hljs-pi,
19
+ .xml .hljs-doctype,
20
+ .html .hljs-doctype,
21
+ .css .hljs-id,
22
+ .css .hljs-class,
23
+ .css .hljs-pseudo {
24
  color: #f2777a;
25
  }
26
 
27
+ /* Tomorrow Orange */
28
+ .hljs-number,
29
+ .hljs-preprocessor,
30
+ .hljs-pragma,
31
+ .hljs-built_in,
32
+ .hljs-literal,
33
+ .hljs-params,
34
+ .hljs-constant {
35
  color: #f99157;
36
  }
37
 
38
+ /* Tomorrow Yellow */
39
+ .ruby .hljs-class .hljs-title,
40
+ .css .hljs-rules .hljs-attribute {
41
  color: #ffcc66;
42
  }
43
 
44
+ /* Tomorrow Green */
45
+ .hljs-string,
46
+ .hljs-value,
47
+ .hljs-inheritance,
48
+ .hljs-header,
49
+ .ruby .hljs-symbol,
50
+ .xml .hljs-cdata {
51
  color: #99cc99;
52
  }
53
 
54
+ /* Tomorrow Aqua */
55
+ .css .hljs-hexcolor {
56
  color: #66cccc;
57
  }
58
 
59
+ /* Tomorrow Blue */
60
+ .hljs-function,
61
+ .python .hljs-decorator,
62
+ .python .hljs-title,
63
+ .ruby .hljs-function .hljs-title,
64
+ .ruby .hljs-title .hljs-keyword,
65
+ .perl .hljs-sub,
66
+ .javascript .hljs-title,
67
+ .coffeescript .hljs-title {
68
  color: #6699cc;
69
  }
70
 
71
+ /* Tomorrow Purple */
72
+ .hljs-keyword,
73
+ .javascript .hljs-function {
74
  color: #cc99cc;
75
  }
76
 
77
+ .hljs {
78
  display: block;
79
  background: #2d2d2d;
80
  color: #cccccc;
81
  padding: 0.5em;
82
  }
83
 
84
+ .coffeescript .javascript,
85
+ .javascript .xml,
86
+ .tex .hljs-formula,
87
+ .xml .javascript,
88
+ .xml .vbscript,
89
+ .xml .css,
90
+ .xml .hljs-cdata {
91
  opacity: 0.5;
92
  }
skin/adminhtml/default/default/markdown/highlight/styles/tomorrow-night.css CHANGED
@@ -2,51 +2,92 @@
2
  /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
3
  /* Original theme - https://github.com/chriskempson/tomorrow-theme */
4
  /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
5
- .tomorrow-comment, pre .comment, pre .title {
 
 
 
6
  color: #969896;
7
  }
8
 
9
- .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
 
 
 
 
 
 
 
 
 
 
 
 
10
  color: #cc6666;
11
  }
12
 
13
- .tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
 
 
 
 
 
 
 
14
  color: #de935f;
15
  }
16
 
17
- .tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
 
 
18
  color: #f0c674;
19
  }
20
 
21
- .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
 
 
 
 
 
 
22
  color: #b5bd68;
23
  }
24
 
25
- .tomorrow-aqua, pre .css .hexcolor {
 
26
  color: #8abeb7;
27
  }
28
 
29
- .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
 
 
 
 
 
 
 
 
30
  color: #81a2be;
31
  }
32
 
33
- .tomorrow-purple, pre .keyword, pre .javascript .function {
 
 
34
  color: #b294bb;
35
  }
36
 
37
- pre code {
38
  display: block;
39
  background: #1d1f21;
40
  color: #c5c8c6;
41
  padding: 0.5em;
42
  }
43
 
44
- pre .coffeescript .javascript,
45
- pre .javascript .xml,
46
- pre .tex .formula,
47
- pre .xml .javascript,
48
- pre .xml .vbscript,
49
- pre .xml .css,
50
- pre .xml .cdata {
51
  opacity: 0.5;
52
  }
2
  /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
3
  /* Original theme - https://github.com/chriskempson/tomorrow-theme */
4
  /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
5
+
6
+ /* Tomorrow Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
  color: #969896;
10
  }
11
 
12
+ /* Tomorrow Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
  color: #cc6666;
26
  }
27
 
28
+ /* Tomorrow Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
  color: #de935f;
37
  }
38
 
39
+ /* Tomorrow Yellow */
40
+ .ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
  color: #f0c674;
43
  }
44
 
45
+ /* Tomorrow Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
  color: #b5bd68;
53
  }
54
 
55
+ /* Tomorrow Aqua */
56
+ .css .hljs-hexcolor {
57
  color: #8abeb7;
58
  }
59
 
60
+ /* Tomorrow Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
  color: #81a2be;
70
  }
71
 
72
+ /* Tomorrow Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
  color: #b294bb;
76
  }
77
 
78
+ .hljs {
79
  display: block;
80
  background: #1d1f21;
81
  color: #c5c8c6;
82
  padding: 0.5em;
83
  }
84
 
85
+ .coffeescript .javascript,
86
+ .javascript .xml,
87
+ .tex .hljs-formula,
88
+ .xml .javascript,
89
+ .xml .vbscript,
90
+ .xml .css,
91
+ .xml .hljs-cdata {
92
  opacity: 0.5;
93
  }
skin/adminhtml/default/default/markdown/highlight/styles/tomorrow.css CHANGED
@@ -1,49 +1,90 @@
1
  /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
2
- .tomorrow-comment, pre .comment, pre .title {
 
 
 
3
  color: #8e908c;
4
  }
5
 
6
- .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
 
 
 
 
 
 
 
 
 
 
 
 
7
  color: #c82829;
8
  }
9
 
10
- .tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
 
 
 
 
 
 
 
11
  color: #f5871f;
12
  }
13
 
14
- .tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
 
 
15
  color: #eab700;
16
  }
17
 
18
- .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
 
 
 
 
 
 
19
  color: #718c00;
20
  }
21
 
22
- .tomorrow-aqua, pre .css .hexcolor {
 
23
  color: #3e999f;
24
  }
25
 
26
- .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
 
 
 
 
 
 
 
 
27
  color: #4271ae;
28
  }
29
 
30
- .tomorrow-purple, pre .keyword, pre .javascript .function {
 
 
31
  color: #8959a8;
32
  }
33
 
34
- pre code {
35
  display: block;
36
  background: white;
37
  color: #4d4d4c;
38
  padding: 0.5em;
39
  }
40
 
41
- pre .coffeescript .javascript,
42
- pre .javascript .xml,
43
- pre .tex .formula,
44
- pre .xml .javascript,
45
- pre .xml .vbscript,
46
- pre .xml .css,
47
- pre .xml .cdata {
48
  opacity: 0.5;
49
  }
1
  /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
2
+
3
+ /* Tomorrow Comment */
4
+ .hljs-comment,
5
+ .hljs-title {
6
  color: #8e908c;
7
  }
8
 
9
+ /* Tomorrow Red */
10
+ .hljs-variable,
11
+ .hljs-attribute,
12
+ .hljs-tag,
13
+ .hljs-regexp,
14
+ .ruby .hljs-constant,
15
+ .xml .hljs-tag .hljs-title,
16
+ .xml .hljs-pi,
17
+ .xml .hljs-doctype,
18
+ .html .hljs-doctype,
19
+ .css .hljs-id,
20
+ .css .hljs-class,
21
+ .css .hljs-pseudo {
22
  color: #c82829;
23
  }
24
 
25
+ /* Tomorrow Orange */
26
+ .hljs-number,
27
+ .hljs-preprocessor,
28
+ .hljs-pragma,
29
+ .hljs-built_in,
30
+ .hljs-literal,
31
+ .hljs-params,
32
+ .hljs-constant {
33
  color: #f5871f;
34
  }
35
 
36
+ /* Tomorrow Yellow */
37
+ .ruby .hljs-class .hljs-title,
38
+ .css .hljs-rules .hljs-attribute {
39
  color: #eab700;
40
  }
41
 
42
+ /* Tomorrow Green */
43
+ .hljs-string,
44
+ .hljs-value,
45
+ .hljs-inheritance,
46
+ .hljs-header,
47
+ .ruby .hljs-symbol,
48
+ .xml .hljs-cdata {
49
  color: #718c00;
50
  }
51
 
52
+ /* Tomorrow Aqua */
53
+ .css .hljs-hexcolor {
54
  color: #3e999f;
55
  }
56
 
57
+ /* Tomorrow Blue */
58
+ .hljs-function,
59
+ .python .hljs-decorator,
60
+ .python .hljs-title,
61
+ .ruby .hljs-function .hljs-title,
62
+ .ruby .hljs-title .hljs-keyword,
63
+ .perl .hljs-sub,
64
+ .javascript .hljs-title,
65
+ .coffeescript .hljs-title {
66
  color: #4271ae;
67
  }
68
 
69
+ /* Tomorrow Purple */
70
+ .hljs-keyword,
71
+ .javascript .hljs-function {
72
  color: #8959a8;
73
  }
74
 
75
+ .hljs {
76
  display: block;
77
  background: white;
78
  color: #4d4d4c;
79
  padding: 0.5em;
80
  }
81
 
82
+ .coffeescript .javascript,
83
+ .javascript .xml,
84
+ .tex .hljs-formula,
85
+ .xml .javascript,
86
+ .xml .vbscript,
87
+ .xml .css,
88
+ .xml .hljs-cdata {
89
  opacity: 0.5;
90
  }
skin/adminhtml/default/default/markdown/highlight/styles/vs.css CHANGED
@@ -3,87 +3,87 @@
3
  Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>
4
 
5
  */
6
- pre code {
7
  display: block; padding: 0.5em;
8
  background: white; color: black;
9
  }
10
 
11
- pre .comment,
12
- pre .annotation,
13
- pre .template_comment,
14
- pre .diff .header,
15
- pre .chunk,
16
- pre .apache .cbracket {
17
- color: rgb(0, 128, 0);
18
  }
19
 
20
- pre .keyword,
21
- pre .id,
22
- pre .built_in,
23
- pre .smalltalk .class,
24
- pre .winutils,
25
- pre .bash .variable,
26
- pre .tex .command,
27
- pre .request,
28
- pre .status,
29
- pre .nginx .title,
30
- pre .xml .tag,
31
- pre .xml .tag .value {
32
- color: rgb(0, 0, 255);
33
  }
34
 
35
- pre .string,
36
- pre .title,
37
- pre .parent,
38
- pre .tag .value,
39
- pre .rules .value,
40
- pre .rules .value .number,
41
- pre .ruby .symbol,
42
- pre .ruby .symbol .string,
43
- pre .aggregate,
44
- pre .template_tag,
45
- pre .django .variable,
46
- pre .addition,
47
- pre .flow,
48
- pre .stream,
49
- pre .apache .tag,
50
- pre .date,
51
- pre .tex .formula,
52
- pre .coffeescript .attribute {
53
- color: rgb(163, 21, 21);
54
  }
55
 
56
- pre .ruby .string,
57
- pre .decorator,
58
- pre .filter .argument,
59
- pre .localvars,
60
- pre .array,
61
- pre .attr_selector,
62
- pre .pseudo,
63
- pre .pi,
64
- pre .doctype,
65
- pre .deletion,
66
- pre .envvar,
67
- pre .shebang,
68
- pre .preprocessor,
69
- pre .pragma,
70
- pre .userType,
71
- pre .apache .sqbracket,
72
- pre .nginx .built_in,
73
- pre .tex .special,
74
- pre .prompt {
75
- color: rgb(43, 145, 175);
76
  }
77
 
78
- pre .phpdoc,
79
- pre .javadoc,
80
- pre .xmlDocTag {
81
- color: rgb(128, 128, 128);
82
  }
83
 
84
- pre .vhdl .typename { font-weight: bold; }
85
- pre .vhdl .string { color: #666666; }
86
- pre .vhdl .literal { color: rgb(163, 21, 21); }
87
- pre .vhdl .attribute { color: #00B0E8; }
88
 
89
- pre .xml .attribute { color: rgb(255, 0, 0); }
3
  Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>
4
 
5
  */
6
+ .hljs {
7
  display: block; padding: 0.5em;
8
  background: white; color: black;
9
  }
10
 
11
+ .hljs-comment,
12
+ .hljs-annotation,
13
+ .hljs-template_comment,
14
+ .diff .hljs-header,
15
+ .hljs-chunk,
16
+ .apache .hljs-cbracket {
17
+ color: #008000;
18
  }
19
 
20
+ .hljs-keyword,
21
+ .hljs-id,
22
+ .hljs-built_in,
23
+ .smalltalk .hljs-class,
24
+ .hljs-winutils,
25
+ .bash .hljs-variable,
26
+ .tex .hljs-command,
27
+ .hljs-request,
28
+ .hljs-status,
29
+ .nginx .hljs-title,
30
+ .xml .hljs-tag,
31
+ .xml .hljs-tag .hljs-value {
32
+ color: #00f;
33
  }
34
 
35
+ .hljs-string,
36
+ .hljs-title,
37
+ .hljs-parent,
38
+ .hljs-tag .hljs-value,
39
+ .hljs-rules .hljs-value,
40
+ .hljs-rules .hljs-value .hljs-number,
41
+ .ruby .hljs-symbol,
42
+ .ruby .hljs-symbol .hljs-string,
43
+ .hljs-aggregate,
44
+ .hljs-template_tag,
45
+ .django .hljs-variable,
46
+ .hljs-addition,
47
+ .hljs-flow,
48
+ .hljs-stream,
49
+ .apache .hljs-tag,
50
+ .hljs-date,
51
+ .tex .hljs-formula,
52
+ .coffeescript .hljs-attribute {
53
+ color: #a31515;
54
  }
55
 
56
+ .ruby .hljs-string,
57
+ .hljs-decorator,
58
+ .hljs-filter .hljs-argument,
59
+ .hljs-localvars,
60
+ .hljs-array,
61
+ .hljs-attr_selector,
62
+ .hljs-pseudo,
63
+ .hljs-pi,
64
+ .hljs-doctype,
65
+ .hljs-deletion,
66
+ .hljs-envvar,
67
+ .hljs-shebang,
68
+ .hljs-preprocessor,
69
+ .hljs-pragma,
70
+ .userType,
71
+ .apache .hljs-sqbracket,
72
+ .nginx .hljs-built_in,
73
+ .tex .hljs-special,
74
+ .hljs-prompt {
75
+ color: #2b91af;
76
  }
77
 
78
+ .hljs-phpdoc,
79
+ .hljs-javadoc,
80
+ .hljs-xmlDocTag {
81
+ color: #808080;
82
  }
83
 
84
+ .vhdl .hljs-typename { font-weight: bold; }
85
+ .vhdl .hljs-string { color: #666666; }
86
+ .vhdl .hljs-literal { color: #a31515; }
87
+ .vhdl .hljs-attribute { color: #00B0E8; }
88
 
89
+ .xml .hljs-attribute { color: #f00; }
skin/adminhtml/default/default/markdown/highlight/styles/xcode.css CHANGED
@@ -4,154 +4,155 @@ XCode style (c) Angel Garcia <angelgarcia.mail@gmail.com>
4
 
5
  */
6
 
7
- pre code {
8
  display: block; padding: 0.5em;
9
  background: #fff; color: black;
10
  }
11
 
12
- pre .comment,
13
- pre .template_comment,
14
- pre .javadoc,
15
- pre .comment * {
16
- color: rgb(0,106,0);
17
  }
18
 
19
- pre .keyword,
20
- pre .literal,
21
- pre .nginx .title {
22
- color: rgb(170,13,145);
23
  }
24
- pre .method,
25
- pre .list .title,
26
- pre .tag .title,
27
- pre .setting .value,
28
- pre .winutils,
29
- pre .tex .command,
30
- pre .http .title,
31
- pre .request,
32
- pre .status {
33
  color: #008;
34
  }
35
 
36
- pre .envvar,
37
- pre .tex .special {
38
  color: #660;
39
  }
40
 
41
- pre .string {
42
- color: rgb(196,26,22);
43
  }
44
- pre .tag .value,
45
- pre .cdata,
46
- pre .filter .argument,
47
- pre .attr_selector,
48
- pre .apache .cbracket,
49
- pre .date,
50
- pre .regexp {
51
  color: #080;
52
  }
53
 
54
- pre .sub .identifier,
55
- pre .pi,
56
- pre .tag,
57
- pre .tag .keyword,
58
- pre .decorator,
59
- pre .ini .title,
60
- pre .shebang,
61
- pre .prompt,
62
- pre .hexcolor,
63
- pre .rules .value,
64
- pre .css .value .number,
65
- pre .symbol,
66
- pre .symbol .string,
67
- pre .number,
68
- pre .css .function,
69
- pre .clojure .title,
70
- pre .clojure .built_in,
71
- pre .function .title,
72
- pre .coffeescript .attribute {
73
- color: rgb(28,0,207);
74
- }
75
-
76
- pre .class .title,
77
- pre .haskell .type,
78
- pre .smalltalk .class,
79
- pre .javadoctag,
80
- pre .yardoctag,
81
- pre .phpdoc,
82
- pre .typename,
83
- pre .tag .attribute,
84
- pre .doctype,
85
- pre .class .id,
86
- pre .built_in,
87
- pre .setting,
88
- pre .params,
89
- pre .clojure .attribute {
90
- color: rgb(92,38,153);
91
- }
92
-
93
- pre .variable {
94
- color: rgb(63,110,116);
95
- }
96
- pre .css .tag,
97
- pre .rules .property,
98
- pre .pseudo,
99
- pre .subst {
100
  color: #000;
101
  }
102
 
103
- pre .css .class, pre .css .id {
 
104
  color: #9B703F;
105
  }
106
 
107
- pre .value .important {
108
  color: #ff7700;
109
  font-weight: bold;
110
  }
111
 
112
- pre .rules .keyword {
113
  color: #C5AF75;
114
  }
115
 
116
- pre .annotation,
117
- pre .apache .sqbracket,
118
- pre .nginx .built_in {
119
  color: #9B859D;
120
  }
121
 
122
- pre .preprocessor,
123
- pre .preprocessor *,
124
- pre .pragma {
125
- color: rgb(100,56,32);
126
  }
127
 
128
- pre .tex .formula {
129
  background-color: #EEE;
130
  font-style: italic;
131
  }
132
 
133
- pre .diff .header,
134
- pre .chunk {
135
  color: #808080;
136
  font-weight: bold;
137
  }
138
 
139
- pre .diff .change {
140
  background-color: #BCCFF9;
141
  }
142
 
143
- pre .addition {
144
  background-color: #BAEEBA;
145
  }
146
 
147
- pre .deletion {
148
  background-color: #FFC8BD;
149
  }
150
 
151
- pre .comment .yardoctag {
152
  font-weight: bold;
153
  }
154
 
155
- pre .method .id {
156
  color: #000;
157
  }
4
 
5
  */
6
 
7
+ .hljs {
8
  display: block; padding: 0.5em;
9
  background: #fff; color: black;
10
  }
11
 
12
+ .hljs-comment,
13
+ .hljs-template_comment,
14
+ .hljs-javadoc,
15
+ .hljs-comment * {
16
+ color: #006a00;
17
  }
18
 
19
+ .hljs-keyword,
20
+ .hljs-literal,
21
+ .nginx .hljs-title {
22
+ color: #aa0d91;
23
  }
24
+ .method,
25
+ .hljs-list .hljs-title,
26
+ .hljs-tag .hljs-title,
27
+ .setting .hljs-value,
28
+ .hljs-winutils,
29
+ .tex .hljs-command,
30
+ .http .hljs-title,
31
+ .hljs-request,
32
+ .hljs-status {
33
  color: #008;
34
  }
35
 
36
+ .hljs-envvar,
37
+ .tex .hljs-special {
38
  color: #660;
39
  }
40
 
41
+ .hljs-string {
42
+ color: #c41a16;
43
  }
44
+ .hljs-tag .hljs-value,
45
+ .hljs-cdata,
46
+ .hljs-filter .hljs-argument,
47
+ .hljs-attr_selector,
48
+ .apache .hljs-cbracket,
49
+ .hljs-date,
50
+ .hljs-regexp {
51
  color: #080;
52
  }
53
 
54
+ .hljs-sub .hljs-identifier,
55
+ .hljs-pi,
56
+ .hljs-tag,
57
+ .hljs-tag .hljs-keyword,
58
+ .hljs-decorator,
59
+ .ini .hljs-title,
60
+ .hljs-shebang,
61
+ .hljs-prompt,
62
+ .hljs-hexcolor,
63
+ .hljs-rules .hljs-value,
64
+ .css .hljs-value .hljs-number,
65
+ .hljs-symbol,
66
+ .hljs-symbol .hljs-string,
67
+ .hljs-number,
68
+ .css .hljs-function,
69
+ .clojure .hljs-title,
70
+ .clojure .hljs-built_in,
71
+ .hljs-function .hljs-title,
72
+ .coffeescript .hljs-attribute {
73
+ color: #1c00cf;
74
+ }
75
+
76
+ .hljs-class .hljs-title,
77
+ .haskell .hljs-type,
78
+ .smalltalk .hljs-class,
79
+ .hljs-javadoctag,
80
+ .hljs-yardoctag,
81
+ .hljs-phpdoc,
82
+ .hljs-typename,
83
+ .hljs-tag .hljs-attribute,
84
+ .hljs-doctype,
85
+ .hljs-class .hljs-id,
86
+ .hljs-built_in,
87
+ .setting,
88
+ .hljs-params,
89
+ .clojure .hljs-attribute {
90
+ color: #5c2699;
91
+ }
92
+
93
+ .hljs-variable {
94
+ color: #3f6e74;
95
+ }
96
+ .css .hljs-tag,
97
+ .hljs-rules .hljs-property,
98
+ .hljs-pseudo,
99
+ .hljs-subst {
100
  color: #000;
101
  }
102
 
103
+ .css .hljs-class,
104
+ .css .hljs-id {
105
  color: #9B703F;
106
  }
107
 
108
+ .hljs-value .hljs-important {
109
  color: #ff7700;
110
  font-weight: bold;
111
  }
112
 
113
+ .hljs-rules .hljs-keyword {
114
  color: #C5AF75;
115
  }
116
 
117
+ .hljs-annotation,
118
+ .apache .hljs-sqbracket,
119
+ .nginx .hljs-built_in {
120
  color: #9B859D;
121
  }
122
 
123
+ .hljs-preprocessor,
124
+ .hljs-preprocessor *,
125
+ .hljs-pragma {
126
+ color: #643820;
127
  }
128
 
129
+ .tex .hljs-formula {
130
  background-color: #EEE;
131
  font-style: italic;
132
  }
133
 
134
+ .diff .hljs-header,
135
+ .hljs-chunk {
136
  color: #808080;
137
  font-weight: bold;
138
  }
139
 
140
+ .diff .hljs-change {
141
  background-color: #BCCFF9;
142
  }
143
 
144
+ .hljs-addition {
145
  background-color: #BAEEBA;
146
  }
147
 
148
+ .hljs-deletion {
149
  background-color: #FFC8BD;
150
  }
151
 
152
+ .hljs-comment .hljs-yardoctag {
153
  font-weight: bold;
154
  }
155
 
156
+ .method .hljs-id {
157
  color: #000;
158
  }
skin/adminhtml/default/default/markdown/highlight/styles/zenburn.css CHANGED
@@ -5,113 +5,113 @@ based on dark.css by Ivan Sagalaev
5
 
6
  */
7
 
8
- pre code {
9
  display: block; padding: 0.5em;
10
  background: #3F3F3F;
11
  color: #DCDCDC;
12
  }
13
 
14
- pre .keyword,
15
- pre .tag,
16
- pre .css .class,
17
- pre .css .id,
18
- pre .lisp .title,
19
- pre .nginx .title,
20
- pre .request,
21
- pre .status,
22
- pre .clojure .attribute {
23
  color: #E3CEAB;
24
  }
25
 
26
- pre .django .template_tag,
27
- pre .django .variable,
28
- pre .django .filter .argument {
29
  color: #DCDCDC;
30
  }
31
 
32
- pre .number,
33
- pre .date {
34
  color: #8CD0D3;
35
  }
36
 
37
- pre .dos .envvar,
38
- pre .dos .stream,
39
- pre .variable,
40
- pre .apache .sqbracket {
41
  color: #EFDCBC;
42
  }
43
 
44
- pre .dos .flow,
45
- pre .diff .change,
46
- pre .python .exception,
47
- pre .python .built_in,
48
- pre .literal,
49
- pre .tex .special {
50
  color: #EFEFAF;
51
  }
52
 
53
- pre .diff .chunk,
54
- pre .subst {
55
  color: #8F8F8F;
56
  }
57
 
58
- pre .dos .keyword,
59
- pre .python .decorator,
60
- pre .title,
61
- pre .haskell .type,
62
- pre .diff .header,
63
- pre .ruby .class .parent,
64
- pre .apache .tag,
65
- pre .nginx .built_in,
66
- pre .tex .command,
67
- pre .prompt {
68
  color: #efef8f;
69
  }
70
 
71
- pre .dos .winutils,
72
- pre .ruby .symbol,
73
- pre .ruby .symbol .string,
74
- pre .ruby .string {
75
  color: #DCA3A3;
76
  }
77
 
78
- pre .diff .deletion,
79
- pre .string,
80
- pre .tag .value,
81
- pre .preprocessor,
82
- pre .pragma,
83
- pre .built_in,
84
- pre .sql .aggregate,
85
- pre .javadoc,
86
- pre .smalltalk .class,
87
- pre .smalltalk .localvars,
88
- pre .smalltalk .array,
89
- pre .css .rules .value,
90
- pre .attr_selector,
91
- pre .pseudo,
92
- pre .apache .cbracket,
93
- pre .tex .formula,
94
- pre .coffeescript .attribute {
95
  color: #CC9393;
96
  }
97
 
98
- pre .shebang,
99
- pre .diff .addition,
100
- pre .comment,
101
- pre .java .annotation,
102
- pre .template_comment,
103
- pre .pi,
104
- pre .doctype {
105
  color: #7F9F7F;
106
  }
107
 
108
- pre .coffeescript .javascript,
109
- pre .javascript .xml,
110
- pre .tex .formula,
111
- pre .xml .javascript,
112
- pre .xml .vbscript,
113
- pre .xml .css,
114
- pre .xml .cdata {
115
  opacity: 0.5;
116
  }
117
 
5
 
6
  */
7
 
8
+ .hljs {
9
  display: block; padding: 0.5em;
10
  background: #3F3F3F;
11
  color: #DCDCDC;
12
  }
13
 
14
+ .hljs-keyword,
15
+ .hljs-tag,
16
+ .css .hljs-class,
17
+ .css .hljs-id,
18
+ .lisp .hljs-title,
19
+ .nginx .hljs-title,
20
+ .hljs-request,
21
+ .hljs-status,
22
+ .clojure .hljs-attribute {
23
  color: #E3CEAB;
24
  }
25
 
26
+ .django .hljs-template_tag,
27
+ .django .hljs-variable,
28
+ .django .hljs-filter .hljs-argument {
29
  color: #DCDCDC;
30
  }
31
 
32
+ .hljs-number,
33
+ .hljs-date {
34
  color: #8CD0D3;
35
  }
36
 
37
+ .dos .hljs-envvar,
38
+ .dos .hljs-stream,
39
+ .hljs-variable,
40
+ .apache .hljs-sqbracket {
41
  color: #EFDCBC;
42
  }
43
 
44
+ .dos .hljs-flow,
45
+ .diff .hljs-change,
46
+ .python .exception,
47
+ .python .hljs-built_in,
48
+ .hljs-literal,
49
+ .tex .hljs-special {
50
  color: #EFEFAF;
51
  }
52
 
53
+ .diff .hljs-chunk,
54
+ .hljs-subst {
55
  color: #8F8F8F;
56
  }
57
 
58
+ .dos .hljs-keyword,
59
+ .python .hljs-decorator,
60
+ .hljs-title,
61
+ .haskell .hljs-type,
62
+ .diff .hljs-header,
63
+ .ruby .hljs-class .hljs-parent,
64
+ .apache .hljs-tag,
65
+ .nginx .hljs-built_in,
66
+ .tex .hljs-command,
67
+ .hljs-prompt {
68
  color: #efef8f;
69
  }
70
 
71
+ .dos .hljs-winutils,
72
+ .ruby .hljs-symbol,
73
+ .ruby .hljs-symbol .hljs-string,
74
+ .ruby .hljs-string {
75
  color: #DCA3A3;
76
  }
77
 
78
+ .diff .hljs-deletion,
79
+ .hljs-string,
80
+ .hljs-tag .hljs-value,
81
+ .hljs-preprocessor,
82
+ .hljs-pragma,
83
+ .hljs-built_in,
84
+ .sql .hljs-aggregate,
85
+ .hljs-javadoc,
86
+ .smalltalk .hljs-class,
87
+ .smalltalk .hljs-localvars,
88
+ .smalltalk .hljs-array,
89
+ .css .hljs-rules .hljs-value,
90
+ .hljs-attr_selector,
91
+ .hljs-pseudo,
92
+ .apache .hljs-cbracket,
93
+ .tex .hljs-formula,
94
+ .coffeescript .hljs-attribute {
95
  color: #CC9393;
96
  }
97
 
98
+ .hljs-shebang,
99
+ .diff .hljs-addition,
100
+ .hljs-comment,
101
+ .java .hljs-annotation,
102
+ .hljs-template_comment,
103
+ .hljs-pi,
104
+ .hljs-doctype {
105
  color: #7F9F7F;
106
  }
107
 
108
+ .coffeescript .javascript,
109
+ .javascript .xml,
110
+ .tex .hljs-formula,
111
+ .xml .javascript,
112
+ .xml .vbscript,
113
+ .xml .css,
114
+ .xml .hljs-cdata {
115
  opacity: 0.5;
116
  }
117