hoe-manualgen 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. data/.autotest +23 -0
  2. data/History.md +4 -0
  3. data/README.md +72 -0
  4. data/Rakefile +85 -0
  5. data/data/hoe-manualgen/layouts/default.erb.erb +87 -0
  6. data/data/hoe-manualgen/lib/api-filter.rb +76 -0
  7. data/data/hoe-manualgen/lib/editorial-filter.rb +59 -0
  8. data/data/hoe-manualgen/lib/examples-filter.rb +238 -0
  9. data/data/hoe-manualgen/lib/links-filter.rb +111 -0
  10. data/data/hoe-manualgen/resources/css/manual.css.erb +755 -0
  11. data/data/hoe-manualgen/resources/fonts/GraublauWeb.otf +0 -0
  12. data/data/hoe-manualgen/resources/fonts/GraublauWebBold.otf +0 -0
  13. data/data/hoe-manualgen/resources/fonts/Inconsolata.otf +0 -0
  14. data/data/hoe-manualgen/resources/images/arrow_225_small.png +0 -0
  15. data/data/hoe-manualgen/resources/images/arrow_315_small.png +0 -0
  16. data/data/hoe-manualgen/resources/images/arrow_skip.png +0 -0
  17. data/data/hoe-manualgen/resources/images/cc-by.png +0 -0
  18. data/data/hoe-manualgen/resources/images/dialog-error.png +0 -0
  19. data/data/hoe-manualgen/resources/images/dialog-information.png +0 -0
  20. data/data/hoe-manualgen/resources/images/dialog-warning.png +0 -0
  21. data/data/hoe-manualgen/resources/images/emblem-important.png +0 -0
  22. data/data/hoe-manualgen/resources/images/help.png +0 -0
  23. data/data/hoe-manualgen/resources/images/information.png +0 -0
  24. data/data/hoe-manualgen/resources/images/magnifier.png +0 -0
  25. data/data/hoe-manualgen/resources/images/magnifier_left.png +0 -0
  26. data/data/hoe-manualgen/resources/images/page_white_code.png +0 -0
  27. data/data/hoe-manualgen/resources/images/page_white_copy.png +0 -0
  28. data/data/hoe-manualgen/resources/images/printer.png +0 -0
  29. data/data/hoe-manualgen/resources/images/question.png +0 -0
  30. data/data/hoe-manualgen/resources/images/scripts_code.png +0 -0
  31. data/data/hoe-manualgen/resources/images/wrap.png +0 -0
  32. data/data/hoe-manualgen/resources/images/wrapping.png +0 -0
  33. data/data/hoe-manualgen/resources/js/jquery-1.4.4.min.js +167 -0
  34. data/data/hoe-manualgen/resources/js/manual.js +30 -0
  35. data/data/hoe-manualgen/resources/js/sh.js +580 -0
  36. data/data/hoe-manualgen/resources/swf/clipboard.swf +0 -0
  37. data/data/hoe-manualgen/src/index.page.erb +59 -0
  38. data/lib/hoe/manualgen.rb +804 -0
  39. data.tar.gz.sig +0 -0
  40. metadata +230 -0
  41. metadata.gz.sig +4 -0
