hotdocs 0.1.0
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 +7 -0
- data/LICENSE +7 -0
- data/LICENSE-LGPL +165 -0
- data/README.md +59 -0
- data/Rakefile +15 -0
- data/app/assets/images/hotdocs/icon.svg +17 -0
- data/app/assets/javascript/controllers/accordion_controller.js +36 -0
- data/app/assets/javascript/controllers/sidenav_controller.js +39 -0
- data/app/assets/javascript/controllers/toc_controller.js +103 -0
- data/app/assets/stylesheets/hotdocs/application.css +697 -0
- data/app/assets/stylesheets/hotdocs/reset.css +393 -0
- data/app/helpers/hotdocs/application_helper.rb +107 -0
- data/app/views/hotdocs/_menu_row.html.erb +11 -0
- data/app/views/layouts/hotdocs/application.html.erb +144 -0
- data/config/importmap.rb +3 -0
- data/lib/hotdocs/engine.rb +20 -0
- data/lib/hotdocs/markdown.mjs +177 -0
- data/lib/hotdocs/markdown.rb +42 -0
- data/lib/hotdocs/version.rb +3 -0
- data/lib/hotdocs.rb +5 -0
- data/lib/install/install.rb +287 -0
- data/lib/tasks/hotdocs_tasks.rake +9 -0
- metadata +80 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: eda140e352c4f1836ac78536db4c3e594626a8405e0f0963bd636b3263a94280
|
4
|
+
data.tar.gz: e38d4fcb9d6c56474bd16af2cb64c74aff10737affcb0cb25d7dc192f25e8746
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ae97c6c8c80ec06bcd88e3d64087c0dcf7337a8f054afaa83a97c56c5c1db1924252c8d63ee3c9042586ab3df71c41f886fcbe3f7262effdff812b560cf28623
|
7
|
+
data.tar.gz: e485b23974e0aeced4827f09a1f1d20b2050c5afff8514436c90d0bf63f01485cf3c13fefab4bdde251055faa471ccf3c6ceb4389c9cc6295496acd0ab0fefa1
|
data/LICENSE
ADDED
data/LICENSE-LGPL
ADDED
@@ -0,0 +1,165 @@
|
|
1
|
+
GNU LESSER GENERAL PUBLIC LICENSE
|
2
|
+
Version 3, 29 June 2007
|
3
|
+
|
4
|
+
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
5
|
+
Everyone is permitted to copy and distribute verbatim copies
|
6
|
+
of this license document, but changing it is not allowed.
|
7
|
+
|
8
|
+
|
9
|
+
This version of the GNU Lesser General Public License incorporates
|
10
|
+
the terms and conditions of version 3 of the GNU General Public
|
11
|
+
License, supplemented by the additional permissions listed below.
|
12
|
+
|
13
|
+
0. Additional Definitions.
|
14
|
+
|
15
|
+
As used herein, "this License" refers to version 3 of the GNU Lesser
|
16
|
+
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
17
|
+
General Public License.
|
18
|
+
|
19
|
+
"The Library" refers to a covered work governed by this License,
|
20
|
+
other than an Application or a Combined Work as defined below.
|
21
|
+
|
22
|
+
An "Application" is any work that makes use of an interface provided
|
23
|
+
by the Library, but which is not otherwise based on the Library.
|
24
|
+
Defining a subclass of a class defined by the Library is deemed a mode
|
25
|
+
of using an interface provided by the Library.
|
26
|
+
|
27
|
+
A "Combined Work" is a work produced by combining or linking an
|
28
|
+
Application with the Library. The particular version of the Library
|
29
|
+
with which the Combined Work was made is also called the "Linked
|
30
|
+
Version".
|
31
|
+
|
32
|
+
The "Minimal Corresponding Source" for a Combined Work means the
|
33
|
+
Corresponding Source for the Combined Work, excluding any source code
|
34
|
+
for portions of the Combined Work that, considered in isolation, are
|
35
|
+
based on the Application, and not on the Linked Version.
|
36
|
+
|
37
|
+
The "Corresponding Application Code" for a Combined Work means the
|
38
|
+
object code and/or source code for the Application, including any data
|
39
|
+
and utility programs needed for reproducing the Combined Work from the
|
40
|
+
Application, but excluding the System Libraries of the Combined Work.
|
41
|
+
|
42
|
+
1. Exception to Section 3 of the GNU GPL.
|
43
|
+
|
44
|
+
You may convey a covered work under sections 3 and 4 of this License
|
45
|
+
without being bound by section 3 of the GNU GPL.
|
46
|
+
|
47
|
+
2. Conveying Modified Versions.
|
48
|
+
|
49
|
+
If you modify a copy of the Library, and, in your modifications, a
|
50
|
+
facility refers to a function or data to be supplied by an Application
|
51
|
+
that uses the facility (other than as an argument passed when the
|
52
|
+
facility is invoked), then you may convey a copy of the modified
|
53
|
+
version:
|
54
|
+
|
55
|
+
a) under this License, provided that you make a good faith effort to
|
56
|
+
ensure that, in the event an Application does not supply the
|
57
|
+
function or data, the facility still operates, and performs
|
58
|
+
whatever part of its purpose remains meaningful, or
|
59
|
+
|
60
|
+
b) under the GNU GPL, with none of the additional permissions of
|
61
|
+
this License applicable to that copy.
|
62
|
+
|
63
|
+
3. Object Code Incorporating Material from Library Header Files.
|
64
|
+
|
65
|
+
The object code form of an Application may incorporate material from
|
66
|
+
a header file that is part of the Library. You may convey such object
|
67
|
+
code under terms of your choice, provided that, if the incorporated
|
68
|
+
material is not limited to numerical parameters, data structure
|
69
|
+
layouts and accessors, or small macros, inline functions and templates
|
70
|
+
(ten or fewer lines in length), you do both of the following:
|
71
|
+
|
72
|
+
a) Give prominent notice with each copy of the object code that the
|
73
|
+
Library is used in it and that the Library and its use are
|
74
|
+
covered by this License.
|
75
|
+
|
76
|
+
b) Accompany the object code with a copy of the GNU GPL and this license
|
77
|
+
document.
|
78
|
+
|
79
|
+
4. Combined Works.
|
80
|
+
|
81
|
+
You may convey a Combined Work under terms of your choice that,
|
82
|
+
taken together, effectively do not restrict modification of the
|
83
|
+
portions of the Library contained in the Combined Work and reverse
|
84
|
+
engineering for debugging such modifications, if you also do each of
|
85
|
+
the following:
|
86
|
+
|
87
|
+
a) Give prominent notice with each copy of the Combined Work that
|
88
|
+
the Library is used in it and that the Library and its use are
|
89
|
+
covered by this License.
|
90
|
+
|
91
|
+
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
92
|
+
document.
|
93
|
+
|
94
|
+
c) For a Combined Work that displays copyright notices during
|
95
|
+
execution, include the copyright notice for the Library among
|
96
|
+
these notices, as well as a reference directing the user to the
|
97
|
+
copies of the GNU GPL and this license document.
|
98
|
+
|
99
|
+
d) Do one of the following:
|
100
|
+
|
101
|
+
0) Convey the Minimal Corresponding Source under the terms of this
|
102
|
+
License, and the Corresponding Application Code in a form
|
103
|
+
suitable for, and under terms that permit, the user to
|
104
|
+
recombine or relink the Application with a modified version of
|
105
|
+
the Linked Version to produce a modified Combined Work, in the
|
106
|
+
manner specified by section 6 of the GNU GPL for conveying
|
107
|
+
Corresponding Source.
|
108
|
+
|
109
|
+
1) Use a suitable shared library mechanism for linking with the
|
110
|
+
Library. A suitable mechanism is one that (a) uses at run time
|
111
|
+
a copy of the Library already present on the user's computer
|
112
|
+
system, and (b) will operate properly with a modified version
|
113
|
+
of the Library that is interface-compatible with the Linked
|
114
|
+
Version.
|
115
|
+
|
116
|
+
e) Provide Installation Information, but only if you would otherwise
|
117
|
+
be required to provide such information under section 6 of the
|
118
|
+
GNU GPL, and only to the extent that such information is
|
119
|
+
necessary to install and execute a modified version of the
|
120
|
+
Combined Work produced by recombining or relinking the
|
121
|
+
Application with a modified version of the Linked Version. (If
|
122
|
+
you use option 4d0, the Installation Information must accompany
|
123
|
+
the Minimal Corresponding Source and Corresponding Application
|
124
|
+
Code. If you use option 4d1, you must provide the Installation
|
125
|
+
Information in the manner specified by section 6 of the GNU GPL
|
126
|
+
for conveying Corresponding Source.)
|
127
|
+
|
128
|
+
5. Combined Libraries.
|
129
|
+
|
130
|
+
You may place library facilities that are a work based on the
|
131
|
+
Library side by side in a single library together with other library
|
132
|
+
facilities that are not Applications and are not covered by this
|
133
|
+
License, and convey such a combined library under terms of your
|
134
|
+
choice, if you do both of the following:
|
135
|
+
|
136
|
+
a) Accompany the combined library with a copy of the same work based
|
137
|
+
on the Library, uncombined with any other library facilities,
|
138
|
+
conveyed under the terms of this License.
|
139
|
+
|
140
|
+
b) Give prominent notice with the combined library that part of it
|
141
|
+
is a work based on the Library, and explaining where to find the
|
142
|
+
accompanying uncombined form of the same work.
|
143
|
+
|
144
|
+
6. Revised Versions of the GNU Lesser General Public License.
|
145
|
+
|
146
|
+
The Free Software Foundation may publish revised and/or new versions
|
147
|
+
of the GNU Lesser General Public License from time to time. Such new
|
148
|
+
versions will be similar in spirit to the present version, but may
|
149
|
+
differ in detail to address new problems or concerns.
|
150
|
+
|
151
|
+
Each version is given a distinguishing version number. If the
|
152
|
+
Library as you received it specifies that a certain numbered version
|
153
|
+
of the GNU Lesser General Public License "or any later version"
|
154
|
+
applies to it, you have the option of following the terms and
|
155
|
+
conditions either of that published version or of any later version
|
156
|
+
published by the Free Software Foundation. If the Library as you
|
157
|
+
received it does not specify a version number of the GNU Lesser
|
158
|
+
General Public License, you may choose any version of the GNU Lesser
|
159
|
+
General Public License ever published by the Free Software Foundation.
|
160
|
+
|
161
|
+
If the Library as you received it specifies that a proxy can decide
|
162
|
+
whether future versions of the GNU Lesser General Public License shall
|
163
|
+
apply, that proxy's public statement of acceptance of any version is
|
164
|
+
permanent authorization for you to choose that version for the
|
165
|
+
Library.
|
data/README.md
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
# HotDocs: Write your docs with Ruby on Rails
|
2
|
+
|
3
|
+
<div align="center">
|
4
|
+
<img width="200" width="200" src=".github/images/hotdocs.svg" />
|
5
|
+
</div>
|
6
|
+
|
7
|
+
Let's stop the JavaScript madness:
|
8
|
+
|
9
|
+
HotDocs is a set of optimized Rails components & tools for writing docs:
|
10
|
+
- Write your docs from scratch
|
11
|
+
- Embed docs in your Rails app
|
12
|
+
|
13
|
+
[**Get Started**](https://hotdocsrails.com)
|
14
|
+
|
15
|
+
## Comparison
|
16
|
+
|
17
|
+
| Feature | HotDocs | Jekyll | Docusaurus |
|
18
|
+
|-----------------------------------------------------------|---------|--------|------------|
|
19
|
+
| Ruby on Rails (database, Hotwire, etc.) | ✅ | ❌ | ❌ |
|
20
|
+
| Embed docs in an existing Rails app | ✅ | ❌ | ❌ |
|
21
|
+
| Standalone docs | ✅ | ✅ | ✅ |
|
22
|
+
| Styled components you can customize | ✅ | ✅ | ✅ |
|
23
|
+
| Markdown (with syntax highlight & themes) | 🚀 | 👍 | 🚀 |
|
24
|
+
| Static export | 🔜 🚀 | 👍 | 🚀 |
|
25
|
+
| Search | 🔜 ✅ | 🔌 | 🔌 |
|
26
|
+
| Light / Dark | 🔜 ✅ | 🔌 | ✅ |
|
27
|
+
| Open source | ✅ | ✅ | ✅ |
|
28
|
+
| Free | ✅ | ✅ | ✅ |
|
29
|
+
|
30
|
+
**Anything missing? Suggestions?** See how to contribute below.
|
31
|
+
|
32
|
+
## Demo
|
33
|
+
|
34
|
+
HotDocs uses itself for its docs: [check the demo out](https://hotdocsrails.com).
|
35
|
+
|
36
|
+
## Development
|
37
|
+
|
38
|
+
In its current state, HotDocs is a mountable Rails engine.
|
39
|
+
|
40
|
+
The HotDocs website is a Rails app configured to use the HotDocs engine. Run it with:
|
41
|
+
|
42
|
+
```bash
|
43
|
+
bin/dev
|
44
|
+
bin/rails test
|
45
|
+
```
|
46
|
+
|
47
|
+
To release a new version:
|
48
|
+
- Update the version number in `version.rb`
|
49
|
+
- Run `bundle exec rake release`, which will
|
50
|
+
- Create a git tag for the version
|
51
|
+
- Push git commits and the created tag
|
52
|
+
- Push the `.gem` file to [rubygems.org](https://rubygems.org)
|
53
|
+
|
54
|
+
## Contributing
|
55
|
+
|
56
|
+
Let's create a Rails alternative to (just) Ruby and JavaScript docs frameworks:
|
57
|
+
- Chime in the [discussions](https://github.com/3v0k4/hotdocs/discussions) with your feedback and wishes
|
58
|
+
- Open an [issue](https://github.com/3v0k4/hotdocs/issues)
|
59
|
+
- Submit a [pull request](https://github.com/3v0k4/hotdocs/pulls)
|
data/Rakefile
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
require "bundler/setup"
|
2
|
+
|
3
|
+
APP_RAKEFILE = File.expand_path("website/Rakefile", __dir__)
|
4
|
+
load "rails/tasks/engine.rake"
|
5
|
+
|
6
|
+
load "rails/tasks/statistics.rake"
|
7
|
+
|
8
|
+
require "bundler/gem_tasks"
|
9
|
+
|
10
|
+
namespace :assets do
|
11
|
+
desc "Expose app:assets:precompile to Heroku"
|
12
|
+
task :precompile do
|
13
|
+
Rake::Task["app:assets:precompile"].invoke
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<svg viewBox="0 0 500 500" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M90 328C243.479 290.664 328.011 197.596 359 91" stroke="#F1B869" stroke-width="120" stroke-linecap="round"/>
|
3
|
+
<path d="M67 376C252.429 326.849 354.56 204.329 392 64" stroke="#E34752" stroke-width="120" stroke-linecap="round"/>
|
4
|
+
<path d="M147 415C300.479 377.664 385.011 284.596 416 178" stroke="#F1B869" stroke-width="160" stroke-linecap="round"/>
|
5
|
+
<circle cx="230" cy="316" r="45" fill="#0A0A0A"/>
|
6
|
+
<circle cx="218.5" cy="302.5" r="17.5" fill="#F1F1F1"/>
|
7
|
+
<circle cx="243.5" cy="320.5" r="7.5" fill="#F1F1F1"/>
|
8
|
+
<path d="M251.01 290L253.792 297.32L261.617 300.607L253.792 302.813L251.01 311.213L247.981 302.813L240.404 300.607L247.981 297.32L251.01 290Z" fill="#F1F1F1"/>
|
9
|
+
<path d="M224.657 328L226.14 331.904L230.314 333.657L226.14 334.833L224.657 339.314L223.041 334.833L219 333.657L223.041 331.904L224.657 328Z" fill="#F1F1F1"/>
|
10
|
+
<circle cx="332" cy="227" r="45" fill="#0A0A0A"/>
|
11
|
+
<circle cx="320.5" cy="213.5" r="17.5" fill="#F1F1F1"/>
|
12
|
+
<circle cx="345.5" cy="231.5" r="7.5" fill="#F1F1F1"/>
|
13
|
+
<path d="M353.01 201L355.792 208.32L363.617 211.607L355.792 213.813L353.01 222.213L349.981 213.813L342.404 211.607L349.981 208.32L353.01 201Z" fill="#F1F1F1"/>
|
14
|
+
<path d="M326.657 239L328.14 242.904L332.314 244.657L328.14 245.833L326.657 250.314L325.041 245.833L321 244.657L325.041 242.904L326.657 239Z" fill="#F1F1F1"/>
|
15
|
+
<path d="M422.301 297.436C438.008 323.094 421.058 362.066 384.442 384.481C347.825 406.897 305.409 404.268 289.702 378.61C273.994 352.952 303.683 334.79 340.3 312.374C376.916 289.959 406.594 271.778 422.301 297.436Z" fill="#0A0A0A"/>
|
16
|
+
<path d="M409.899 350.314C417.051 360.608 400.145 374.476 388.212 382.766C376.279 391.057 365.573 397.144 358.421 386.85C351.268 376.556 355.144 361.489 367.077 353.198C379.01 344.907 402.747 340.019 409.899 350.314Z" fill="#E5757D"/>
|
17
|
+
</svg>
|
@@ -0,0 +1,36 @@
|
|
1
|
+
import { Controller } from "@hotwired/stimulus";
|
2
|
+
|
3
|
+
export default class extends Controller {
|
4
|
+
static values = {
|
5
|
+
expanded: Boolean,
|
6
|
+
expandedClass: String,
|
7
|
+
collapsedAriaLabel: String,
|
8
|
+
expandedAriaLabel: String,
|
9
|
+
};
|
10
|
+
|
11
|
+
static targets = ["toggle"];
|
12
|
+
|
13
|
+
connect() {
|
14
|
+
this._setStatus();
|
15
|
+
|
16
|
+
if (this.expandedValue) {
|
17
|
+
this.element.classList.add(this.expandedClassValue);
|
18
|
+
}
|
19
|
+
}
|
20
|
+
|
21
|
+
toggle() {
|
22
|
+
this.expandedValue = !this.expandedValue;
|
23
|
+
this._setStatus();
|
24
|
+
this.element.classList.toggle(this.expandedClassValue);
|
25
|
+
}
|
26
|
+
|
27
|
+
_setStatus() {
|
28
|
+
if (this.expandedValue) {
|
29
|
+
this.toggleTarget.ariaExpanded = true;
|
30
|
+
this.toggleTarget.ariaLabel = this.expandedAriaLabelValue;
|
31
|
+
} else {
|
32
|
+
this.toggleTarget.ariaExpanded = false;
|
33
|
+
this.toggleTarget.ariaLabel = this.collapsedAriaLabelValue;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
}
|
@@ -0,0 +1,39 @@
|
|
1
|
+
import { Controller } from "@hotwired/stimulus";
|
2
|
+
|
3
|
+
export default class extends Controller {
|
4
|
+
static targets = ["sections"];
|
5
|
+
|
6
|
+
static values = {
|
7
|
+
openClass: String,
|
8
|
+
mainMenuClass: String,
|
9
|
+
};
|
10
|
+
|
11
|
+
open(event) {
|
12
|
+
this.opener = event.currentTarget;
|
13
|
+
this.opener.ariaExpanded = true;
|
14
|
+
this._toggleOpen();
|
15
|
+
}
|
16
|
+
|
17
|
+
close() {
|
18
|
+
this._toggleOpen();
|
19
|
+
this.opener.ariaExpanded = false;
|
20
|
+
if (this.reset) {
|
21
|
+
this.reset();
|
22
|
+
this.reset = null;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
|
26
|
+
back() {
|
27
|
+
this.sectionsTarget.classList.add(this.mainMenuClassValue);
|
28
|
+
this.reset = () => {
|
29
|
+
setTimeout(
|
30
|
+
() => this.sectionsTarget.classList.remove(this.mainMenuClassValue),
|
31
|
+
200 // Give time to the CSS transition to finish
|
32
|
+
);
|
33
|
+
};
|
34
|
+
}
|
35
|
+
|
36
|
+
_toggleOpen(event) {
|
37
|
+
document.body.classList.toggle(this.openClassValue);
|
38
|
+
}
|
39
|
+
}
|
@@ -0,0 +1,103 @@
|
|
1
|
+
import { Controller } from "@hotwired/stimulus";
|
2
|
+
|
3
|
+
export default class extends Controller {
|
4
|
+
// `templates`s must contain an `<a>`
|
5
|
+
static targets = [
|
6
|
+
"article",
|
7
|
+
"sidetoc",
|
8
|
+
"sidetocTemplate",
|
9
|
+
"toc",
|
10
|
+
"tocTemplate",
|
11
|
+
];
|
12
|
+
|
13
|
+
connect() {
|
14
|
+
this._slugHeadings();
|
15
|
+
this._createEntries();
|
16
|
+
this._trackActiveEntry();
|
17
|
+
this._addAnchorLinks();
|
18
|
+
}
|
19
|
+
|
20
|
+
_slugHeadings() {
|
21
|
+
this._headings().forEach((heading) => {
|
22
|
+
if (heading.id !== "") {
|
23
|
+
return;
|
24
|
+
}
|
25
|
+
|
26
|
+
heading.id = slug(heading.innerText);
|
27
|
+
});
|
28
|
+
}
|
29
|
+
|
30
|
+
_createEntries() {
|
31
|
+
this._headings().forEach((heading) => {
|
32
|
+
const a = this._createEntry(
|
33
|
+
heading,
|
34
|
+
this.sidetocTemplateTarget,
|
35
|
+
this.sidetocTarget
|
36
|
+
);
|
37
|
+
a.id = `toc-${heading.id}`;
|
38
|
+
|
39
|
+
this._createEntry(heading, this.tocTemplateTarget, this.tocTarget);
|
40
|
+
});
|
41
|
+
}
|
42
|
+
|
43
|
+
_createEntry(heading, templateTarget, tocTarget) {
|
44
|
+
const clone = templateTarget.content.cloneNode(true);
|
45
|
+
const a = clone.querySelector("a");
|
46
|
+
a.classList.add(heading.tagName.toLowerCase());
|
47
|
+
a.href = `#${heading.id}`;
|
48
|
+
a.innerHTML = heading.innerHTML;
|
49
|
+
tocTarget.appendChild(clone);
|
50
|
+
return a;
|
51
|
+
}
|
52
|
+
|
53
|
+
_trackActiveEntry() {
|
54
|
+
const callback = (entries) => {
|
55
|
+
entries.forEach((entry) => {
|
56
|
+
if (!entry.isIntersecting) {
|
57
|
+
return;
|
58
|
+
}
|
59
|
+
this.sidetocTarget.querySelectorAll("a").forEach((a) => {
|
60
|
+
a.classList.remove("active");
|
61
|
+
});
|
62
|
+
this.sidetocTarget
|
63
|
+
.querySelector(`#toc-${entry.target.id}`)
|
64
|
+
.classList.add("active");
|
65
|
+
});
|
66
|
+
};
|
67
|
+
const options = { threshold: 1.0, rootMargin: "0px 0px -75% 0px" };
|
68
|
+
const observer = new IntersectionObserver(callback, options);
|
69
|
+
|
70
|
+
this._headings().forEach((heading) => {
|
71
|
+
observer.observe(heading);
|
72
|
+
});
|
73
|
+
}
|
74
|
+
|
75
|
+
_addAnchorLinks() {
|
76
|
+
this._headings()
|
77
|
+
.filter((heading) => heading.tagName !== "H1")
|
78
|
+
.forEach((heading) => {
|
79
|
+
const a = document.createElement("a");
|
80
|
+
a.textContent = "#";
|
81
|
+
a.href = `#${heading.id}`;
|
82
|
+
a.classList.add("anchor-link");
|
83
|
+
a.title = `Anchor link to ${heading.innerText}`;
|
84
|
+
a.ariaDescription = `Anchor link to ${heading.innerText}`;
|
85
|
+
heading.appendChild(a);
|
86
|
+
});
|
87
|
+
}
|
88
|
+
|
89
|
+
_headings() {
|
90
|
+
return Array.from(
|
91
|
+
this.articleTarget.querySelectorAll("h1, h2, h3, h4, h5, h6")
|
92
|
+
);
|
93
|
+
}
|
94
|
+
}
|
95
|
+
|
96
|
+
// The code below is adapted from https://github.com/Flet/github-slugger
|
97
|
+
// Copyright (c) 2015, Dan Flettre <fletd01@yahoo.com> (ISC License)
|
98
|
+
|
99
|
+
const REGEX =
|
100
|
+
/[\0-\x1F!-,\.\/:-@\[-\^`\{-\xA9\xAB-\xB4\xB6-\xB9\xBB-\xBF\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0378\u0379\u037E\u0380-\u0385\u0387\u038B\u038D\u03A2\u03F6\u0482\u0530\u0557\u0558\u055A-\u055F\u0589-\u0590\u05BE\u05C0\u05C3\u05C6\u05C8-\u05CF\u05EB-\u05EE\u05F3-\u060F\u061B-\u061F\u066A-\u066D\u06D4\u06DD\u06DE\u06E9\u06FD\u06FE\u0700-\u070F\u074B\u074C\u07B2-\u07BF\u07F6-\u07F9\u07FB\u07FC\u07FE\u07FF\u082E-\u083F\u085C-\u085F\u086B-\u089F\u08B5\u08C8-\u08D2\u08E2\u0964\u0965\u0970\u0984\u098D\u098E\u0991\u0992\u09A9\u09B1\u09B3-\u09B5\u09BA\u09BB\u09C5\u09C6\u09C9\u09CA\u09CF-\u09D6\u09D8-\u09DB\u09DE\u09E4\u09E5\u09F2-\u09FB\u09FD\u09FF\u0A00\u0A04\u0A0B-\u0A0E\u0A11\u0A12\u0A29\u0A31\u0A34\u0A37\u0A3A\u0A3B\u0A3D\u0A43-\u0A46\u0A49\u0A4A\u0A4E-\u0A50\u0A52-\u0A58\u0A5D\u0A5F-\u0A65\u0A76-\u0A80\u0A84\u0A8E\u0A92\u0AA9\u0AB1\u0AB4\u0ABA\u0ABB\u0AC6\u0ACA\u0ACE\u0ACF\u0AD1-\u0ADF\u0AE4\u0AE5\u0AF0-\u0AF8\u0B00\u0B04\u0B0D\u0B0E\u0B11\u0B12\u0B29\u0B31\u0B34\u0B3A\u0B3B\u0B45\u0B46\u0B49\u0B4A\u0B4E-\u0B54\u0B58-\u0B5B\u0B5E\u0B64\u0B65\u0B70\u0B72-\u0B81\u0B84\u0B8B-\u0B8D\u0B91\u0B96-\u0B98\u0B9B\u0B9D\u0BA0-\u0BA2\u0BA5-\u0BA7\u0BAB-\u0BAD\u0BBA-\u0BBD\u0BC3-\u0BC5\u0BC9\u0BCE\u0BCF\u0BD1-\u0BD6\u0BD8-\u0BE5\u0BF0-\u0BFF\u0C0D\u0C11\u0C29\u0C3A-\u0C3C\u0C45\u0C49\u0C4E-\u0C54\u0C57\u0C5B-\u0C5F\u0C64\u0C65\u0C70-\u0C7F\u0C84\u0C8D\u0C91\u0CA9\u0CB4\u0CBA\u0CBB\u0CC5\u0CC9\u0CCE-\u0CD4\u0CD7-\u0CDD\u0CDF\u0CE4\u0CE5\u0CF0\u0CF3-\u0CFF\u0D0D\u0D11\u0D45\u0D49\u0D4F-\u0D53\u0D58-\u0D5E\u0D64\u0D65\u0D70-\u0D79\u0D80\u0D84\u0D97-\u0D99\u0DB2\u0DBC\u0DBE\u0DBF\u0DC7-\u0DC9\u0DCB-\u0DCE\u0DD5\u0DD7\u0DE0-\u0DE5\u0DF0\u0DF1\u0DF4-\u0E00\u0E3B-\u0E3F\u0E4F\u0E5A-\u0E80\u0E83\u0E85\u0E8B\u0EA4\u0EA6\u0EBE\u0EBF\u0EC5\u0EC7\u0ECE\u0ECF\u0EDA\u0EDB\u0EE0-\u0EFF\u0F01-\u0F17\u0F1A-\u0F1F\u0F2A-\u0F34\u0F36\u0F38\u0F3A-\u0F3D\u0F48\u0F6D-\u0F70\u0F85\u0F98\u0FBD-\u0FC5\u0FC7-\u0FFF\u104A-\u104F\u109E\u109F\u10C6\u10C8-\u10CC\u10CE\u10CF\u10FB\u1249\u124E\u124F\u1257\u1259\u125E\u125F\u1289\u128E\u128F\u12B1\u12B6\u12B7\u12BF\u12C1\u12C6\u12C7\u12D7\u1311\u1316\u1317\u135B\u135C\u1360-\u137F\u1390-\u139F\u13F6\u13F7\u13FE-\u1400\u166D\u166E\u1680\u169B-\u169F\u16EB-\u16ED\u16F9-\u16FF\u170D\u1715-\u171F\u1735-\u173F\u1754-\u175F\u176D\u1771\u1774-\u177F\u17D4-\u17D6\u17D8-\u17DB\u17DE\u17DF\u17EA-\u180A\u180E\u180F\u181A-\u181F\u1879-\u187F\u18AB-\u18AF\u18F6-\u18FF\u191F\u192C-\u192F\u193C-\u1945\u196E\u196F\u1975-\u197F\u19AC-\u19AF\u19CA-\u19CF\u19DA-\u19FF\u1A1C-\u1A1F\u1A5F\u1A7D\u1A7E\u1A8A-\u1A8F\u1A9A-\u1AA6\u1AA8-\u1AAF\u1AC1-\u1AFF\u1B4C-\u1B4F\u1B5A-\u1B6A\u1B74-\u1B7F\u1BF4-\u1BFF\u1C38-\u1C3F\u1C4A-\u1C4C\u1C7E\u1C7F\u1C89-\u1C8F\u1CBB\u1CBC\u1CC0-\u1CCF\u1CD3\u1CFB-\u1CFF\u1DFA\u1F16\u1F17\u1F1E\u1F1F\u1F46\u1F47\u1F4E\u1F4F\u1F58\u1F5A\u1F5C\u1F5E\u1F7E\u1F7F\u1FB5\u1FBD\u1FBF-\u1FC1\u1FC5\u1FCD-\u1FCF\u1FD4\u1FD5\u1FDC-\u1FDF\u1FED-\u1FF1\u1FF5\u1FFD-\u203E\u2041-\u2053\u2055-\u2070\u2072-\u207E\u2080-\u208F\u209D-\u20CF\u20F1-\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F-\u215F\u2189-\u24B5\u24EA-\u2BFF\u2C2F\u2C5F\u2CE5-\u2CEA\u2CF4-\u2CFF\u2D26\u2D28-\u2D2C\u2D2E\u2D2F\u2D68-\u2D6E\u2D70-\u2D7E\u2D97-\u2D9F\u2DA7\u2DAF\u2DB7\u2DBF\u2DC7\u2DCF\u2DD7\u2DDF\u2E00-\u2E2E\u2E30-\u3004\u3008-\u3020\u3030\u3036\u3037\u303D-\u3040\u3097\u3098\u309B\u309C\u30A0\u30FB\u3100-\u3104\u3130\u318F-\u319F\u31C0-\u31EF\u3200-\u33FF\u4DC0-\u4DFF\u9FFD-\u9FFF\uA48D-\uA4CF\uA4FE\uA4FF\uA60D-\uA60F\uA62C-\uA63F\uA673\uA67E\uA6F2-\uA716\uA720\uA721\uA789\uA78A\uA7C0\uA7C1\uA7CB-\uA7F4\uA828-\uA82B\uA82D-\uA83F\uA874-\uA87F\uA8C6-\uA8CF\uA8DA-\uA8DF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA954-\uA95F\uA97D-\uA97F\uA9C1-\uA9CE\uA9DA-\uA9DF\uA9FF\uAA37-\uAA3F\uAA4E\uAA4F\uAA5A-\uAA5F\uAA77-\uAA79\uAAC3-\uAADA\uAADE\uAADF\uAAF0\uAAF1\uAAF7-\uAB00\uAB07\uAB08\uAB0F\uAB10\uAB17-\uAB1F\uAB27\uAB2F\uAB5B\uAB6A-\uAB6F\uABEB\uABEE\uABEF\uABFA-\uABFF\uD7A4-\uD7AF\uD7C7-\uD7CA\uD7FC-\uD7FF\uE000-\uF8FF\uFA6E\uFA6F\uFADA-\uFAFF\uFB07-\uFB12\uFB18-\uFB1C\uFB29\uFB37\uFB3D\uFB3F\uFB42\uFB45\uFBB2-\uFBD2\uFD3E-\uFD4F\uFD90\uFD91\uFDC8-\uFDEF\uFDFC-\uFDFF\uFE10-\uFE1F\uFE30-\uFE32\uFE35-\uFE4C\uFE50-\uFE6F\uFE75\uFEFD-\uFF0F\uFF1A-\uFF20\uFF3B-\uFF3E\uFF40\uFF5B-\uFF65\uFFBF-\uFFC1\uFFC8\uFFC9\uFFD0\uFFD1\uFFD8\uFFD9\uFFDD-\uFFFF]|\uD800[\uDC0C\uDC27\uDC3B\uDC3E\uDC4E\uDC4F\uDC5E-\uDC7F\uDCFB-\uDD3F\uDD75-\uDDFC\uDDFE-\uDE7F\uDE9D-\uDE9F\uDED1-\uDEDF\uDEE1-\uDEFF\uDF20-\uDF2C\uDF4B-\uDF4F\uDF7B-\uDF7F\uDF9E\uDF9F\uDFC4-\uDFC7\uDFD0\uDFD6-\uDFFF]|\uD801[\uDC9E\uDC9F\uDCAA-\uDCAF\uDCD4-\uDCD7\uDCFC-\uDCFF\uDD28-\uDD2F\uDD64-\uDDFF\uDF37-\uDF3F\uDF56-\uDF5F\uDF68-\uDFFF]|\uD802[\uDC06\uDC07\uDC09\uDC36\uDC39-\uDC3B\uDC3D\uDC3E\uDC56-\uDC5F\uDC77-\uDC7F\uDC9F-\uDCDF\uDCF3\uDCF6-\uDCFF\uDD16-\uDD1F\uDD3A-\uDD7F\uDDB8-\uDDBD\uDDC0-\uDDFF\uDE04\uDE07-\uDE0B\uDE14\uDE18\uDE36\uDE37\uDE3B-\uDE3E\uDE40-\uDE5F\uDE7D-\uDE7F\uDE9D-\uDEBF\uDEC8\uDEE7-\uDEFF\uDF36-\uDF3F\uDF56-\uDF5F\uDF73-\uDF7F\uDF92-\uDFFF]|\uD803[\uDC49-\uDC7F\uDCB3-\uDCBF\uDCF3-\uDCFF\uDD28-\uDD2F\uDD3A-\uDE7F\uDEAA\uDEAD-\uDEAF\uDEB2-\uDEFF\uDF1D-\uDF26\uDF28-\uDF2F\uDF51-\uDFAF\uDFC5-\uDFDF\uDFF7-\uDFFF]|\uD804[\uDC47-\uDC65\uDC70-\uDC7E\uDCBB-\uDCCF\uDCE9-\uDCEF\uDCFA-\uDCFF\uDD35\uDD40-\uDD43\uDD48-\uDD4F\uDD74\uDD75\uDD77-\uDD7F\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDFF\uDE12\uDE38-\uDE3D\uDE3F-\uDE7F\uDE87\uDE89\uDE8E\uDE9E\uDEA9-\uDEAF\uDEEB-\uDEEF\uDEFA-\uDEFF\uDF04\uDF0D\uDF0E\uDF11\uDF12\uDF29\uDF31\uDF34\uDF3A\uDF45\uDF46\uDF49\uDF4A\uDF4E\uDF4F\uDF51-\uDF56\uDF58-\uDF5C\uDF64\uDF65\uDF6D-\uDF6F\uDF75-\uDFFF]|\uD805[\uDC4B-\uDC4F\uDC5A-\uDC5D\uDC62-\uDC7F\uDCC6\uDCC8-\uDCCF\uDCDA-\uDD7F\uDDB6\uDDB7\uDDC1-\uDDD7\uDDDE-\uDDFF\uDE41-\uDE43\uDE45-\uDE4F\uDE5A-\uDE7F\uDEB9-\uDEBF\uDECA-\uDEFF\uDF1B\uDF1C\uDF2C-\uDF2F\uDF3A-\uDFFF]|\uD806[\uDC3B-\uDC9F\uDCEA-\uDCFE\uDD07\uDD08\uDD0A\uDD0B\uDD14\uDD17\uDD36\uDD39\uDD3A\uDD44-\uDD4F\uDD5A-\uDD9F\uDDA8\uDDA9\uDDD8\uDDD9\uDDE2\uDDE5-\uDDFF\uDE3F-\uDE46\uDE48-\uDE4F\uDE9A-\uDE9C\uDE9E-\uDEBF\uDEF9-\uDFFF]|\uD807[\uDC09\uDC37\uDC41-\uDC4F\uDC5A-\uDC71\uDC90\uDC91\uDCA8\uDCB7-\uDCFF\uDD07\uDD0A\uDD37-\uDD39\uDD3B\uDD3E\uDD48-\uDD4F\uDD5A-\uDD5F\uDD66\uDD69\uDD8F\uDD92\uDD99-\uDD9F\uDDAA-\uDEDF\uDEF7-\uDFAF\uDFB1-\uDFFF]|\uD808[\uDF9A-\uDFFF]|\uD809[\uDC6F-\uDC7F\uDD44-\uDFFF]|[\uD80A\uD80B\uD80E-\uD810\uD812-\uD819\uD824-\uD82B\uD82D\uD82E\uD830-\uD833\uD837\uD839\uD83D\uD83F\uD87B-\uD87D\uD87F\uD885-\uDB3F\uDB41-\uDBFF][\uDC00-\uDFFF]|\uD80D[\uDC2F-\uDFFF]|\uD811[\uDE47-\uDFFF]|\uD81A[\uDE39-\uDE3F\uDE5F\uDE6A-\uDECF\uDEEE\uDEEF\uDEF5-\uDEFF\uDF37-\uDF3F\uDF44-\uDF4F\uDF5A-\uDF62\uDF78-\uDF7C\uDF90-\uDFFF]|\uD81B[\uDC00-\uDE3F\uDE80-\uDEFF\uDF4B-\uDF4E\uDF88-\uDF8E\uDFA0-\uDFDF\uDFE2\uDFE5-\uDFEF\uDFF2-\uDFFF]|\uD821[\uDFF8-\uDFFF]|\uD823[\uDCD6-\uDCFF\uDD09-\uDFFF]|\uD82C[\uDD1F-\uDD4F\uDD53-\uDD63\uDD68-\uDD6F\uDEFC-\uDFFF]|\uD82F[\uDC6B-\uDC6F\uDC7D-\uDC7F\uDC89-\uDC8F\uDC9A-\uDC9C\uDC9F-\uDFFF]|\uD834[\uDC00-\uDD64\uDD6A-\uDD6C\uDD73-\uDD7A\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDE41\uDE45-\uDFFF]|\uD835[\uDC55\uDC9D\uDCA0\uDCA1\uDCA3\uDCA4\uDCA7\uDCA8\uDCAD\uDCBA\uDCBC\uDCC4\uDD06\uDD0B\uDD0C\uDD15\uDD1D\uDD3A\uDD3F\uDD45\uDD47-\uDD49\uDD51\uDEA6\uDEA7\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3\uDFCC\uDFCD]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85-\uDE9A\uDEA0\uDEB0-\uDFFF]|\uD838[\uDC07\uDC19\uDC1A\uDC22\uDC25\uDC2B-\uDCFF\uDD2D-\uDD2F\uDD3E\uDD3F\uDD4A-\uDD4D\uDD4F-\uDEBF\uDEFA-\uDFFF]|\uD83A[\uDCC5-\uDCCF\uDCD7-\uDCFF\uDD4C-\uDD4F\uDD5A-\uDFFF]|\uD83B[\uDC00-\uDDFF\uDE04\uDE20\uDE23\uDE25\uDE26\uDE28\uDE33\uDE38\uDE3A\uDE3C-\uDE41\uDE43-\uDE46\uDE48\uDE4A\uDE4C\uDE50\uDE53\uDE55\uDE56\uDE58\uDE5A\uDE5C\uDE5E\uDE60\uDE63\uDE65\uDE66\uDE6B\uDE73\uDE78\uDE7D\uDE7F\uDE8A\uDE9C-\uDEA0\uDEA4\uDEAA\uDEBC-\uDFFF]|\uD83C[\uDC00-\uDD2F\uDD4A-\uDD4F\uDD6A-\uDD6F\uDD8A-\uDFFF]|\uD83E[\uDC00-\uDFEF\uDFFA-\uDFFF]|\uD869[\uDEDE-\uDEFF]|\uD86D[\uDF35-\uDF3F]|\uD86E[\uDC1E\uDC1F]|\uD873[\uDEA2-\uDEAF]|\uD87A[\uDFE1-\uDFFF]|\uD87E[\uDE1E-\uDFFF]|\uD884[\uDF4B-\uDFFF]|\uDB40[\uDC00-\uDCFF\uDDF0-\uDFFF]/g;
|
101
|
+
|
102
|
+
export const slug = (string) =>
|
103
|
+
string.toLowerCase().replace(REGEX, "").replace(/ /g, "-");
|