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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e1bcbace81dbd3e228145d6e4d38e953c9bb860ccabed12b6be20bb786e81522
4
- data.tar.gz: 6e3410eba76600a6d3fa3121133dfa0384df7770dc99ac4da3ca2b3901c3f661
3
+ metadata.gz: b3dd13dce75a0036a4edc41f90ff6d204caef64c3da9c76fb4e4c20ddd0344f4
4
+ data.tar.gz: 86fbc9da25d917ac634e20df3dc6d638a9cd5aad3ac7d88da27cb77e9628a3aa
5
5
  SHA512:
6
- metadata.gz: 160709219596590375f284eb0975ae01815435843c395213fb44564a6097768feaacc0cfae907c19e55ff04d4983268e4503f2f8cea47f7021bc937d0feffbec
7
- data.tar.gz: b12a02b651831f75773ac35914e67d457987af08f92fba98207448c890f2f205e897f28a433ed84aadd5ed602555cfcefa1b521a364033738c5c51339c647188
6
+ metadata.gz: f32f493c7ce3600ced24043c872a6a8b0308e3fca667e7d2111b389ebd3b085f03b6fb88a5684693d4b6ee66b1ebd6797992bb96af2ac93742690ea91661ad10
7
+ data.tar.gz: 7f1e0df11f26250c13653963da56570f783f7bb0e642e9c13065d147836c6303d703b4dea314e7a17cb79f879c7f663fa16fce58c08e48c009a24efc76183d09
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2020 Sven Boekhoff
3
+ Copyright (c) 2020-2024 Sven Boekhoff
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.adoc CHANGED
@@ -1,6 +1,8 @@
1
1
  = jekyll-theme-endless
2
2
  :page-menu_label: Documentation
3
3
  :page-menu_position: 300
4
+ :toc: preamble
5
+ :toclevels: 3
4
6
 
5
7
 
6
8
 
@@ -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:
@@ -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
@@ -36,6 +36,7 @@
36
36
  @use "adoc-images";
37
37
  @use "adoc-code";
38
38
  @use "adoc-text";
39
+ @use "adoc-toc";
39
40
 
40
41
  /*
41
42
  * Dynamically add stylesheets as configured by the user in `_config.yml`
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module Endless
3
- VERSION = '0.11.1'
3
+ VERSION = '0.11.2'
4
4
  end
5
5
  end
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.1
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-23 00:00:00.000000000 Z
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