jekyll-import 0.1.0.beta4 → 0.1.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. checksums.yaml +4 -4
  2. data/History.markdown +5 -0
  3. data/Rakefile +114 -11
  4. data/jekyll-import.gemspec +67 -2
  5. data/lib/jekyll-import.rb +3 -5
  6. data/lib/jekyll-import/importer.rb +6 -0
  7. data/lib/jekyll-import/importers/rss.rb +2 -2
  8. data/lib/jekyll-import/importers/s9y.rb +1 -1
  9. data/lib/jekyll-import/importers/textpattern.rb +1 -1
  10. data/site/.gitignore +4 -0
  11. data/site/CNAME +1 -0
  12. data/site/README +1 -0
  13. data/site/_config.yml +7 -0
  14. data/site/_includes/analytics.html +32 -0
  15. data/site/_includes/docs_contents.html +10 -0
  16. data/site/_includes/docs_contents_mobile.html +14 -0
  17. data/site/_includes/docs_option.html +11 -0
  18. data/site/_includes/docs_ul.html +20 -0
  19. data/site/_includes/footer.html +15 -0
  20. data/site/_includes/header.html +18 -0
  21. data/site/_includes/news_contents.html +23 -0
  22. data/site/_includes/news_contents_mobile.html +11 -0
  23. data/site/_includes/news_item.html +24 -0
  24. data/site/_includes/primary-nav-items.html +14 -0
  25. data/site/_includes/section_nav.html +22 -0
  26. data/site/_includes/top.html +17 -0
  27. data/site/_layouts/default.html +12 -0
  28. data/site/_layouts/docs.html +29 -0
  29. data/site/_layouts/news.html +19 -0
  30. data/site/_layouts/news_item.html +27 -0
  31. data/site/_posts/2013-11-09-jekyll-import-0-1-0-beta4-release.markdown +23 -0
  32. data/site/_posts/2013-11-18-jekyll-import-0-1-0-rc1-released.markdown +17 -0
  33. data/site/css/gridism.css +110 -0
  34. data/site/css/normalize.css +1 -0
  35. data/site/css/pygments.css +70 -0
  36. data/site/css/style.css +946 -0
  37. data/site/docs/contributing.md +8 -0
  38. data/site/docs/csv.md +25 -0
  39. data/site/docs/drupal6.md +24 -0
  40. data/site/docs/drupal7.md +24 -0
  41. data/site/docs/enki.md +23 -0
  42. data/site/docs/google_reader.md +19 -0
  43. data/site/docs/history.md +7 -0
  44. data/site/docs/index.md +17 -0
  45. data/site/docs/installation.md +26 -0
  46. data/site/docs/joomla.md +26 -0
  47. data/site/docs/jrnl.md +23 -0
  48. data/site/docs/marley.md +20 -0
  49. data/site/docs/mephisto.md +23 -0
  50. data/site/docs/mt.md +23 -0
  51. data/site/docs/posterous.md +25 -0
  52. data/site/docs/rss.md +19 -0
  53. data/site/docs/s9y.md +19 -0
  54. data/site/docs/textpattern.md +30 -0
  55. data/site/docs/third-party.md +30 -0
  56. data/site/docs/tumblr.md +24 -0
  57. data/site/docs/typo.md +26 -0
  58. data/site/docs/usage.md +28 -0
  59. data/site/docs/wordpress.md +31 -0
  60. data/site/docs/wordpressdotcom.md +44 -0
  61. data/site/favicon.png +0 -0
  62. data/site/feed.xml +36 -0
  63. data/site/img/article-footer.png +0 -0
  64. data/site/img/footer-arrow.png +0 -0
  65. data/site/img/footer-logo.png +0 -0
  66. data/site/img/logo-2x.png +0 -0
  67. data/site/img/octojekyll.png +0 -0
  68. data/site/img/tube.png +0 -0
  69. data/site/img/tube1x.png +0 -0
  70. data/site/index.html +100 -0
  71. data/site/js/modernizr-2.5.3.min.js +4 -0
  72. data/site/news/index.html +10 -0
  73. data/site/news/releases/index.html +10 -0
  74. metadata +68 -3
