just-the-docs 0.2.8 → 0.2.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/_includes/css/custom.scss.liquid +1 -0
- data/_includes/css/just-the-docs.scss.liquid +7 -0
- data/_includes/head.html +4 -4
- data/_includes/nav.html +15 -4
- data/_layouts/default.html +43 -6
- data/_layouts/table_wrappers.html +1 -1
- data/_sass/base.scss +14 -17
- data/_sass/code.scss +207 -68
- data/_sass/color_schemes/dark.scss +0 -1
- data/_sass/color_schemes/light.scss +0 -0
- data/_sass/content.scss +33 -0
- data/_sass/custom/custom.scss +0 -129
- data/_sass/labels.scss +5 -4
- data/_sass/layout.scss +3 -2
- data/_sass/modules.scss +19 -0
- data/_sass/support/_functions.scss +2 -3
- data/_sass/support/_variables.scss +7 -6
- data/_sass/support/mixins/_layout.scss +1 -3
- data/_sass/support/mixins/_typography.scss +6 -1
- data/_sass/typography.scss +9 -7
- data/_sass/utilities/_layout.scss +74 -17
- data/_sass/utilities/_spacing.scss +69 -25
- data/assets/css/just-the-docs-dark.scss +3 -0
- data/assets/css/just-the-docs-default.scss +8 -0
- data/assets/css/just-the-docs-light.scss +3 -0
- data/assets/js/just-the-docs.js +14 -0
- data/assets/js/search-data.json +1 -1
- data/lib/tasks/search.rake +2 -2
- metadata +10 -7
- data/_sass/overrides.scss +0 -3
- data/assets/css/dark-mode-preview.scss +0 -45
- data/assets/css/just-the-docs.scss +0 -49
- data/assets/js/dark-mode-preview.js +0 -23
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1dadb070c0e24c8e955bf5f3de0268adbfe088d6f989ef47924f32b832e67b4e
|
4
|
+
data.tar.gz: b066f2a83fc772dbf2fac349944cd1a701ea154187dd11c3ace04801a5aac91d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19ca0f3d71d801855eb77b51391f7636949d2f359283acda07663f222e227cfe51516b9773352160b44487e18bc0c7ce0821b54ea7efae3b403b0562ee343fd7
|
7
|
+
data.tar.gz: cd1240ad2cc18b33b9797b87a103a8d05e159ff67c4c9b8072add4feb49f450c877b55d53189b498f96d54b180352bb5ec73edc95035b40c44b72d5530e1b289
|
data/README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
<p align="right">
|
2
|
-
<a href="https://badge.fury.io/rb/just-the-docs"><img src="https://badge.fury.io/rb/just-the-docs.svg" alt="Gem version"></a> <a href="https://github.com/pmarsceill/just-the-docs/actions"><img src="https://github.com/pmarsceill/just-the-docs/workflows/
|
2
|
+
<a href="https://badge.fury.io/rb/just-the-docs"><img src="https://badge.fury.io/rb/just-the-docs.svg" alt="Gem version"></a> <a href="https://github.com/pmarsceill/just-the-docs/actions?query=workflow%3A%22Master+branch+CI%22"><img src="https://github.com/pmarsceill/just-the-docs/workflows/Master%20branch%20CI/badge.svg" alt="Build status"></a>
|
3
3
|
</p>
|
4
4
|
<br><br>
|
5
5
|
<p align="center">
|
@@ -0,0 +1 @@
|
|
1
|
+
@import "./custom/custom";
|
data/_includes/head.html
CHANGED
@@ -2,17 +2,17 @@
|
|
2
2
|
<meta charset="UTF-8">
|
3
3
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
4
4
|
|
5
|
-
{%
|
5
|
+
{% unless site.plugins contains "jekyll-seo-tag" %}
|
6
6
|
<title>{{ page.title }} - {{ site.title }}</title>
|
7
7
|
|
8
8
|
{% if page.description %}
|
9
9
|
<meta name="Description" content="{{ page.description }}">
|
10
10
|
{% endif %}
|
11
|
-
{%
|
11
|
+
{% endunless %}
|
12
12
|
|
13
13
|
<link rel="shortcut icon" href="{{ 'favicon.ico' | absolute_url }}" type="image/x-icon">
|
14
14
|
|
15
|
-
<link rel="stylesheet" href="{{ '/assets/css/just-the-docs.css' | absolute_url }}">
|
15
|
+
<link rel="stylesheet" href="{{ '/assets/css/just-the-docs-default.css' | absolute_url }}">
|
16
16
|
|
17
17
|
{% if site.ga_tracking != nil %}
|
18
18
|
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.ga_tracking }}"></script>
|
@@ -21,7 +21,7 @@
|
|
21
21
|
function gtag(){dataLayer.push(arguments);}
|
22
22
|
gtag('js', new Date());
|
23
23
|
|
24
|
-
gtag('config',
|
24
|
+
gtag('config', '{{ site.ga_tracking }}'{% unless site.ga_tracking_anonymize_ip == nil %}, { 'anonymize_ip': true }{% endunless %});
|
25
25
|
</script>
|
26
26
|
|
27
27
|
{% endif %}
|
data/_includes/nav.html
CHANGED
@@ -1,25 +1,35 @@
|
|
1
1
|
<nav role="navigation" aria-label="Main navigation">
|
2
2
|
<ul class="navigation-list">
|
3
|
-
{%- assign
|
3
|
+
{%- assign ordered_pages_list = site.html_pages | where_exp:"item", "item.nav_order != nil" -%}
|
4
|
+
{%- assign unordered_pages_list = site.html_pages | where_exp:"item", "item.nav_order == nil" -%}
|
5
|
+
{%- if site.nav_sort == 'case_insensitive' -%}
|
6
|
+
{%- assign sorted_ordered_pages_list = ordered_pages_list | sort_natural:"nav_order" -%}
|
7
|
+
{%- assign sorted_unordered_pages_list = unordered_pages_list | sort_natural:"title" -%}
|
8
|
+
{%- else -%}
|
9
|
+
{%- assign sorted_ordered_pages_list = ordered_pages_list | sort:"nav_order" -%}
|
10
|
+
{%- assign sorted_unordered_pages_list = unordered_pages_list | sort:"title" -%}
|
11
|
+
{%- endif -%}
|
12
|
+
{%- assign pages_list = sorted_ordered_pages_list | concat: sorted_unordered_pages_list -%}
|
4
13
|
{%- for node in pages_list -%}
|
5
14
|
{%- unless node.nav_exclude -%}
|
6
|
-
{%- if node.parent == nil -%}
|
15
|
+
{%- if node.parent == nil and node.title -%}
|
7
16
|
<li class="navigation-list-item{% if page.url == node.url or page.parent == node.title or page.grand_parent == node.title %} active{% endif %}">
|
8
17
|
{%- if page.parent == node.title or page.grand_parent == node.title -%}
|
9
18
|
{%- assign first_level_url = node.url | absolute_url -%}
|
10
19
|
{%- endif -%}
|
11
20
|
<a href="{{ node.url | absolute_url }}" class="navigation-list-link{% if page.url == node.url %} active{% endif %}">{{ node.title }}</a>
|
12
21
|
{%- if node.has_children -%}
|
13
|
-
{%- assign children_list =
|
22
|
+
{%- assign children_list = pages_list | where: "parent", node.title -%}
|
14
23
|
<ul class="navigation-list-child-list ">
|
15
24
|
{%- for child in children_list -%}
|
25
|
+
{%- unless child.nav_exclude -%}
|
16
26
|
<li class="navigation-list-item {% if page.url == child.url or page.parent == child.title %} active{% endif %}">
|
17
27
|
{%- if page.url == child.url or page.parent == child.title -%}
|
18
28
|
{%- assign second_level_url = child.url | absolute_url -%}
|
19
29
|
{%- endif -%}
|
20
30
|
<a href="{{ child.url | absolute_url }}" class="navigation-list-link{% if page.url == child.url %} active{% endif %}">{{ child.title }}</a>
|
21
31
|
{%- if child.has_children -%}
|
22
|
-
{%- assign grand_children_list =
|
32
|
+
{%- assign grand_children_list = pages_list | where: "parent", child.title | where: "grand_parent", node.title -%}
|
23
33
|
<ul class="navigation-list-child-list">
|
24
34
|
{%- for grand_child in grand_children_list -%}
|
25
35
|
<li class="navigation-list-item {% if page.url == grand_child.url %} active{% endif %}">
|
@@ -29,6 +39,7 @@
|
|
29
39
|
</ul>
|
30
40
|
{%- endif -%}
|
31
41
|
</li>
|
42
|
+
{%- endunless -%}
|
32
43
|
{%- endfor -%}
|
33
44
|
</ul>
|
34
45
|
{%- endif -%}
|
data/_layouts/default.html
CHANGED
@@ -29,7 +29,7 @@ layout: table_wrappers
|
|
29
29
|
</footer>
|
30
30
|
</div>
|
31
31
|
<div class="main-content-wrap js-main-content" tabindex="0">
|
32
|
-
<div class="main-content">
|
32
|
+
<div class="main-content" id="top">
|
33
33
|
<div class="page-header js-page-header">
|
34
34
|
{% if site.search_enabled != false %}
|
35
35
|
<div class="search">
|
@@ -43,7 +43,15 @@ layout: table_wrappers
|
|
43
43
|
{% if site.aux_links != nil %}
|
44
44
|
<ul class="list-style-none text-small aux-nav">
|
45
45
|
{% for link in site.aux_links %}
|
46
|
-
<li class="d-inline-block my-0{% unless forloop.last %} mr-2{% endunless %}"
|
46
|
+
<li class="d-inline-block my-0{% unless forloop.last %} mr-2{% endunless %}">
|
47
|
+
<a href="{{ link.last }}"
|
48
|
+
{% if site.aux_links_new_tab %}
|
49
|
+
target="_blank" rel="noopener noreferrer"
|
50
|
+
{% endif %}
|
51
|
+
>
|
52
|
+
{{ link.first }}
|
53
|
+
</a>
|
54
|
+
</li>
|
47
55
|
{% endfor %}
|
48
56
|
</ul>
|
49
57
|
{% endif %}
|
@@ -74,10 +82,10 @@ layout: table_wrappers
|
|
74
82
|
{% if page.has_children == true and page.has_toc != false %}
|
75
83
|
<hr>
|
76
84
|
<h2 class="text-delta">Table of contents</h2>
|
77
|
-
{% assign children_list = site.pages | sort:"nav_order" %}
|
78
85
|
<ul>
|
86
|
+
{%- assign children_list = pages_list | where: "parent", node.title -%}
|
79
87
|
{% for child in children_list %}
|
80
|
-
{% if child.parent == page.title and child.title != page.title %}
|
88
|
+
{% if child.parent == page.title and child.title != page.title and child.grand_parent == page.parent %}
|
81
89
|
<li>
|
82
90
|
<a href="{{ child.url | absolute_url }}">{{ child.title }}</a>{% if child.summary %} - {{ child.summary }}{% endif %}
|
83
91
|
</li>
|
@@ -86,10 +94,39 @@ layout: table_wrappers
|
|
86
94
|
</ul>
|
87
95
|
{% endif %}
|
88
96
|
|
89
|
-
{% if site.footer_content != nil %}
|
97
|
+
{% if site.footer_content != nil or site.last_edit_timestamp or site.gh_edit_link %}
|
90
98
|
<hr>
|
91
|
-
<footer
|
99
|
+
<footer>
|
100
|
+
{% if site.back_to_top %}
|
101
|
+
<p><a href="#top">{{ site.back_to_top_text }}</a></p>
|
102
|
+
{% endif %}
|
103
|
+
{% if site.footer_content != nil %}
|
92
104
|
<p class="text-small text-grey-dk-000 mb-0">{{ site.footer_content }}</p>
|
105
|
+
{% endif %}
|
106
|
+
|
107
|
+
{% if site.last_edit_timestamp or site.gh_edit_link %}
|
108
|
+
<div class="d-flex mt-2">
|
109
|
+
{% if site.last_edit_timestamp and site.last_edit_time_format and page.last_modified_date %}
|
110
|
+
<p class="text-small text-grey-dk-000 mb-0 mr-2">
|
111
|
+
Page last modified: <span class="d-inline-block">{{ page.last_modified_date | date: site.last_edit_time_format }}</span>.
|
112
|
+
</p>
|
113
|
+
{% endif %}
|
114
|
+
{%
|
115
|
+
if
|
116
|
+
site.gh_edit_link and
|
117
|
+
site.gh_edit_link_text and
|
118
|
+
site.gh_edit_repository and
|
119
|
+
site.gh_edit_branch and
|
120
|
+
site.gh_edit_view_mode
|
121
|
+
|
122
|
+
%}
|
123
|
+
<p class="text-small text-grey-dk-000 mb-0">
|
124
|
+
<a href="{{ site.gh_edit_repository }}/{{ site.gh_edit_view_mode }}/{{ site.gh_edit_branch }}/{{ page.path }}">{{ site.gh_edit_link_text }}</a>
|
125
|
+
</p>
|
126
|
+
{% endif %}
|
127
|
+
</div>
|
128
|
+
{% endif %}
|
129
|
+
|
93
130
|
</footer>
|
94
131
|
{% endif %}
|
95
132
|
|
data/_sass/base.scss
CHANGED
@@ -14,6 +14,7 @@
|
|
14
14
|
|
15
15
|
html {
|
16
16
|
@include fs-4;
|
17
|
+
scroll-behavior: smooth;
|
17
18
|
}
|
18
19
|
|
19
20
|
body {
|
@@ -24,25 +25,18 @@ body {
|
|
24
25
|
background-color: $body-background-color;
|
25
26
|
}
|
26
27
|
|
27
|
-
p,
|
28
|
-
h1,
|
29
|
-
h2,
|
30
|
-
h3,
|
31
|
-
h4,
|
32
|
-
h5,
|
33
|
-
h6,
|
34
28
|
ol,
|
35
29
|
ul,
|
30
|
+
dl,
|
36
31
|
pre,
|
37
32
|
address,
|
38
33
|
blockquote,
|
39
|
-
|
34
|
+
table,
|
40
35
|
div,
|
41
|
-
fieldset,
|
42
|
-
form,
|
43
36
|
hr,
|
44
|
-
|
45
|
-
|
37
|
+
form,
|
38
|
+
fieldset,
|
39
|
+
noscript .table-wrapper {
|
46
40
|
margin-top: 0;
|
47
41
|
}
|
48
42
|
|
@@ -52,14 +46,15 @@ h3,
|
|
52
46
|
h4,
|
53
47
|
h5,
|
54
48
|
h6 {
|
55
|
-
margin-top:
|
56
|
-
margin-bottom:
|
49
|
+
margin-top: 0;
|
50
|
+
margin-bottom: 1em;
|
57
51
|
font-weight: 500;
|
58
52
|
line-height: $body-heading-line-height;
|
59
53
|
color: $body-heading-color;
|
60
54
|
}
|
61
55
|
|
62
56
|
p {
|
57
|
+
margin-top: 1em;
|
63
58
|
margin-bottom: 1em;
|
64
59
|
}
|
65
60
|
|
@@ -76,15 +71,17 @@ a:not([class]) {
|
|
76
71
|
background-size: 1px 1px;
|
77
72
|
|
78
73
|
&:hover {
|
79
|
-
background-image: linear-gradient(
|
74
|
+
background-image: linear-gradient(
|
75
|
+
rgba($link-color, 0.45) 0%,
|
76
|
+
rgba($link-color, 0.45) 100%
|
77
|
+
);
|
80
78
|
background-size: 1px 1px;
|
81
|
-
|
82
79
|
}
|
83
80
|
}
|
84
81
|
|
85
82
|
code {
|
86
83
|
font-family: $mono-font-family;
|
87
|
-
font-size:
|
84
|
+
font-size: 0.75em;
|
88
85
|
line-height: $body-line-height;
|
89
86
|
}
|
90
87
|
|
data/_sass/code.scss
CHANGED
@@ -14,6 +14,7 @@ code {
|
|
14
14
|
pre.highlight,
|
15
15
|
figure.highlight {
|
16
16
|
padding: $sp-3;
|
17
|
+
margin-top: 0;
|
17
18
|
margin-bottom: 0;
|
18
19
|
-webkit-overflow-scrolling: touch;
|
19
20
|
background-color: $code-background-color;
|
@@ -30,74 +31,212 @@ figure.highlight {
|
|
30
31
|
border-radius: $border-radius;
|
31
32
|
}
|
32
33
|
|
33
|
-
.highlight .c {
|
34
|
-
|
35
|
-
|
36
|
-
.highlight .
|
37
|
-
|
38
|
-
|
39
|
-
.highlight .
|
40
|
-
|
41
|
-
|
42
|
-
.highlight .
|
43
|
-
|
44
|
-
|
45
|
-
.highlight .
|
46
|
-
|
47
|
-
|
48
|
-
.highlight .
|
49
|
-
|
50
|
-
|
51
|
-
.highlight .
|
52
|
-
|
53
|
-
|
54
|
-
.highlight .
|
55
|
-
|
56
|
-
|
57
|
-
.highlight .
|
58
|
-
|
59
|
-
|
60
|
-
.highlight .
|
61
|
-
|
62
|
-
|
63
|
-
.highlight .
|
64
|
-
|
65
|
-
|
66
|
-
.highlight .
|
67
|
-
|
68
|
-
|
69
|
-
.highlight .
|
70
|
-
|
71
|
-
|
72
|
-
.highlight .
|
73
|
-
|
74
|
-
|
75
|
-
.highlight .
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
.highlight .
|
80
|
-
|
81
|
-
|
82
|
-
.highlight .
|
83
|
-
|
84
|
-
|
85
|
-
.highlight .
|
86
|
-
|
87
|
-
|
88
|
-
.highlight .
|
89
|
-
|
90
|
-
|
91
|
-
.highlight .
|
92
|
-
|
93
|
-
|
94
|
-
.highlight .
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
.highlight .
|
99
|
-
|
100
|
-
|
34
|
+
.highlight .c {
|
35
|
+
color: #586e75;
|
36
|
+
} // comment //
|
37
|
+
.highlight .err {
|
38
|
+
color: #93a1a1;
|
39
|
+
} // error //
|
40
|
+
.highlight .g {
|
41
|
+
color: #93a1a1;
|
42
|
+
} // generic //
|
43
|
+
.highlight .k {
|
44
|
+
color: #859900;
|
45
|
+
} // keyword //
|
46
|
+
.highlight .l {
|
47
|
+
color: #93a1a1;
|
48
|
+
} // literal //
|
49
|
+
.highlight .n {
|
50
|
+
color: #93a1a1;
|
51
|
+
} // name //
|
52
|
+
.highlight .o {
|
53
|
+
color: #859900;
|
54
|
+
} // operator //
|
55
|
+
.highlight .x {
|
56
|
+
color: #cb4b16;
|
57
|
+
} // other //
|
58
|
+
.highlight .p {
|
59
|
+
color: #93a1a1;
|
60
|
+
} // punctuation //
|
61
|
+
.highlight .cm {
|
62
|
+
color: #586e75;
|
63
|
+
} // comment.multiline //
|
64
|
+
.highlight .cp {
|
65
|
+
color: #859900;
|
66
|
+
} // comment.preproc //
|
67
|
+
.highlight .c1 {
|
68
|
+
color: #586e75;
|
69
|
+
} // comment.single //
|
70
|
+
.highlight .cs {
|
71
|
+
color: #859900;
|
72
|
+
} // comment.special //
|
73
|
+
.highlight .gd {
|
74
|
+
color: #2aa198;
|
75
|
+
} // generic.deleted //
|
76
|
+
.highlight .ge {
|
77
|
+
font-style: italic;
|
78
|
+
color: #93a1a1;
|
79
|
+
} // generic.emph //
|
80
|
+
.highlight .gr {
|
81
|
+
color: #dc322f;
|
82
|
+
} // generic.error //
|
83
|
+
.highlight .gh {
|
84
|
+
color: #cb4b16;
|
85
|
+
} // generic.heading //
|
86
|
+
.highlight .gi {
|
87
|
+
color: #859900;
|
88
|
+
} // generic.inserted //
|
89
|
+
.highlight .go {
|
90
|
+
color: #93a1a1;
|
91
|
+
} // generic.output //
|
92
|
+
.highlight .gp {
|
93
|
+
color: #93a1a1;
|
94
|
+
} // generic.prompt //
|
95
|
+
.highlight .gs {
|
96
|
+
font-weight: bold;
|
97
|
+
color: #93a1a1;
|
98
|
+
} // generic.strong //
|
99
|
+
.highlight .gu {
|
100
|
+
color: #cb4b16;
|
101
|
+
} // generic.subheading //
|
102
|
+
.highlight .gt {
|
103
|
+
color: #93a1a1;
|
104
|
+
} // generic.traceback //
|
105
|
+
.highlight .kc {
|
106
|
+
color: #cb4b16;
|
107
|
+
} // keyword.constant //
|
108
|
+
.highlight .kd {
|
109
|
+
color: #268bd2;
|
110
|
+
} // keyword.declaration //
|
111
|
+
.highlight .kn {
|
112
|
+
color: #859900;
|
113
|
+
} // keyword.namespace //
|
114
|
+
.highlight .kp {
|
115
|
+
color: #859900;
|
116
|
+
} // keyword.pseudo //
|
117
|
+
.highlight .kr {
|
118
|
+
color: #268bd2;
|
119
|
+
} // keyword.reserved //
|
120
|
+
.highlight .kt {
|
121
|
+
color: #dc322f;
|
122
|
+
} // keyword.type //
|
123
|
+
.highlight .ld {
|
124
|
+
color: #93a1a1;
|
125
|
+
} // literal.date //
|
126
|
+
.highlight .m {
|
127
|
+
color: #2aa198;
|
128
|
+
} // literal.number //
|
129
|
+
.highlight .s {
|
130
|
+
color: #2aa198;
|
131
|
+
} // literal.string //
|
132
|
+
.highlight .na {
|
133
|
+
color: #555;
|
134
|
+
} // name.attribute //
|
135
|
+
.highlight .nb {
|
136
|
+
color: #b58900;
|
137
|
+
} // name.builtin //
|
138
|
+
.highlight .nc {
|
139
|
+
color: #268bd2;
|
140
|
+
} // name.class //
|
141
|
+
.highlight .no {
|
142
|
+
color: #cb4b16;
|
143
|
+
} // name.constant //
|
144
|
+
.highlight .nd {
|
145
|
+
color: #268bd2;
|
146
|
+
} // name.decorator //
|
147
|
+
.highlight .ni {
|
148
|
+
color: #cb4b16;
|
149
|
+
} // name.entity //
|
150
|
+
.highlight .ne {
|
151
|
+
color: #cb4b16;
|
152
|
+
} // name.exception //
|
153
|
+
.highlight .nf {
|
154
|
+
color: #268bd2;
|
155
|
+
} // name.function //
|
156
|
+
.highlight .nl {
|
157
|
+
color: #555;
|
158
|
+
} // name.label //
|
159
|
+
.highlight .nn {
|
160
|
+
color: #93a1a1;
|
161
|
+
} // name.namespace //
|
162
|
+
.highlight .nx {
|
163
|
+
color: #555;
|
164
|
+
} // name.other //
|
165
|
+
.highlight .py {
|
166
|
+
color: #93a1a1;
|
167
|
+
} // name.property //
|
168
|
+
.highlight .nt {
|
169
|
+
color: #268bd2;
|
170
|
+
} // name.tag //
|
171
|
+
.highlight .nv {
|
172
|
+
color: #268bd2;
|
173
|
+
} // name.variable //
|
174
|
+
.highlight .ow {
|
175
|
+
color: #859900;
|
176
|
+
} // operator.word //
|
177
|
+
.highlight .w {
|
178
|
+
color: #93a1a1;
|
179
|
+
} // text.whitespace //
|
180
|
+
.highlight .mf {
|
181
|
+
color: #2aa198;
|
182
|
+
} // literal.number.float //
|
183
|
+
.highlight .mh {
|
184
|
+
color: #2aa198;
|
185
|
+
} // literal.number.hex //
|
186
|
+
.highlight .mi {
|
187
|
+
color: #2aa198;
|
188
|
+
} // literal.number.integer //
|
189
|
+
.highlight .mo {
|
190
|
+
color: #2aa198;
|
191
|
+
} // literal.number.oct //
|
192
|
+
.highlight .sb {
|
193
|
+
color: #586e75;
|
194
|
+
} // literal.string.backtick //
|
195
|
+
.highlight .sc {
|
196
|
+
color: #2aa198;
|
197
|
+
} // literal.string.char //
|
198
|
+
.highlight .sd {
|
199
|
+
color: #93a1a1;
|
200
|
+
} // literal.string.doc //
|
201
|
+
.highlight .s2 {
|
202
|
+
color: #2aa198;
|
203
|
+
} // literal.string.double //
|
204
|
+
.highlight .se {
|
205
|
+
color: #cb4b16;
|
206
|
+
} // literal.string.escape //
|
207
|
+
.highlight .sh {
|
208
|
+
color: #93a1a1;
|
209
|
+
} // literal.string.heredoc //
|
210
|
+
.highlight .si {
|
211
|
+
color: #2aa198;
|
212
|
+
} // literal.string.interpol //
|
213
|
+
.highlight .sx {
|
214
|
+
color: #2aa198;
|
215
|
+
} // literal.string.other //
|
216
|
+
.highlight .sr {
|
217
|
+
color: #dc322f;
|
218
|
+
} // literal.string.regex //
|
219
|
+
.highlight .s1 {
|
220
|
+
color: #2aa198;
|
221
|
+
} // literal.string.single //
|
222
|
+
.highlight .ss {
|
223
|
+
color: #2aa198;
|
224
|
+
} // literal.string.symbol //
|
225
|
+
.highlight .bp {
|
226
|
+
color: #268bd2;
|
227
|
+
} // name.builtin.pseudo //
|
228
|
+
.highlight .vc {
|
229
|
+
color: #268bd2;
|
230
|
+
} // name.variable.class //
|
231
|
+
.highlight .vg {
|
232
|
+
color: #268bd2;
|
233
|
+
} // name.variable.global //
|
234
|
+
.highlight .vi {
|
235
|
+
color: #268bd2;
|
236
|
+
} // name.variable.instance //
|
237
|
+
.highlight .il {
|
238
|
+
color: #2aa198;
|
239
|
+
} // literal.number.integer.long //
|
101
240
|
|
102
241
|
//
|
103
242
|
// Code examples (rendered)
|