jekyll-theme-endless 0.14.1 → 0.15.1

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: 37e44e86e755160d7f118c33a0a64d0f67de513f33b35475b6966242bbd3c87d
4
- data.tar.gz: 80586bcdfd1a29995f0e96237f9e5f14440937f68221ffebd7928f6b3d6d72b7
3
+ metadata.gz: 232335a620d6e542099dd2c2cbeb88184152c656a899e049ec01b80215425df3
4
+ data.tar.gz: 8ee1212d877c99381758aa41bc6758f92370bba58ee3eea30199e12b5f35ebe4
5
5
  SHA512:
6
- metadata.gz: 95826cd365200b58be9fb520d0cded0756f1874ea3971cda1458c06a1744a1efda25a7ef492e36941c7f84ce9b8d96382d057ef072b113775cd5402e92b2ad89
7
- data.tar.gz: 41e6f565fb6f553b0ad02f5fa0be7d06226a393a80e5d5e55a2508c3c46654098850c50ac6ec34e1579c314e875ac1c19f3ff748712b0f1894e7354ff3aadfe2
6
+ metadata.gz: 2e50c2cdf8e32e0ec73f021410198645774e1427a5cfa542f3d8fce9e6eebed2c4ec630e53f88f090160c3cc16e605a56419d7f2ae4630c35c3a9ad4ac76bbce
7
+ data.tar.gz: 2452c5e1a536ed6e06fd5e483b8224c70fb4fc7551b3368783a4ddb1f5e0ca6db2b92762be9e6a70c74cffd098b1b58e7852303c8628fdc43e6e22c942265a0b
data/_config.yml CHANGED
@@ -33,7 +33,13 @@ url: "" # the base hostname & protocol for your site, e.g. http://example.com
33
33
  # AsciiDoc settings
34
34
  ###############################################################################
35
35
  asciidoctor:
36
+ # Settings for AsciiDoctor diagramm (https://docs.asciidoctor.org/diagram-extension/latest/)
37
+ # https://jekyllrb.com/docs/configuration/options/#global-configuration
38
+ # https://github.com/asciidoctor/jekyll-asciidoc?#generated-image-location
39
+ base_dir: :docdir
40
+ safe: unsafe
36
41
  attributes:
42
+ imagesdir: /_diagrams/
37
43
  # Highlighting source code using rouge
38
44
  # https://github.com/asciidoctor/jekyll-asciidoc#stylesheet-for-code-highlighting
39
45
  # https://github.com/asciidoctor/jekyll-asciidoc/issues/221#issuecomment-526857488
@@ -42,6 +48,12 @@ asciidoctor:
42
48
  # https://github.com/asciidoctor/jekyll-asciidoc#font-based-admonition-and-inline-icons
43
49
  icons: font
44
50
 
51
+ # Keep files generated by AsciiDoctor-diagram during the build process
52
+ # https://github.com/asciidoctor/jekyll-asciidoc#preserving-generated-images
53
+ # The paths in keep_files must not have a / at the beginning or end.
54
+ keep_files:
55
+ - _diagrams
56
+
45
57
 
46
58
 
47
59
 
@@ -65,6 +77,7 @@ plugins:
65
77
  # Generate an RSS-file with the blog-content
66
78
  # See https://github.com/jekyll/jekyll-feed for configuration
67
79
  - jekyll-feed
80
+ - asciidoctor-diagram
68
81
 
69
82
  # Exclude files from processing.
70
83
  #
@@ -4,6 +4,8 @@ div.admonitionblock {
4
4
  background: #fff;
5
5
  color: #111;
6
6
  margin: 2em 0;
7
+ // Workaround for overflow issues with code blocks inside admonition blocks. (see release notes 0.13.X)
8
+ overflow-x: auto;
7
9
  }
8
10
  .admonitionblock table {
9
11
  background-color: transparent;
data/_sass/adoc-code.scss CHANGED
@@ -8,6 +8,8 @@
8
8
  code {
9
9
  position: relative;
10
10
  display: block;
11
+ // Workaround to prevent the language label from overlapping the source code (see release notes 0.10.X).
12
+ z-index: 0;
11
13
  }
12
14
 
13
15
  code::before {
@@ -21,6 +23,8 @@
21
23
  color: #333;
22
24
  border-radius: 3px;
23
25
  border: 1px solid #ccc;
26
+ // Workaround to prevent the language label from overlapping the source code (see release notes 0.10.X).
27
+ z-index: -10;
24
28
  }
25
29
 
26
30
  /* If data-lang is empty or not set, ::before will be hidden. */
@@ -3,6 +3,7 @@
3
3
  */
4
4
  div.imageblock {
5
5
  text-align: center;
6
+ margin: 2em;
6
7
 
7
8
  img {
8
9
  /* See also `img-fluid` class from Bootstrap. */
@@ -18,3 +18,11 @@ li {
18
18
  }
19
19
  }
20
20
 
21
+ ul, ol {
22
+ padding-left: 1.5em;
23
+
24
+ ul, ol {
25
+ padding-left: 1em;
26
+ }
27
+ }
28
+
data/_sass/adoc-stem.scss CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  div.stemblock {
4
4
  text-align: center;
5
+ margin: 1em 2em;
5
6
 
6
7
  div.content {
7
8
  /* See also `img-fluid` class from Bootstrap. */
@@ -13,7 +14,6 @@ div.stemblock {
13
14
  border: 1px solid #aaa;
14
15
  padding: 10px 10px;
15
16
  border-radius: 5px;
16
- margin-bottom: 2em;
17
17
  }
18
18
  }
19
19
 
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  module Endless
3
- VERSION = '0.14.1'
3
+ VERSION = '0.15.1'
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.14.1
4
+ version: 0.15.1
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-11-09 00:00:00.000000000 Z
11
+ date: 2024-11-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll-asciidoc
@@ -66,6 +66,26 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0.6'
69
+ - !ruby/object:Gem::Dependency
70
+ name: asciidoctor-diagram
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '2.3'
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: 2.3.1
79
+ type: :runtime
80
+ prerelease: false
81
+ version_requirements: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - "~>"
84
+ - !ruby/object:Gem::Version
85
+ version: '2.3'
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: 2.3.1
69
89
  description:
70
90
  email:
71
91
  - rubygems.org@boekhoff.net