jekyll-theme-endless 0.11.0 → 0.11.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e5f07f885402f2e5f0e3431fb93102b8cbd9be1f0a0e7a6e42b0fbe59927b911
4
- data.tar.gz: 2fb7e64709edac7b386f964305023d497081a11649f85d118af860a7931a7aaa
3
+ metadata.gz: b3dd13dce75a0036a4edc41f90ff6d204caef64c3da9c76fb4e4c20ddd0344f4
4
+ data.tar.gz: 86fbc9da25d917ac634e20df3dc6d638a9cd5aad3ac7d88da27cb77e9628a3aa
5
5
  SHA512:
6
- metadata.gz: 52e24e161c592c799bead922df6265fd594a17b12e19b83856369e5742fbe4c405735e32e36656da61807961570b4a4a79d593672ab210827335284c287f59e7
7
- data.tar.gz: 9d80abc86bd11686c49d65b38fa3d5b022b4deab9597d59abf0f729c3781f719d1745ba5d83896b0f4ced4684136e501331b09bc6fbfcee9170d8c53620aaf5c
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:
@@ -93,3 +93,4 @@ Bei Änderungen auch den entsprechenden Blog-Eintrag vom 28.10.2020 anpassen!
93
93
  %}
94
94
 
95
95
  {% endif %}
96
+
@@ -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.0'
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.0
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