jekyll-theme-endless 0.11.1 → 0.11.2
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.
- checksums.yaml +4 -4
- data/LICENSE.txt +1 -1
- data/README.adoc +2 -0
- data/_data/tag-description.yml +6 -0
- data/_sass/adoc-toc.scss +43 -0
- data/assets/css/main.scss +1 -0
- data/lib/jekyll-theme-endless/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b3dd13dce75a0036a4edc41f90ff6d204caef64c3da9c76fb4e4c20ddd0344f4
|
|
4
|
+
data.tar.gz: 86fbc9da25d917ac634e20df3dc6d638a9cd5aad3ac7d88da27cb77e9628a3aa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f32f493c7ce3600ced24043c872a6a8b0308e3fca667e7d2111b389ebd3b085f03b6fb88a5684693d4b6ee66b1ebd6797992bb96af2ac93742690ea91661ad10
|
|
7
|
+
data.tar.gz: 7f1e0df11f26250c13653963da56570f783f7bb0e642e9c13065d147836c6303d703b4dea314e7a17cb79f879c7f663fa16fce58c08e48c009a24efc76183d09
|
data/LICENSE.txt
CHANGED
data/README.adoc
CHANGED
data/_data/tag-description.yml
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
TOC:
|
|
2
|
+
short: "TOC (Table of Contents) is a navigational aid that lists the main sections or headings of a document, allowing readers to quickly find and jump to specific content. In web content, a TOC is often generated automatically based on headings and can be particularly useful for lengthy pages or articles."
|
|
3
|
+
.gitlab-ci.yml:
|
|
4
|
+
short: "A YAML file used to define GitLab CI/CD pipeline configurations, specifying jobs, stages, and conditions for automated testing, deployment, or other tasks in GitLab."
|
|
5
|
+
LICENSE.txt:
|
|
6
|
+
short: "A file in a project that outlines the terms and conditions under which the software can be used, modified, or shared, commonly chosen from open-source licenses."
|
|
1
7
|
SASS:
|
|
2
8
|
short: "SASS (Syntactically Awesome Stylesheets) is a CSS preprocessor that adds advanced features like variables, nested rules, and mixins to standard CSS. SASS has two syntax options: the older indented syntax (SASS) and the newer, more CSS-like syntax (SCSS). The SASS syntax uses indentation instead of curly braces and semicolons, while SCSS is more similar to traditional CSS and is often preferred for its familiarity."
|
|
3
9
|
cleanup:
|
data/_sass/adoc-toc.scss
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
#toc {
|
|
2
|
+
background-color: #f8f9fa;
|
|
3
|
+
border: 1px solid #a2a9b1;
|
|
4
|
+
padding: 8px 16px;
|
|
5
|
+
font-size: 0.9em;
|
|
6
|
+
margin: 1em 0;
|
|
7
|
+
border-radius: 4px;
|
|
8
|
+
width: auto;
|
|
9
|
+
max-width: 100%;
|
|
10
|
+
overflow-x: auto;
|
|
11
|
+
display: inline-block;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
#toctitle {
|
|
15
|
+
font-weight: bold;
|
|
16
|
+
font-size: 1.1em;
|
|
17
|
+
padding-bottom: 8px;
|
|
18
|
+
border-bottom: 1px solid #a2a9b1;
|
|
19
|
+
margin-bottom: 8px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
ul.sectlevel1,
|
|
23
|
+
ul.sectlevel2,
|
|
24
|
+
ul.sectlevel3,
|
|
25
|
+
ul.sectlevel4,
|
|
26
|
+
ul.sectlevel5 {
|
|
27
|
+
list-style-type: none;
|
|
28
|
+
padding-left: 1.3em;
|
|
29
|
+
margin: 4px 0;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
li {
|
|
33
|
+
margin: 4px 0;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
li a {
|
|
37
|
+
color: #0645ad;
|
|
38
|
+
text-decoration: none;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
li a:hover {
|
|
42
|
+
text-decoration: underline;
|
|
43
|
+
}
|
data/assets/css/main.scss
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-endless
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.11.
|
|
4
|
+
version: 0.11.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sven Boekhoff
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-10-
|
|
11
|
+
date: 2024-10-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll-asciidoc
|
|
@@ -89,6 +89,7 @@ files:
|
|
|
89
89
|
- _sass/adoc-quote.scss
|
|
90
90
|
- _sass/adoc-tables.scss
|
|
91
91
|
- _sass/adoc-text.scss
|
|
92
|
+
- _sass/adoc-toc.scss
|
|
92
93
|
- _sass/adoc.scss
|
|
93
94
|
- _sass/background.scss
|
|
94
95
|
- _sass/md-lists.scss
|