@podlite/toc 0.0.26 → 0.0.27
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.
- package/CHANGELOG.podlite +46 -0
- package/package.json +2 -2
- package/CHANGELOG.md +0 -46
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# @podlite/toc
|
|
2
|
+
|
|
3
|
+
=head1 Upcoming
|
|
4
|
+
|
|
5
|
+
=head1 0.0.19
|
|
6
|
+
|
|
7
|
+
=item improved toc usage in the editor
|
|
8
|
+
=item added default logic to retrieve the text for the toc element
|
|
9
|
+
|
|
10
|
+
=head1 0.0.12
|
|
11
|
+
|
|
12
|
+
=item implement `:caption`
|
|
13
|
+
|
|
14
|
+
=head1 0.0.11
|
|
15
|
+
|
|
16
|
+
=item fix linking toc items
|
|
17
|
+
|
|
18
|
+
=head1 0.0.7
|
|
19
|
+
|
|
20
|
+
=item `=toc` now is standard block
|
|
21
|
+
|
|
22
|
+
=head1 0.0.6
|
|
23
|
+
|
|
24
|
+
=item refactor
|
|
25
|
+
|
|
26
|
+
=head1 0.0.5
|
|
27
|
+
|
|
28
|
+
=item update deps
|
|
29
|
+
|
|
30
|
+
=head1 0.0.4
|
|
31
|
+
|
|
32
|
+
=item update deps
|
|
33
|
+
|
|
34
|
+
=head1 0.0.3
|
|
35
|
+
|
|
36
|
+
=item adjust plugin API
|
|
37
|
+
|
|
38
|
+
=head1 0.0.2
|
|
39
|
+
|
|
40
|
+
=item update deps
|
|
41
|
+
|
|
42
|
+
=head1 0.0.1
|
|
43
|
+
|
|
44
|
+
=item initial release
|
|
45
|
+
=item implement Table of conents =Toc block
|
|
46
|
+
=item add support :caption for =table
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@podlite/toc",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.27",
|
|
4
4
|
"description": "'Table of contents' plugin for Podlite markup language",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"react-dom": "^16.0.0 || ^17.0.0 || ^18"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@podlite/schema": "0.0.
|
|
41
|
+
"@podlite/schema": "0.0.34",
|
|
42
42
|
"react": "^16.0.0 || ^17.0.0 || ^18",
|
|
43
43
|
"react-dom": "^16.0.0 || ^17.0.0 || ^18",
|
|
44
44
|
"react-is": "^18.0.0"
|
package/CHANGELOG.md
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
# @podlite/toc
|
|
2
|
-
|
|
3
|
-
## Upcoming
|
|
4
|
-
|
|
5
|
-
## 0.0.19
|
|
6
|
-
|
|
7
|
-
- improved toc usage in the editor
|
|
8
|
-
- added default logic to retrieve the text for the toc element
|
|
9
|
-
|
|
10
|
-
## 0.0.12
|
|
11
|
-
|
|
12
|
-
- implement `:caption`
|
|
13
|
-
|
|
14
|
-
## 0.0.11
|
|
15
|
-
|
|
16
|
-
- fix linking toc items
|
|
17
|
-
|
|
18
|
-
## 0.0.7
|
|
19
|
-
|
|
20
|
-
- `=toc` now is standard block
|
|
21
|
-
|
|
22
|
-
## 0.0.6
|
|
23
|
-
|
|
24
|
-
- refactor
|
|
25
|
-
|
|
26
|
-
## 0.0.5
|
|
27
|
-
|
|
28
|
-
- update deps
|
|
29
|
-
|
|
30
|
-
## 0.0.4
|
|
31
|
-
|
|
32
|
-
- update deps
|
|
33
|
-
|
|
34
|
-
## 0.0.3
|
|
35
|
-
|
|
36
|
-
- adjust plugin API
|
|
37
|
-
|
|
38
|
-
## 0.0.2
|
|
39
|
-
|
|
40
|
-
- update deps
|
|
41
|
-
|
|
42
|
-
## 0.0.1
|
|
43
|
-
|
|
44
|
-
- initial release
|
|
45
|
-
- implement Table of conents =Toc block
|
|
46
|
-
- add support :caption for =table
|