@@ -0,0 +1,20 @@
1
+ {% assign items = include.items | split: ' ' %}
2
+
3
+ <ul>
4
+ {% for item in items %}
5
+ {% assign item_url = item | prepend:'/docs/' | append:'/' %}
6
+
7
+ {% if item_url == page.url %}
8
+ {% assign c = 'current' %}
9
+ {% else %}
10
+ {% assign c = '' %}
11
+ {% endif %}
12
+
13
+ {% for p in site.pages %}
14
+ {% if p.url == item_url %}
15
+ <li class="{{ c }}"><a href="{{ site.url }}{{ p.url }}">{{ p.title }}</a></li>
16
+ {% endif %}
17
+ {% endfor %}
18
+
19
+ {% endfor %}
20
+ </ul>
@@ -0,0 +1,15 @@
1
+ <footer>
2
+ <div class="grid">
3
+ <div class="unit one-third center-on-mobiles">
4
+ <p>By <a href="http://tom.preston-werner.com">Tom Preston-Werner</a>, <a href="http://quaran.to/">Nick Quaranto</a>, and many more <a href="{{ site.repository }}/graphs/contributors">awesome&nbsp;contributors</a>.</p>
5
+ </div>
6
+ <div class="unit two-thirds align-right center-on-mobiles">
7
+ <p>
8
+ Proudly hosted by
9
+ <a href="https://github.com">
10
+ <img src="{{ site.url }}/img/footer-logo.png" alt="GitHub • Social coding">
11
+ </a>
12
+ </p>
13
+ </div>
14
+ </div>
15
+ </footer>
@@ -0,0 +1,18 @@
1
+ <header>
2
+ <nav class="mobile-nav show-on-mobiles">
3
+ {% include primary-nav-items.html %}
4
+ </nav>
5
+ <div class="grid">
6
+ <div class="unit one-third center-on-mobiles">
7
+ <h1>
8
+ <a href="{{ site.url }}/">
9
+ <span>Jekyll</span>
10
+ <img src="{{ site.url }}/img/logo-2x.png" width="249" height="115" alt="">
11
+ </a>
12
+ </h1>
13
+ </div>
14
+ <nav class="main-nav unit two-thirds hide-on-mobiles">
15
+ {% include primary-nav-items.html %}
16
+ </nav>
17
+ </div>
18
+ </header>
@@ -0,0 +1,23 @@
1
+ <div class="unit one-fifth hide-on-mobiles">
2
+ <aside>
3
+ <ul>
4
+ <li class="{% if page.title == 'News' %}current{% endif %}">
5
+ <a href="/news/">All News</a>
6
+ </li>
7
+ <li class="{% if page.title == 'Releases' %}current{% endif %}">
8
+ <a href="/news/releases/">Jekyll Releases</a>
9
+ </li>
10
+ </ul>
11
+ <h4>Recent Releases</h4>
12
+ <ul>
13
+ {% for post in site.posts limit:5 %}
14
+ <li class="{% if page.title == post.title %}current{% endif %}">
15
+ <a href="{{ post.url }}">Version {{ post.version }}</a>
16
+ </li>
17
+ {% endfor %}
18
+ <li>
19
+ <a href="/docs/history/">History »</a>
20
+ </li>
21
+ </ul>
22
+ </aside>
23
+ </div>
@@ -0,0 +1,11 @@
1
+ <div class="docs-nav-mobile unit whole show-on-mobiles">
2
+ <select onchange="if (this.value) window.location.href=this.value">
3
+ <option value="">Navigate the blog…</option>
4
+ <option value="/news/">Home</option>
5
+ <optgroup label="v1.x">
6
+ {% for post in site.posts %}
7
+ <option value="{{ post.url }}">{{ post.title }}</option>
8
+ {% endfor %}
9
+ </optgroup>
10
+ </select>
11
+ </div>
@@ -0,0 +1,24 @@
1
+ <article>
2
+ <h2>
3
+ <a href="{{ post.url }}">
4
+ {{ post.title }}
5
+ </a>
6
+ </h2>
7
+ <span class="post-category">
8
+ {% for category in post.categories %}
9
+ <span class="label">{{ category }}</span>
10
+ {% endfor %}
11
+ </span>
12
+ <div class="post-meta">
13
+ <span class="post-date">
14
+ {{ post.date | date_to_string }}
15
+ </span>
16
+ <a href="https://github.com/{{ post.author }}" class="post-author">
17
+ <img src="https://github.com/{{ post.author }}.png" class="avatar" alt="{{ post.author }}"/>
18
+ {{ post.author }}
19
+ </a>
20
+ </div>
21
+ <div class="post-content">
22
+ {{ post.content }}
23
+ </div>
24
+ </article>
@@ -0,0 +1,14 @@
1
+ <ul>
2
+ <li class="{% if page.overview %}current{% endif %}">
3
+ <a href="{{ site.url }}/">Overview</a>
4
+ </li>
5
+ <li class="{% if page.url contains '/docs/' %}current{% endif %}">
6
+ <a href="{{ site.url }}/docs/home/">Doc<span class="show-on-mobiles">s</span><span class="hide-on-mobiles">umentation</span></a>
7
+ </li>
8
+ <li class="{% if page.author %}current{% endif %}">
9
+ <a href="{{ site.url }}/news/">News</a>
10
+ </li>
11
+ <li class="">
12
+ <a href="{{ site.repository }}"><span class="hide-on-mobiles">View on </span>GitHub</a>
13
+ </li>
14
+ </ul>
@@ -0,0 +1,22 @@
1
+ <div class="section-nav">
2
+ <div class="left align-right">
3
+ {% if page.prev_section != null %}
4
+ <a href="{{ site.url }}/docs/{{ page.prev_section }}/" class="prev">
5
+ Back
6
+ </a>
7
+ {% else %}
8
+ <span class="prev disabled">Back</span>
9
+ {% endif %}
10
+ </div>
11
+ <div class="right align-left">
12
+ {% if page.next_section != null %}
13
+ <a href="{{ site.url }}/docs/{{ page.next_section }}/" class="next">
14
+ Next
15
+ </a>
16
+ {% else %}
17
+ <span class="next disabled">Next</span>
18
+ {% endif %}
19
+ </div>
20
+ <div class="clear"></div>
21
+ </div>
22
+
@@ -0,0 +1,17 @@
1
+ <!DOCTYPE HTML>
2
+ <html lang="en-US">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>{{ page.title }} &mdash; {{ site.title }}</title>
6
+ <meta name="viewport" content="width=device-width,initial-scale=1">
7
+ <link rel="alternate" type="application/rss+xml" title="Jekyll • Simple, blog-aware, static sites - Feed" href="/feed.xml" />
8
+ <link rel="alternate" type="application/atom+xml" title="Recent commits to Jekyll’s master branch" href="{{ site.repository }}/commits/master.atom" />
9
+ <link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic' rel='stylesheet' type='text/css'>
10
+ <link href='http://fonts.googleapis.com/css?family=Arizonia' rel='stylesheet' type='text/css'>
11
+ <link rel="stylesheet" href="{{ site.url }}/css/normalize.css" />
12
+ <link rel="stylesheet" href="{{ site.url }}/css/gridism.css" />
13
+ <link rel="stylesheet" href="{{ site.url }}/css/style.css" />
14
+ <link rel="stylesheet" href="{{ site.url }}/css/pygments.css" />
15
+ <link rel="icon" type="image/x-icon" href="{{ site.url }}/favicon.png" />
16
+ <script src="{{ site.url }}/js/modernizr-2.5.3.min.js"></script>
17
+ </head>
@@ -0,0 +1,12 @@
1
+ {% include top.html %}
2
+
3
+ <body class="wrap">
4
+ {% include header.html %}
5
+
6
+ {{ content }}
7
+
8
+ {% include footer.html %}
9
+ {% include analytics.html %}
10
+
11
+ </body>
12
+ </html>
@@ -0,0 +1,29 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <section class="docs">
6
+ <div class="grid">
7
+
8
+ {% include docs_contents_mobile.html %}
9
+
10
+ <div class="unit four-fifths">
11
+ <article>
12
+ <h1>{{ page.title }}</h1>
13
+ {{ content }}
14
+ {% if page.link_source %}
15
+ <div class="button">
16
+ {% capture link_to_source %}{{ site.repository }}/blob/v{{ site.latest_release }}/lib/jekyll-import/importers/{{ page.link_source }}.rb{% endcapture %}
17
+ <a href="{{ link_to_source }}">View Source &rarr;</a>
18
+ </div>
19
+ {% endif %}
20
+ {% include section_nav.html %}
21
+ </article>
22
+ </div>
23
+
24
+ {% include docs_contents.html %}
25
+
26
+ <div class="clear"></div>
27
+
28
+ </div>
29
+ </section>
@@ -0,0 +1,19 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <section class="news">
6
+ <div class="grid">
7
+
8
+ {% include news_contents_mobile.html %}
9
+
10
+ <div class="unit four-fifths">
11
+ {{ content }}
12
+ </div>
13
+
14
+ {% include news_contents.html %}
15
+
16
+ <div class="clear"></div>
17
+
18
+ </div>
19
+ </section>
@@ -0,0 +1,27 @@
1
+ ---
2
+ layout: news
3
+ ---
4
+
5
+ <article>
6
+ <h2>
7
+ {{ page.title }}
8
+ <a href="{{ page.url }}" class="permalink" title="Permalink">∞</a>
9
+ </h2>
10
+ <span class="post-category">
11
+ {% for category in page.categories %}
12
+ <span class="label">{{ category }}</span>
13
+ {% endfor %}
14
+ </span>
15
+ <div class="post-meta">
16
+ <span class="post-date">
17
+ {{ page.date | date_to_string }}
18
+ </span>
19
+ <a href="https://github.com/{{ page.author }}" class="post-author">
20
+ <img src="https://github.com/{{ page.author }}.png" class="avatar" />
21
+ {{ page.author }}
22
+ </a>
23
+ </div>
24
+ <p class="post-content">
25
+ {{ content }}
26
+ </p>
27
+ </article>
@@ -0,0 +1,23 @@
1
+ ---
2
+ layout: news_item
3
+ title: 'jekyll-import 0.1.0.beta4 Released'
4
+ date: 2013-11-09
5
+ author: parkr
6
+ version: 0.1.0.beta4
7
+ categories: [release]
8
+ ---
9
+
10
+ A new beta has been released of the `jekyll-import` gem! This beta has been
11
+ completely reworked from the inside out and is now setup to work perfectly with
12
+ future versions of Jekyll, which will use the [`mercenary` gem][mercenary].
13
+
14
+ This new version also adds support for the following importers:
15
+
16
+ - [jrnl][]
17
+ - [Joomla][] 3.x
18
+
19
+ A plethora of bugfixes as well &emdash; enjoy!
20
+
21
+ [mercenary]: http://rubygems.org/gems/mercenary
22
+ [jrnl]: /docs/jrnl/
23
+ [Joomla]: /docs/joomla/
@@ -0,0 +1,17 @@
1
+ ---
2
+ layout: news_item
3
+ title: 'jekyll-import 0.1.0.rc1 Released'
4
+ date: 2013-11-18 18:40:18 -0500
5
+ author: parkr
6
+ version: 0.1.0.rc1
7
+ categories: [release]
8
+ ---
9
+
10
+ We're finally nearing a full release of `jekyll-import`! This release has some
11
+ critical bug fixes as well as some awesome enhancements.
12
+
13
+ **NOTE:** This version does not work with Jekyll v1.3.0's command-line
14
+ interface. Follow the docs you see for the importer you'd like to use and run
15
+ the Ruby shell command as seen there (with your own tweaks, of course).
16
+
17
+ Please [file any bugs you encounter!]({{ site.repository }}/issues/new)
@@ -0,0 +1,110 @@
1
+ /*
2
+ * Gridism
3
+ * A simple, responsive, and handy CSS grid by @cobyism
4
+ * https://github.com/cobyism/gridism
5
+ */
6
+
7
+ /* Preserve some sanity */
8
+ .grid,
9
+ .unit {
10
+ -webkit-box-sizing: border-box;
11
+ -moz-box-sizing: border-box;
12
+ box-sizing: border-box;
13
+ }
14
+
15
+ /* Set up some rules to govern the grid */
16
+ .grid {
17
+ display: block;
18
+ clear: both;
19
+ }
20
+ .grid .unit {
21
+ float: left;
22
+ width: 100%;
23
+ padding: 10px;
24
+ }
25
+
26
+ /* This ensures the outer gutters are equal to the (doubled) inner gutters. */
27
+ .grid .unit:first-child { padding-left: 20px; }
28
+ .grid .unit:last-child { padding-right: 20px; }
29
+
30
+ /* Nested grids already have padding though, so let’s nuke it */
31
+ .unit .unit:first-child { padding-left: 0; }
32
+ .unit .unit:last-child { padding-right: 0; }
33
+ .unit .grid:first-child > .unit { padding-top: 0; }
34
+ .unit .grid:last-child > .unit { padding-bottom: 0; }
35
+
36
+ /* Let people nuke the gutters/padding completely in a couple of ways */
37
+ .no-gutters .unit,
38
+ .unit.no-gutters {
39
+ padding: 0 !important;
40
+ }
41
+
42
+ /* Wrapping at a maximum width is optional */
43
+ .wrap .grid,
44
+ .grid.wrap {
45
+ max-width: 978px;
46
+ margin: 0 auto;
47
+ }
48
+
49
+ /* Width classes also have shorthand versions numbered as fractions
50
+ * For example: for a grid unit 1/3 (one third) of the parent width,
51
+ * simply apply class="w-1-3" to the element. */
52
+ .grid .whole, .grid .w-1-1 { width: 100%; }
53
+ .grid .half, .grid .w-1-2 { width: 50%; }
54
+ .grid .one-third, .grid .w-1-3 { width: 33.3332%; }
55
+ .grid .two-thirds, .grid .w-2-3 { width: 66.6665%; }
56
+ .grid .one-quarter, .grid .w-1-4 { width: 25%; }
57
+ .grid .three-quarters, .grid .w-3-4 { width: 75%; }
58
+ .grid .one-fifth, .grid .w-1-5 { width: 20%; }
59
+ .grid .two-fifths, .grid .w-2-5 { width: 40%; }
60
+ .grid .three-fifths, .grid .w-3-5 { width: 60%; }
61
+ .grid .four-fifths, .grid .w-4-5 { width: 80%; }
62
+ .grid .golden-small, .grid .w-g-s { width: 38.2716%; } /* Golden section: smaller piece */
63
+ .grid .golden-large, .grid .w-g-l { width: 61.7283%; } /* Golden section: larger piece */
64
+
65
+ /* Utility classes */
66
+ .align-center { text-align: center; }
67
+ .align-left { text-align: left; }
68
+ .align-right { text-align: right; }
69
+ .pull-left { float: left; }
70
+ .pull-right { float: right; }
71
+
72
+ .show-on-mobiles {
73
+ display: none;
74
+ }
75
+
76
+ /* Responsive Stuff */
77
+ @media screen and (max-width: 568px) {
78
+ /* Stack anything that isn’t full-width on smaller screens */
79
+ .grid .unit {
80
+ width: 100% !important;
81
+ padding-left: 20px;
82
+ padding-right: 20px;
83
+ }
84
+ .unit .grid .unit {
85
+ padding-left: 0px;
86
+ padding-right: 0px;
87
+ }
88
+
89
+ /* Sometimes, you just want to be different on small screens */
90
+ .center-on-mobiles {
91
+ text-align: center !important;
92
+ }
93
+ .hide-on-mobiles {
94
+ display: none !important;
95
+ }
96
+ .show-on-mobiles {
97
+ display: block !important;
98
+ }
99
+ a .show-on-mobiles {
100
+ display: inline !important;
101
+ }
102
+ }
103
+
104
+ /* Expand the wrap a bit further on larger screens */
105
+ /*@media screen and (min-width: 1180px) {
106
+ .wrap .grid {
107
+ max-width: 1180px;
108
+ margin: 0 auto;
109
+ }
110
+ }*/
@@ -0,0 +1 @@
1
+ /* normalize.css v2.1.2 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:0.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}
@@ -0,0 +1,70 @@
1
+ /*.highlight { background: #333333; color: #ffffff}*/
2
+ .highlight .hll { background-color: #ffffcc }
3
+ .highlight .c { color: #87ceeb} /* Comment */
4
+ .highlight .err { color: #ffffff} /* Error */
5
+ .highlight .g { color: #ffffff} /* Generic */
6
+ .highlight .k { color: #f0e68c} /* Keyword */
7
+ .highlight .l { color: #ffffff} /* Literal */
8
+ .highlight .n { color: #ffffff} /* Name */
9
+ .highlight .o { color: #ffffff} /* Operator */
10
+ .highlight .x { color: #ffffff} /* Other */
11
+ .highlight .p { color: #ffffff} /* Punctuation */
12
+ .highlight .cm { color: #87ceeb} /* Comment.Multiline */
13
+ .highlight .cp { color: #cd5c5c} /* Comment.Preproc */
14
+ .highlight .c1 { color: #87ceeb} /* Comment.Single */
15
+ .highlight .cs { color: #87ceeb} /* Comment.Special */
16
+ .highlight .gd { color: #0000c0; font-weight: bold; background-color: #008080 } /* Generic.Deleted */
17
+ .highlight .ge { color: #c000c0; text-decoration: underline} /* Generic.Emph */
18
+ .highlight .gr { color: #c0c0c0; font-weight: bold; background-color: #c00000 } /* Generic.Error */
19
+ .highlight .gh { color: #cd5c5c} /* Generic.Heading */
20
+ .highlight .gi { color: #ffffff; background-color: #0000c0 } /* Generic.Inserted */
21
+ .highlight span.go { color: #add8e6; font-weight: bold; background-color: #4d4d4d } /* Generic.Output, qualified with span to prevent applying this style to the Go language, see #1153. */
22
+ .highlight .gp { color: #ffffff} /* Generic.Prompt */
23
+ .highlight .gs { color: #ffffff} /* Generic.Strong */
24
+ .highlight .gu { color: #cd5c5c} /* Generic.Subheading */
25
+ .highlight .gt { color: #c0c0c0; font-weight: bold; background-color: #c00000 } /* Generic.Traceback */
26
+ .highlight .kc { color: #f0e68c} /* Keyword.Constant */
27
+ .highlight .kd { color: #f0e68c} /* Keyword.Declaration */
28
+ .highlight .kn { color: #f0e68c} /* Keyword.Namespace */
29
+ .highlight .kp { color: #f0e68c} /* Keyword.Pseudo */
30
+ .highlight .kr { color: #f0e68c} /* Keyword.Reserved */
31
+ .highlight .kt { color: #bdb76b} /* Keyword.Type */
32
+ .highlight .ld { color: #ffffff} /* Literal.Date */
33
+ .highlight .m { color: #ffffff} /* Literal.Number */
34
+ .highlight .s { color: #ffffff} /* Literal.String */
35
+ .highlight .na { color: #ffffff} /* Name.Attribute */
36
+ .highlight .nb { color: #ffffff} /* Name.Builtin */
37
+ .highlight .nc { color: #ffffff} /* Name.Class */
38
+ .highlight .no { color: #ffa0a0} /* Name.Constant */
39
+ .highlight .nd { color: #ffffff} /* Name.Decorator */
40
+ .highlight .ni { color: #ffdead} /* Name.Entity */
41
+ .highlight .ne { color: #ffffff} /* Name.Exception */
42
+ .highlight .nf { color: #ffffff} /* Name.Function */
43
+ .highlight .nl { color: #ffffff} /* Name.Label */
44
+ .highlight .nn { color: #ffffff} /* Name.Namespace */
45
+ .highlight .nx { color: #ffffff} /* Name.Other */
46
+ .highlight .py { color: #ffffff} /* Name.Property */
47
+ .highlight .nt { color: #f0e68c} /* Name.Tag */
48
+ .highlight .nv { color: #98fb98} /* Name.Variable */
49
+ .highlight .ow { color: #ffffff} /* Operator.Word */
50
+ .highlight .w { color: #ffffff} /* Text.Whitespace */
51
+ .highlight .mf { color: #ffffff} /* Literal.Number.Float */
52
+ .highlight .mh { color: #ffffff} /* Literal.Number.Hex */
53
+ .highlight .mi { color: #ffffff} /* Literal.Number.Integer */
54
+ .highlight .mo { color: #ffffff} /* Literal.Number.Oct */
55
+ .highlight .sb { color: #ffffff} /* Literal.String.Backtick */
56
+ .highlight .sc { color: #ffffff} /* Literal.String.Char */
57
+ .highlight .sd { color: #ffffff} /* Literal.String.Doc */
58
+ .highlight .s2 { color: #ffffff} /* Literal.String.Double */
59
+ .highlight .se { color: #ffffff} /* Literal.String.Escape */
60
+ .highlight .sh { color: #ffffff} /* Literal.String.Heredoc */
61
+ .highlight .si { color: #ffffff} /* Literal.String.Interpol */
62
+ .highlight .sx { color: #ffffff} /* Literal.String.Other */
63
+ .highlight .sr { color: #ffffff} /* Literal.String.Regex */
64
+ .highlight .s1 { color: #ffffff} /* Literal.String.Single */
65
+ .highlight .ss { color: #ffffff} /* Literal.String.Symbol */
66
+ .highlight .bp { color: #ffffff} /* Name.Builtin.Pseudo */
67
+ .highlight .vc { color: #98fb98} /* Name.Variable.Class */
68
+ .highlight .vg { color: #98fb98} /* Name.Variable.Global */
69
+ .highlight .vi { color: #98fb98} /* Name.Variable.Instance */
70
+ .highlight .il { color: #ffffff} /* Literal.Number.Integer.Long */