@@ -0,0 +1,755 @@
1
+ /*
2
+ * <%= name %> Manual Stylesheet
3
+ *
4
+ * Authors:
5
+ * Michael Granger <ged@FaerieMUD.org>
6
+ *
7
+ * Two column fluid layout adapted from Matthew James Taylor's
8
+ * "Perfect 'Left Menu' 2 Column Liquid Layout":
9
+ * http://matthewjamestaylor.com/blog/perfect-2-column-left-menu.htm
10
+ */
11
+
12
+ @import url(reset.css);
13
+
14
+ @font-face {
15
+ font-family: GraublauWeb;
16
+ src: url(../fonts/GraublauWeb.otf) format(truetype);
17
+ }
18
+
19
+ @font-face {
20
+ font-family: GraublauWeb;
21
+ font-weight: bold;
22
+ src: url(../fonts/GraublauWebBold.otf) format(truetype);
23
+ }
24
+
25
+ @font-face {
26
+ font-family: Inconsolata;
27
+ src: url(../fonts/Inconsolata.otf) format(truetype);
28
+ }
29
+
30
+
31
+ /* @group Elements */
32
+ html {
33
+ background-color: #a5a5a5;
34
+ }
35
+
36
+ body {
37
+ margin: 0;
38
+ padding: 0;
39
+ min-width: 800px;
40
+ font-family: GraublauWeb, sans-serif;
41
+ }
42
+
43
+ nav ul.index-section {
44
+ list-style: none;
45
+ padding: 0;
46
+ line-height: 1.5em;
47
+ margin: 0;
48
+ }
49
+
50
+ a {
51
+ color: #4c87cb;
52
+ text-decoration: inherit;
53
+ border-bottom: 1px dotted;
54
+ border-color: rgba(76,135,203,0.5);
55
+ }
56
+
57
+ a:hover {
58
+ border-color: #4c87cb;
59
+ background-color: rgba(253,255,132,0.5);
60
+ }
61
+
62
+ h1, h2, h3, h4, h5, h6 {
63
+ margin-bottom: 0.2em;
64
+ }
65
+
66
+ h1 {
67
+ font-size: 3em;
68
+ font-weight: bold;
69
+ }
70
+
71
+ h2 {
72
+ font-size: 2em;
73
+ font-weight: bold;
74
+ }
75
+
76
+ h3 {
77
+ font-size: 1.5em;
78
+ }
79
+
80
+ p {
81
+ margin: 0;
82
+ }
83
+ p + p,
84
+ p + ul,
85
+ p + ol {
86
+ margin-top: 1em;
87
+ }
88
+
89
+ p + h2,
90
+ p + h3 {
91
+ margin-top: 1em;
92
+ }
93
+
94
+ li {
95
+ list-style: disc;
96
+ margin: 0.5em 1.2em
97
+ }
98
+
99
+ code, pre {
100
+ font-family: Inconsolata, monospace;
101
+ }
102
+
103
+ code {
104
+ background-color: rgba(179,179,179,0.4);
105
+ }
106
+
107
+ dl {
108
+ margin: 0.5em 0;
109
+ padding: 0 0.5em;
110
+ }
111
+ dt {
112
+ padding: 0 0.25em;
113
+ border-top-left-radius: 0.5em;
114
+ border-top-right-radius: 0.5em;
115
+ background: -webkit-gradient(radial,
116
+ 20% 0, 0,
117
+ 20% 0, 800,
118
+ color-stop(0.0,#bbb),
119
+ color-stop(1.0,#cecece));
120
+ background: -moz-radial-gradient(
121
+ 20% top,
122
+ farthest-side,
123
+ #bbb,
124
+ #cecece);
125
+ }
126
+ dd {
127
+ padding: 0 0.25em;
128
+ border-bottom-left-radius: 0.5em;
129
+ border-bottom-right-radius: 0.5em;
130
+ margin-left: 0;
131
+ background: -webkit-gradient(radial,
132
+ 20% 0, 0,
133
+ 20% 0, 800,
134
+ color-stop(0.0,#ddd),
135
+ color-stop(1.0,#efefef));
136
+ background: -moz-radial-gradient(
137
+ 20% top,
138
+ farthest-side,
139
+ #ddd,
140
+ #efefef);
141
+ }
142
+ dd + dt {
143
+ margin-top: 0.5em;
144
+ }
145
+ /* @end */
146
+
147
+
148
+ /* @group IDed elements */
149
+ #page {
150
+
151
+ }
152
+
153
+ #page > header {
154
+ position: relative;
155
+ background-color: #81a7d2;
156
+ background: -webkit-gradient(radial,
157
+ 20% 0, 0,
158
+ 20% 0, 800,
159
+ color-stop(0.0,#81a7d2),
160
+ color-stop(1.0,#6187b2));
161
+ background: -moz-radial-gradient(
162
+ 20% top,
163
+ farthest-side,
164
+ #81a7d2,
165
+ #6187b2);
166
+ color: #fff;
167
+ padding: 0.2em 1em;
168
+ }
169
+
170
+ #page > header hgroup h1,
171
+ #page > header hgroup h2 {
172
+ margin: 4px 0;
173
+ text-shadow: 2px 2px 5px rgba(25,25,25, 0.5);
174
+ }
175
+
176
+ #page > header h1 {
177
+ font-size: 90px;
178
+ text-shadow: 1px 1px 2px rgba( 25,25,25, 0.5 );
179
+ z-index: 50;
180
+ }
181
+
182
+ #page > header h2.tagline {
183
+ font-weight: normal;
184
+ letter-spacing: 0.35em;
185
+ color: #eee;
186
+ font-size: 1.2em;
187
+ margin-top: -1em;
188
+ margin-left: 1em;
189
+ }
190
+
191
+ header a {
192
+ color: inherit;
193
+ text-decoration: inherit;
194
+ }
195
+
196
+ aside#sidebar {
197
+ margin: 0;
198
+ vertical-align: top;
199
+ }
200
+ aside#sidebar h3 {
201
+ margin: 0;
202
+ }
203
+ aside#sidebar nav {
204
+ }
205
+
206
+ #auto-toc {
207
+ float: right;
208
+ margin: 1em;
209
+ margin-left: 2em;
210
+ padding: 1em;
211
+ background: #ddd;
212
+ border: 1px solid rgba(25,25,25,0.3);
213
+ border-radius: 4px;
214
+ -webkit-box-shadow: 0 0 3px #333;
215
+ }
216
+ #auto-toc h2 {
217
+ font-size: 1.2em;
218
+ font-weight: normal;
219
+ color: #999;
220
+ }
221
+ #auto-toc ul {
222
+ margin: 0;
223
+ padding: 0;
224
+ }
225
+ #auto-toc ul li {
226
+ margin: 0;
227
+ list-style: none;
228
+ }
229
+
230
+ section#content {
231
+ padding: 0;
232
+ }
233
+
234
+ #page > footer {
235
+ color: #444;
236
+ clear: both;
237
+ padding: 2em;
238
+ background: #a5a5a5;
239
+ background-image: -moz-linear-gradient(
240
+ top,
241
+ #000000 0%,
242
+ #ccc 8%,
243
+ #adadad 51%,
244
+ #a5a5a5 100%
245
+ );
246
+ background-image: -webkit-gradient(
247
+ linear,
248
+ left top,
249
+ left bottom,
250
+ color-stop(0%,#888),
251
+ color-stop(5%,#ccc),
252
+ color-stop(51%,#adadad),
253
+ color-stop(100%,#a5a5a5)
254
+ );
255
+ border-top: 2px solid rgba( 25,25,25, 0.2 );
256
+ font-size: 0.8em;
257
+ }
258
+ /* @end */
259
+
260
+
261
+
262
+ /* @group Generic Classes */
263
+
264
+ p.diagram {
265
+ text-align: center;
266
+ margin-bottom: 0;
267
+ clear: both;
268
+ }
269
+
270
+ p.caption {
271
+ text-align: center;
272
+ margin: 0 auto 1.5em;
273
+ font-size: 0.9em;
274
+ width: 50%;
275
+ font-weight: bold;
276
+ }
277
+
278
+ /* @end Generic Classes */
279
+
280
+ /* @group 2-Column Fluid Layout */
281
+
282
+ /* column container */
283
+
284
+ .colmask {
285
+ position: relative;
286
+ clear: both;
287
+ float: left;
288
+ width: 100%;
289
+ overflow: hidden;
290
+ }
291
+
292
+ /* common column settings */
293
+
294
+ .colright,
295
+ .colmid,
296
+ .colleft {
297
+ float: left;
298
+ width: 100%;
299
+ position: relative;
300
+ padding: 1.5em 0;
301
+ }
302
+
303
+ .col1,
304
+ .col2,
305
+ .col3 {
306
+ float: left;
307
+ position: relative;
308
+ padding: 0 0 1em 0;
309
+ overflow: hidden;
310
+ }
311
+
312
+ /* 2 Column (left menu) settings */
313
+
314
+ .leftmenu {
315
+ background: #fff;
316
+ }
317
+
318
+ .leftmenu .colleft {
319
+ right: 75%;
320
+ background: #ddd;
321
+ }
322
+
323
+ .leftmenu .col1 {
324
+ width: 71%;
325
+ left: 102%;
326
+ }
327
+
328
+ .leftmenu .col2 {
329
+ width: 21%;
330
+ left: 6%;
331
+ }
332
+
333
+ /* @end */
334
+
335
+ /* @group Examples */
336
+
337
+ div.caption {
338
+ font-size: 0.8em;
339
+ text-align: center;
340
+ padding: 0.25em 0;
341
+ overflow: hidden;
342
+ }
343
+
344
+ div.example {
345
+ margin: 0.5em;
346
+ padding: 0;
347
+ font: 0.9em Inconsolata, Menlo, "Bitstream Vera Sans Mono", monospace;
348
+ overflow: hidden;
349
+ line-height: 1.1em;
350
+ }
351
+
352
+ div.example pre {
353
+ line-height: 1.2em;
354
+ margin: 0;
355
+ padding: 0;
356
+ overflow: hidden;
357
+ }
358
+
359
+ div.example pre:hover {
360
+ overflow: auto;
361
+ }
362
+
363
+ pre.deveiate .line-numbers {
364
+ background-color: #474860;
365
+ color: #f3f3f3;
366
+ font-size: 0.8em;
367
+ padding: 0.3em 0;
368
+ letter-spacing: -0.1em;
369
+ }
370
+
371
+ pre.console-output {
372
+
373
+ }
374
+
375
+ /* @end Examples */
376
+
377
+ /* @group Callouts */
378
+
379
+ div.callout {
380
+ margin: 2em 0;
381
+ padding: 1em;
382
+ padding-left: 45px;
383
+ border: 2px solid #787890;
384
+ background: #cfcff8 url(../images/dialog-information.png) no-repeat 5px 1em;
385
+ }
386
+
387
+ div.callout p {
388
+ margin: 0;
389
+ }
390
+
391
+ div.callout p + p {
392
+ margin-top: 1em;
393
+ }
394
+
395
+ div.callout.caution-callout {
396
+ background-image: url(../images/dialog-warning.png);
397
+ background-color: #fdffcc;
398
+ border-color: #d5d96d;
399
+ }
400
+
401
+ /* @end Callouts */
402
+
403
+ /* @group Syntax Highlighter */
404
+
405
+ /**
406
+ * SyntaxHighlighter
407
+ * http://alexgorbatchev.com/SyntaxHighlighter
408
+ *
409
+ * SyntaxHighlighter is donationware. If you are using it, please donate.
410
+ * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
411
+ *
412
+ * @version
413
+ * 3.0.83 (July 02 2010)
414
+ *
415
+ * @copyright
416
+ * Copyright (C) 2004-2010 Alex Gorbatchev.
417
+ *
418
+ * @license
419
+ * Dual licensed under the MIT and GPL licenses.
420
+ */
421
+
422
+ /* Modified by Michael Granger */
423
+
424
+ .syntaxhighlighter a,
425
+ .syntaxhighlighter div,
426
+ .syntaxhighlighter code,
427
+ .syntaxhighlighter table,
428
+ .syntaxhighlighter table td,
429
+ .syntaxhighlighter table tr,
430
+ .syntaxhighlighter table tbody,
431
+ .syntaxhighlighter table thead,
432
+ .syntaxhighlighter table caption,
433
+ .syntaxhighlighter textarea {
434
+ -moz-border-radius: 0 0 0 0;
435
+ -webkit-border-radius: 0 0 0 0;
436
+ background: none;
437
+ border: 0;
438
+ bottom: auto;
439
+ float: none;
440
+ height: auto;
441
+ left: auto;
442
+ line-height: 1.1em;
443
+ margin: 0;
444
+ outline: 0;
445
+ overflow: visible;
446
+ padding: 0;
447
+ position: static;
448
+ right: auto;
449
+ text-align: left;
450
+ top: auto;
451
+ vertical-align: baseline;
452
+ width: auto;
453
+ box-sizing: content-box;
454
+ font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
455
+ font-weight: normal;
456
+ font-style: normal;
457
+ font-size: 1em;
458
+ min-height: inherit;
459
+ min-height: auto;
460
+ }
461
+
462
+ .syntaxhighlighter {
463
+ width: 100%;
464
+ margin: 1em 0 1em 0;
465
+ position: relative;
466
+ overflow: auto;
467
+ font-size: 1em;
468
+ }
469
+ .syntaxhighlighter.source {
470
+ overflow: hidden;
471
+ }
472
+ .syntaxhighlighter .bold {
473
+ font-weight: bold;
474
+ }
475
+ .syntaxhighlighter .italic {
476
+ font-style: italic;
477
+ }
478
+ .syntaxhighlighter .line {
479
+ white-space: pre;
480
+ }
481
+ .syntaxhighlighter table {
482
+ width: 100%;
483
+ }
484
+ .syntaxhighlighter table caption {
485
+ text-align: left;
486
+ padding: .5em 0 0.5em 1em;
487
+ }
488
+ .syntaxhighlighter table td.code {
489
+ width: 100%;
490
+ }
491
+ .syntaxhighlighter table td.code .container {
492
+ position: relative;
493
+ }
494
+ .syntaxhighlighter table td.code .container textarea {
495
+ box-sizing: border-box;
496
+ position: absolute;
497
+ left: 0;
498
+ top: 0;
499
+ width: 100%;
500
+ height: 100%;
501
+ border: none;
502
+ background: white;
503
+ padding-left: 1em;
504
+ overflow: hidden;
505
+ white-space: pre;
506
+ }
507
+ .syntaxhighlighter table td.gutter .line {
508
+ text-align: right;
509
+ padding: 0 0.5em 0 1em;
510
+ }
511
+ .syntaxhighlighter table td.code .line {
512
+ padding: 0 1em;
513
+ }
514
+ .syntaxhighlighter.nogutter td.code .container textarea, .syntaxhighlighter.nogutter td.code .line {
515
+ padding-left: 0em;
516
+ }
517
+ .syntaxhighlighter.show {
518
+ display: block;
519
+ }
520
+ .syntaxhighlighter.collapsed table {
521
+ display: none;
522
+ }
523
+ .syntaxhighlighter.collapsed .toolbar {
524
+ padding: 0.1em 0.8em 0em 0.8em;
525
+ font-size: 1em;
526
+ position: static;
527
+ width: auto;
528
+ height: auto;
529
+ }
530
+ .syntaxhighlighter.collapsed .toolbar span {
531
+ display: inline;
532
+ margin-right: 1em;
533
+ }
534
+ .syntaxhighlighter.collapsed .toolbar span a {
535
+ padding: 0;
536
+ display: none;
537
+ }
538
+ .syntaxhighlighter.collapsed .toolbar span a.expandSource {
539
+ display: inline;
540
+ }
541
+ .syntaxhighlighter .toolbar {
542
+ position: absolute;
543
+ right: 1px;
544
+ top: 1px;
545
+ width: 11px;
546
+ height: 11px;
547
+ font-size: 10px;
548
+ z-index: 10;
549
+ }
550
+ .syntaxhighlighter .toolbar span.title {
551
+ display: inline;
552
+ }
553
+ .syntaxhighlighter .toolbar a {
554
+ display: block;
555
+ text-align: center;
556
+ text-decoration: none;
557
+ padding-top: 1px;
558
+ }
559
+ .syntaxhighlighter .toolbar a.expandSource {
560
+ display: none;
561
+ }
562
+ .syntaxhighlighter.ie {
563
+ font-size: .9em;
564
+ padding: 1px 0 1px 0;
565
+ }
566
+ .syntaxhighlighter.ie .toolbar {
567
+ line-height: 8px;
568
+ }
569
+ .syntaxhighlighter.ie .toolbar a {
570
+ padding-top: 0px;
571
+ }
572
+ .syntaxhighlighter.printing .line.alt1 .content,
573
+ .syntaxhighlighter.printing .line.alt2 .content,
574
+ .syntaxhighlighter.printing .line.highlighted .number,
575
+ .syntaxhighlighter.printing .line.highlighted.alt1 .content,
576
+ .syntaxhighlighter.printing .line.highlighted.alt2 .content {
577
+ background: none;
578
+ }
579
+ .syntaxhighlighter.printing .line .number {
580
+ color: #bbbbbb;
581
+ }
582
+ .syntaxhighlighter.printing .line .content {
583
+ color: black;
584
+ }
585
+ .syntaxhighlighter.printing .toolbar {
586
+ display: none;
587
+ }
588
+ .syntaxhighlighter.printing a {
589
+ text-decoration: none;
590
+ }
591
+ .syntaxhighlighter.printing .plain, .syntaxhighlighter.printing .plain a {
592
+ color: black;
593
+ }
594
+ .syntaxhighlighter.printing .comments, .syntaxhighlighter.printing .comments a {
595
+ color: #008200;
596
+ }
597
+ .syntaxhighlighter.printing .string, .syntaxhighlighter.printing .string a {
598
+ color: blue;
599
+ }
600
+ .syntaxhighlighter.printing .keyword {
601
+ color: #006699;
602
+ font-weight: bold;
603
+ }
604
+ .syntaxhighlighter.printing .preprocessor {
605
+ color: gray;
606
+ }
607
+ .syntaxhighlighter.printing .variable {
608
+ color: #aa7700;
609
+ }
610
+ .syntaxhighlighter.printing .value {
611
+ color: #009900;
612
+ }
613
+ .syntaxhighlighter.printing .functions {
614
+ color: #ff1493;
615
+ }
616
+ .syntaxhighlighter.printing .constants {
617
+ color: #0066cc;
618
+ }
619
+ .syntaxhighlighter.printing .script {
620
+ font-weight: bold;
621
+ }
622
+ .syntaxhighlighter.printing .color1, .syntaxhighlighter.printing .color1 a {
623
+ color: gray;
624
+ }
625
+ .syntaxhighlighter.printing .color2, .syntaxhighlighter.printing .color2 a {
626
+ color: #ff1493;
627
+ }
628
+ .syntaxhighlighter.printing .color3, .syntaxhighlighter.printing .color3 a {
629
+ color: red;
630
+ }
631
+ .syntaxhighlighter.printing .break, .syntaxhighlighter.printing .break a {
632
+ color: black;
633
+ }
634
+
635
+ .syntaxhighlighter {
636
+ background-color: #333;
637
+ }
638
+ .syntaxhighlighter .line.alt1 {
639
+ background-color: #333;
640
+ }
641
+ .syntaxhighlighter .line.alt2 {
642
+ background-color: #323232;
643
+ }
644
+ .syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 {
645
+ background-color: #2a3133;
646
+ }
647
+ .syntaxhighlighter .line.highlighted.number {
648
+ color: white;
649
+ }
650
+ .syntaxhighlighter table caption {
651
+ color: #d3d3d3;
652
+ }
653
+ .syntaxhighlighter .gutter {
654
+ color: #d3d3d3;
655
+ }
656
+ .syntaxhighlighter .gutter .line {
657
+ border-right: 3px solid #990000;
658
+ }
659
+ .syntaxhighlighter .gutter .line.highlighted {
660
+ background-color: #990000;
661
+ color: black;
662
+ }
663
+ .syntaxhighlighter.printing .line .content {
664
+ border: none;
665
+ }
666
+ .syntaxhighlighter.collapsed {
667
+ overflow: visible;
668
+ }
669
+ .syntaxhighlighter.collapsed .toolbar {
670
+ color: #ebdb8d;
671
+ background: black;
672
+ border: 1px solid #990000;
673
+ }
674
+ .syntaxhighlighter.collapsed .toolbar a {
675
+ color: #ebdb8d;
676
+ }
677
+ .syntaxhighlighter.collapsed .toolbar a:hover {
678
+ color: #ff7d27;
679
+ }
680
+ .syntaxhighlighter .toolbar {
681
+ color: white;
682
+ background: #990000;
683
+ border: none;
684
+ }
685
+ .syntaxhighlighter .toolbar a {
686
+ color: white;
687
+ }
688
+ .syntaxhighlighter .toolbar a:hover {
689
+ color: #9ccff4;
690
+ }
691
+ /************************************
692
+ * Actual syntax highlighter colors.
693
+ ************************************/
694
+
695
+ .syntaxhighlighter .plain,
696
+ .syntaxhighlighter .plain a {
697
+ color: #D3D3D3;
698
+ }
699
+
700
+ .syntaxhighlighter .comments,
701
+ .syntaxhighlighter .comments a {
702
+ color: #a11;
703
+ }
704
+
705
+ .syntaxhighlighter .string,
706
+ .syntaxhighlighter .string a {
707
+ color: rgba(227,207,87, 0.9);
708
+ }
709
+
710
+ .syntaxhighlighter .keyword {
711
+ color: rgb(0,203,205);
712
+ }
713
+
714
+ .syntaxhighlighter .preprocessor {
715
+ color: #AEC4DE;
716
+ }
717
+
718
+ .syntaxhighlighter .variable {
719
+ color: #FFAA3E;
720
+ }
721
+
722
+ .syntaxhighlighter .value {
723
+ color: #090;
724
+ }
725
+
726
+ .syntaxhighlighter .functions {
727
+ color: #81CEF9;
728
+ }
729
+
730
+ .syntaxhighlighter .constants {
731
+ color: #FF9E7B;
732
+ }
733
+
734
+ .syntaxhighlighter .script {
735
+ background-color: #990000;
736
+ }
737
+
738
+ .syntaxhighlighter .color1,
739
+ .syntaxhighlighter .color1 a {
740
+ color: #EBDB8D;
741
+ }
742
+
743
+ .syntaxhighlighter .color2,
744
+ .syntaxhighlighter .color2 a {
745
+ color: rgb(177,247,158);
746
+ }
747
+
748
+ .syntaxhighlighter .color3,
749
+ .syntaxhighlighter .color3 a {
750
+ color: #AEC4DE;
751
+ }
752
+
753
+
754
+ /* @end */
755
+