Skip to content

Commit 41d214e

Browse files
feat: Add exclude_assets option (#416)
Related to #163
0 parents  commit 41d214e

27 files changed

+5681
-0
lines changed

.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This file makes sure that Github Pages doesn't process mdBook's output.

FontAwesome/css/font-awesome.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

FontAwesome/fonts/FontAwesome.ttf

162 KB
Binary file not shown.
162 KB
Binary file not shown.

FontAwesome/fonts/fontawesome-webfont.svg

Lines changed: 2671 additions & 0 deletions
Loading
162 KB
Binary file not shown.
95.7 KB
Binary file not shown.
75.4 KB
Binary file not shown.

ayu-highlight.css

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
/*
2+
Based off of the Ayu theme
3+
Original by Dempfi (https://github.com/dempfi/ayu)
4+
*/
5+
6+
.hljs {
7+
display: block;
8+
overflow-x: auto;
9+
background: #191f26;
10+
color: #e6e1cf;
11+
padding: 0.5em;
12+
}
13+
14+
.hljs-comment,
15+
.hljs-quote {
16+
color: #5c6773;
17+
font-style: italic;
18+
}
19+
20+
.hljs-variable,
21+
.hljs-template-variable,
22+
.hljs-attribute,
23+
.hljs-attr,
24+
.hljs-regexp,
25+
.hljs-link,
26+
.hljs-selector-id,
27+
.hljs-selector-class {
28+
color: #ff7733;
29+
}
30+
31+
.hljs-number,
32+
.hljs-meta,
33+
.hljs-builtin-name,
34+
.hljs-literal,
35+
.hljs-type,
36+
.hljs-params {
37+
color: #ffee99;
38+
}
39+
40+
.hljs-string,
41+
.hljs-bullet {
42+
color: #b8cc52;
43+
}
44+
45+
.hljs-title,
46+
.hljs-built_in,
47+
.hljs-section {
48+
color: #ffb454;
49+
}
50+
51+
.hljs-keyword,
52+
.hljs-selector-tag,
53+
.hljs-symbol {
54+
color: #ff7733;
55+
}
56+
57+
.hljs-name {
58+
color: #36a3d9;
59+
}
60+
61+
.hljs-tag {
62+
color: #00568d;
63+
}
64+
65+
.hljs-emphasis {
66+
font-style: italic;
67+
}
68+
69+
.hljs-strong {
70+
font-weight: bold;
71+
}
72+
73+
.hljs-addition {
74+
color: #91b362;
75+
}
76+
77+
.hljs-deletion {
78+
color: #d96c75;
79+
}

0 commit comments

Comments
 (0)