jekyll-theme-endless 0.18.2 → 0.19.1
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/README.adoc +24 -6
- data/_includes/aside_info.html +1 -1
- data/_includes/aside_more.html +1 -1
- data/_includes/aside_navigation.html +1 -1
- data/_includes/aside_top.html +14 -0
- data/_layouts/default.html +1 -0
- data/_sass/adoc-experimental.scss +30 -0
- data/assets/css/main.scss +1 -0
- data/lib/jekyll-theme-endless/version.rb +1 -1
- data/pages_examples/showroom-asciidoc.adoc +149 -5
- metadata +36 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 915156c74a12b28aebda4108f2d16df549879d41b19a9d54dc27eae72c8a23ec
|
4
|
+
data.tar.gz: 1be4049616359c512aa703e50262a74a0e1c1eb507e14cd7672a94a436ce04c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac85d6ca8452560b722073a7192f92a35c15bd496a42e1173e4092dc29b440a635d966df56950b6cdfad8e5bdc090366605e1b6e55b742ae410e741efa584881
|
7
|
+
data.tar.gz: 4051df403e9d47d0f114b788abd20cdd446d355bc190211957a72248faa6ff491eac002d0f566f816942e8abd141ad99843d09f7f3ce9f709541eaceff12e1ac
|
data/README.adoc
CHANGED
@@ -105,12 +105,12 @@ If you want to use Markdown AND have HTML-commands in the title, simply escape t
|
|
105
105
|
|
106
106
|
== Example posts and pages
|
107
107
|
|
108
|
-
The project repository contains
|
108
|
+
The project repository contains:
|
109
109
|
|
110
|
-
* Two example posts with examples and explanations on which front matter variables you can use in posts and pages, and how to use them.
|
110
|
+
* Two example **posts** with examples and explanations on which front matter variables you can use in posts and pages, and how to use them.
|
111
111
|
** link:/asciidoc-example/[Example post for AsciiDoc with explanations]
|
112
112
|
** link:/markdown-example/[Example post for Markdown with explanations]
|
113
|
-
* Two example pages (the showrooms) where you can explore the features of Markdown and AsciiDoc. In the source code, you can see how to implement these yourself.
|
113
|
+
* Two example **pages** (the showrooms) where you can explore the features of Markdown and AsciiDoc. In the source code, you can see how to implement these yourself.
|
114
114
|
** link:/asciidoc-showroom/[AsciiDoc Showroom]
|
115
115
|
** link:/markdown-showroom/[Markdown Showroom]
|
116
116
|
|
@@ -387,9 +387,27 @@ I typically use this page as a layout for my "about" page.
|
|
387
387
|
|
388
388
|
=== Includes
|
389
389
|
|
390
|
+
`_includes/aside_top.html`::
|
391
|
+
+
|
392
|
+
--
|
393
|
+
The first of four elements displayed alongside the page content (or at the end of the page on mobile devices).
|
394
|
+
This can be used for a more complex blog navigation e.g. if you use many pages in hierarchical structures.
|
395
|
+
It's best practice to wrap the content in an `<aside>` element, as shown below.
|
396
|
+
|
397
|
+
[source, html]
|
398
|
+
----
|
399
|
+
<aside>
|
400
|
+
<h3>Page Navigation</h3>
|
401
|
+
<div class="col">
|
402
|
+
Navigation links go here
|
403
|
+
</div>
|
404
|
+
</aside>
|
405
|
+
----
|
406
|
+
--
|
407
|
+
|
390
408
|
`_includes/aside_navigation.html`::
|
391
409
|
|
392
|
-
The
|
410
|
+
The second of four elements displayed alongside the page content (or at the end of the page on mobile devices).
|
393
411
|
This typically contains blog navigation elements such as 'Recent Articles,' 'Tag Cloud,' etc.
|
394
412
|
It's best practice to wrap the content in an `<aside>` element.
|
395
413
|
|
@@ -397,14 +415,14 @@ It's best practice to wrap the content in an `<aside>` element.
|
|
397
415
|
|
398
416
|
`_includes/aside_info.html`::
|
399
417
|
|
400
|
-
The
|
418
|
+
The third of the four elements, typically providing additional information about the blog (e.g., a link to the RSS feed).
|
401
419
|
This content is also ideally wrapped in an `<aside>` element.
|
402
420
|
|
403
421
|
|
404
422
|
|
405
423
|
`_includes/aside_more.html`::
|
406
424
|
|
407
|
-
The
|
425
|
+
The fourth of the four elements is typically used to display links to partner sites, sponsorships, or advertisements relevant to the blog's audience.
|
408
426
|
Similar to the other sections, this content is best organized within an `<aside>` element to ensure it complements the main content without disrupting the reader's experience.
|
409
427
|
|
410
428
|
|
data/_includes/aside_info.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
{% comment %}
|
2
|
-
This file contains the
|
2
|
+
This file contains the third of the four elements, which provides additional information about the blog, such as a link to the RSS feed.
|
3
3
|
This content is also best organized within an <aside> element to keep it distinct from the main content.
|
4
4
|
{% endcomment %}
|
5
5
|
<aside>
|
data/_includes/aside_more.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
{% comment %}
|
2
|
-
This file contains the
|
2
|
+
This file contains the fourth of the four elements, often used to display links to partner sites or advertisements.
|
3
3
|
This section is intended to showcase external resources or sponsored content relevant to the blog's audience,
|
4
4
|
and it is also best placed within an <aside> element.
|
5
5
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
{% comment %}
|
2
|
-
This file contains the
|
2
|
+
This file contains the second of the four elements displayed alongside the page content (or at the end of the page on mobile devices).
|
3
3
|
It typically includes blog navigation, such as 'Recent Articles' or 'Tag Cloud,' and is ideally wrapped in an <aside> element.
|
4
4
|
{% endcomment %}
|
5
5
|
<aside>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
{% comment %}
|
2
|
+
This file contains the first of the four side elements.
|
3
|
+
It can be used to display a more complex navigation than the one at the top of the page.
|
4
|
+
It is also best placed within an <aside> element.
|
5
|
+
|
6
|
+
<aside>
|
7
|
+
<h3>Page Navigation</h3>
|
8
|
+
<div class="col">
|
9
|
+
Navigation links go here
|
10
|
+
</div>
|
11
|
+
</aside>
|
12
|
+
|
13
|
+
{% endcomment %}
|
14
|
+
|
data/_layouts/default.html
CHANGED
@@ -0,0 +1,30 @@
|
|
1
|
+
/**
|
2
|
+
* Button styles for the output of the AsciiDoc command `btn`.
|
3
|
+
*/
|
4
|
+
b.button {
|
5
|
+
font: inherit;
|
6
|
+
font-weight: 600;
|
7
|
+
white-space: nowrap;
|
8
|
+
background: #f5f5f5;
|
9
|
+
border: 1px solid rgba(0,0,0,.12);
|
10
|
+
padding: .2rem .7rem;
|
11
|
+
border-radius: .5rem;
|
12
|
+
}
|
13
|
+
|
14
|
+
/**
|
15
|
+
* Styles for the output of the AsciiDoc command `kbd`.
|
16
|
+
*/
|
17
|
+
.keyseq kbd {
|
18
|
+
display: inline-block;
|
19
|
+
padding: 0.42em 0.71em;
|
20
|
+
margin: 0 0.2em;
|
21
|
+
background: #f5f5f5;
|
22
|
+
color: #000;
|
23
|
+
font: 600 0.85em/0.85 monospace;
|
24
|
+
letter-spacing: .05em;
|
25
|
+
white-space: nowrap;
|
26
|
+
border: 1px solid #bbb;
|
27
|
+
border-radius: .1em;
|
28
|
+
box-shadow: 2px 2px 0 #888;
|
29
|
+
}
|
30
|
+
|
data/assets/css/main.scss
CHANGED
@@ -50,8 +50,8 @@ While counter < 5 do
|
|
50
50
|
End
|
51
51
|
----
|
52
52
|
|
53
|
-
|
54
|
-
|
53
|
+
For detailed information see the https://docs.asciidoctor.org/asciidoc/latest/syntax-quick-reference/#literals-and-source-code[section "Literals and source code" in the AsciiDoc Syntax Quick Reference]
|
54
|
+
|
55
55
|
.Python code block with annotations.
|
56
56
|
[source,python]
|
57
57
|
----
|
@@ -99,6 +99,45 @@ include::showroom-asciidoc-code.html[lines=4..]
|
|
99
99
|
|
100
100
|
|
101
101
|
|
102
|
+
[[text-replacements]]
|
103
|
+
== Text replacements
|
104
|
+
|
105
|
+
Also see the https://docs.asciidoctor.org/asciidoc/latest/syntax-quick-reference/#text-replacements[section "Text replacements" in the AsciiDoc Syntax Quick Reference]
|
106
|
+
|
107
|
+
* `\->` is replaced by *->*
|
108
|
+
* `\<-` is replaced by *<-*
|
109
|
+
* `\=>` is replaced by *=>*
|
110
|
+
* `\<=` is replaced by *<=*
|
111
|
+
* `\(C)` is replaced by *(C)*
|
112
|
+
* `\(R)` is replaced by *(R)*
|
113
|
+
* `\...` is replaced by *...*
|
114
|
+
* `\(TM)` is replaced by *(TM)*
|
115
|
+
* `a \-- b` is replaced by *a -- b*
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
[[footnotes]]
|
122
|
+
== Footnotes
|
123
|
+
|
124
|
+
Also see the https://docs.asciidoctor.org/asciidoc/latest/syntax-quick-reference/#section-footnotes[section "Footnotes" in the AsciiDoc Syntax Quick Reference]
|
125
|
+
|
126
|
+
* A statement with a footnote. footnote:[Details about this statement.]
|
127
|
+
* A statement with a footnote!footnote:xyz[A named footnote with the id 'xyz'.]
|
128
|
+
* Another statement with the same footnote!footnote:xyz[]
|
129
|
+
|
130
|
+
[source, asciidoc]
|
131
|
+
----
|
132
|
+
* A statement with a footnote. footnote:[Details about this statement.]
|
133
|
+
* A statement with a footnote!footnote:xyz[A named footnote with the id 'xyz'.]
|
134
|
+
* Another statement with the same footnote!footnote:xyz[]
|
135
|
+
----
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
|
140
|
+
|
102
141
|
[[links]]
|
103
142
|
== Links
|
104
143
|
|
@@ -115,13 +154,27 @@ include::showroom-asciidoc-code.html[lines=4..]
|
|
115
154
|
|
116
155
|
|
117
156
|
|
118
|
-
|
157
|
+
[[experimental]]
|
158
|
+
== Keyboard shortcuts, buttons and menu paths
|
159
|
+
|
160
|
+
Also see the https://docs.asciidoctor.org/asciidoc/latest/syntax-quick-reference/#keyboard-button-and-menu-macros[section "Keyboard, button, and menu macros" in the AsciiDoc Syntax Quick Reference]
|
119
161
|
|
120
|
-
|
162
|
+
IMPORTANT: You must add the `:experimental:` attribute to the document header to enable these macros.
|
121
163
|
|
122
|
-
|
164
|
+
[cols="1,1", options="header"]
|
165
|
+
|===
|
166
|
+
| AsciiDoc Code
|
167
|
+
| Result
|
168
|
+
|
169
|
+
| `\kbd:[Ctrl + Alt + Del]`
|
170
|
+
| kbd:[Ctrl + Alt + Del]
|
123
171
|
|
172
|
+
| `\menu:View[Appearance > Full Screen]`
|
173
|
+
| menu:View[Appearance > Full Screen]
|
124
174
|
|
175
|
+
| `\btn:[Submit]`
|
176
|
+
| btn:[Submit]
|
177
|
+
|===
|
125
178
|
|
126
179
|
|
127
180
|
|
@@ -159,6 +212,27 @@ CAUTION: Admonition: `CAUTION`.
|
|
159
212
|
WARNING: Admonition: `WARNING`.
|
160
213
|
|
161
214
|
|
215
|
+
Code for the *inline* command (here for a TIP):
|
216
|
+
|
217
|
+
[source, asciidoc]
|
218
|
+
----
|
219
|
+
TIP: Admonition: `TIP`.
|
220
|
+
----
|
221
|
+
|
222
|
+
|
223
|
+
Code for the *block* command (here for a NOTE):
|
224
|
+
|
225
|
+
[source, asciidoc]
|
226
|
+
----
|
227
|
+
[NOTE]
|
228
|
+
====
|
229
|
+
...
|
230
|
+
====
|
231
|
+
----
|
232
|
+
|
233
|
+
|
234
|
+
|
235
|
+
|
162
236
|
|
163
237
|
|
164
238
|
|
@@ -211,6 +285,37 @@ WARNING: Admonition: `WARNING`.
|
|
211
285
|
|
212
286
|
|
213
287
|
|
288
|
+
[[passthrough-blocks]]
|
289
|
+
== Passthrough blocks
|
290
|
+
|
291
|
+
With passthrough blocks (delimited with `++++`), you can embed raw HTML code directly into your AsciiDoc document. Common examples are the inclusion of an HTML form, CSS and JavaScript snippets.
|
292
|
+
|
293
|
+
To add a form to your document, you can use:
|
294
|
+
|
295
|
+
[source, asciidoc]
|
296
|
+
----
|
297
|
+
++++
|
298
|
+
<form onsubmit="alert('Thank you for subscribing!'); return false;">
|
299
|
+
<input type="email" required placeholder="name@example.com">
|
300
|
+
<button type="submit">Subscribe</button>
|
301
|
+
</form>
|
302
|
+
++++
|
303
|
+
----
|
304
|
+
|
305
|
+
The result is:
|
306
|
+
|
307
|
+
++++
|
308
|
+
<form onsubmit="alert('Thank you for subscribing!'); return false;">
|
309
|
+
<input type="email" required placeholder="name@example.com">
|
310
|
+
<button type="submit">Subscribe</button>
|
311
|
+
</form>
|
312
|
+
++++
|
313
|
+
|
314
|
+
|
315
|
+
|
316
|
+
|
317
|
+
|
318
|
+
|
214
319
|
== Images
|
215
320
|
|
216
321
|
// AsciiDoc commands are not stripped/processed when used within `alt=""`.
|
@@ -511,6 +616,45 @@ Bob->Alice : hello
|
|
511
616
|
Alice --> Bob : hi
|
512
617
|
----
|
513
618
|
|
619
|
+
[[mindmap-example]]
|
620
|
+
.Example of a mind map illustrating concepts in the field of Artificial Intelligence (AI) and Machine Learning (ML).
|
621
|
+
[plantuml, format=svg]
|
622
|
+
----
|
623
|
+
@startmindmap
|
624
|
+
* Artificial Intelligence (AI)
|
625
|
+
** Symbolic AI
|
626
|
+
*** Logic / Knowledge Representation
|
627
|
+
*** Expert Systems
|
628
|
+
** Machine Learning (ML)
|
629
|
+
*** Supervised Learning
|
630
|
+
**** Classification
|
631
|
+
***** Decision Trees
|
632
|
+
***** Neural Networks
|
633
|
+
***** Support Vector Machines (SVM)
|
634
|
+
**** Regression
|
635
|
+
***** Linear Regression
|
636
|
+
***** Logistic Regression
|
637
|
+
*** Unsupervised Learning
|
638
|
+
**** Clustering
|
639
|
+
***** K-Means
|
640
|
+
***** DBSCAN
|
641
|
+
**** Dimensionality Reduction
|
642
|
+
***** PCA (Principal Component Analysis)
|
643
|
+
***** t-SNE / UMAP
|
644
|
+
*** Reinforcement Learning
|
645
|
+
**** Q-Learning
|
646
|
+
**** Deep Q-Networks (DQN)
|
647
|
+
**** Policy Gradient Methods
|
648
|
+
*** Deep Learning
|
649
|
+
**** CNN (Convolutional Neural Networks)
|
650
|
+
**** RNN (Recurrent Neural Networks)
|
651
|
+
**** LSTM / GRU
|
652
|
+
**** Transformer
|
653
|
+
***** BERT
|
654
|
+
***** GPT
|
655
|
+
@endmindmap
|
656
|
+
----
|
657
|
+
|
514
658
|
|
515
659
|
|
516
660
|
=== Graphviz
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-endless
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.19.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sven Boekhoff
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-09-04 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: jekyll-asciidoc
|
@@ -95,20 +95,48 @@ dependencies:
|
|
95
95
|
requirements:
|
96
96
|
- - "~>"
|
97
97
|
- !ruby/object:Gem::Version
|
98
|
-
version: '
|
98
|
+
version: '3.0'
|
99
99
|
- - ">="
|
100
100
|
- !ruby/object:Gem::Version
|
101
|
-
version:
|
101
|
+
version: 3.0.1
|
102
102
|
type: :runtime
|
103
103
|
prerelease: false
|
104
104
|
version_requirements: !ruby/object:Gem::Requirement
|
105
105
|
requirements:
|
106
106
|
- - "~>"
|
107
107
|
- !ruby/object:Gem::Version
|
108
|
-
version: '
|
108
|
+
version: '3.0'
|
109
|
+
- - ">="
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: 3.0.1
|
112
|
+
- !ruby/object:Gem::Dependency
|
113
|
+
name: asciidoctor-diagram-ditaamini
|
114
|
+
requirement: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - ">="
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: '0'
|
119
|
+
type: :runtime
|
120
|
+
prerelease: false
|
121
|
+
version_requirements: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - ">="
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: asciidoctor-diagram-plantuml
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - ">="
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '0'
|
133
|
+
type: :runtime
|
134
|
+
prerelease: false
|
135
|
+
version_requirements: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
109
137
|
- - ">="
|
110
138
|
- !ruby/object:Gem::Version
|
111
|
-
version:
|
139
|
+
version: '0'
|
112
140
|
- !ruby/object:Gem::Dependency
|
113
141
|
name: barby
|
114
142
|
requirement: !ruby/object:Gem::Requirement
|
@@ -229,6 +257,7 @@ files:
|
|
229
257
|
- _includes/aside_info.html
|
230
258
|
- _includes/aside_more.html
|
231
259
|
- _includes/aside_navigation.html
|
260
|
+
- _includes/aside_top.html
|
232
261
|
- _includes/container_end-of-document.html
|
233
262
|
- _includes/container_end-of-main.html
|
234
263
|
- _includes/container_end-of-page.html
|
@@ -265,6 +294,7 @@ files:
|
|
265
294
|
- _sass/address.scss
|
266
295
|
- _sass/adoc-admonition.scss
|
267
296
|
- _sass/adoc-code.scss
|
297
|
+
- _sass/adoc-experimental.scss
|
268
298
|
- _sass/adoc-images.scss
|
269
299
|
- _sass/adoc-lists.scss
|
270
300
|
- _sass/adoc-quote.scss
|