@peaceroad/markdown-it-figure-with-p-caption 0.12.0 → 0.13.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.
@@ -1,60 +0,0 @@
1
- [Markdown]
2
- ![A caption.](cat.jpg)
3
-
4
- [HTML]
5
- <figure class="f-img">
6
- <figcaption><span class="f-img-label">Figure<span class="f-img-label-joint">.</span></span> A caption.</figcaption>
7
- <img src="cat.jpg" alt="">
8
- </figure>
9
-
10
-
11
- [Markdown]
12
- ![Figure. A caption.](cat.jpg)
13
-
14
- [HTML]
15
- <figure class="f-img">
16
- <figcaption><span class="f-img-label">Figure<span class="f-img-label-joint">.</span></span> A caption.</figcaption>
17
- <img src="cat.jpg" alt="">
18
- </figure>
19
-
20
-
21
- [Markdown]
22
- ![](cat.jpg)
23
-
24
- [HTML]
25
- <figure class="f-img">
26
- <img src="cat.jpg" alt="">
27
- </figure>
28
-
29
-
30
- [Markdown]
31
- Figure. A caption.
32
-
33
- ![](cat.jpg)
34
-
35
- [HTML]
36
- <p>Figure. A caption.</p>
37
- <figure class="f-img">
38
- <img src="cat.jpg" alt="">
39
- </figure>
40
-
41
-
42
- [Markdown]
43
- ![Figure 12. A caption.](cat.jpg)
44
-
45
- [HTML]
46
- <figure class="f-img">
47
- <figcaption><span class="f-img-label">Figure 12<span class="f-img-label-joint">.</span></span> A caption.</figcaption>
48
- <img src="cat.jpg" alt="">
49
- </figure>
50
-
51
- [Markdown]
52
- ![Figure.1 A caption.](cat.jpg)
53
-
54
- [HTML]
55
- <figure class="f-img">
56
- <figcaption><span class="f-img-label">Figure.1</span> A caption.</figcaption>
57
- <img src="cat.jpg" alt="">
58
- </figure>
59
-
60
-
@@ -1,84 +0,0 @@
1
- [Markdown]
2
- ![図1 キャプション](cat.jpg)
3
-
4
- [HTML]
5
- <figure class="f-img">
6
- <figcaption><span class="f-img-label">図1<span class="f-img-label-joint"> </span></span>キャプション</figcaption>
7
- <img src="cat.jpg" alt="">
8
- </figure>
9
-
10
-
11
- [Markdown]
12
- 図 キャプション
13
-
14
- ![図1 キャプション](cat.jpg)
15
-
16
- [HTML]
17
- <p>図 キャプション</p>
18
- <figure class="f-img">
19
- <figcaption><span class="f-img-label">図1<span class="f-img-label-joint"> </span></span>キャプション</figcaption>
20
- <img src="cat.jpg" alt="">
21
- </figure>
22
-
23
-
24
- [Markdown]
25
- ![A caption.](cat.jpg)
26
-
27
- ![図 A caption.](cat.jpg)
28
-
29
- [HTML]
30
- <figure class="f-img">
31
- <figcaption><span class="f-img-label">図<span class="f-img-label-joint"> </span></span>A caption.</figcaption>
32
- <img src="cat.jpg" alt="">
33
- </figure>
34
- <figure class="f-img">
35
- <figcaption><span class="f-img-label">図</span> A caption.</figcaption>
36
- <img src="cat.jpg" alt="">
37
- </figure>
38
-
39
-
40
- [Markdown]
41
-
42
- ```
43
- code
44
- ```
45
-
46
- ![A caption.](cat.jpg)
47
-
48
- [HTML]
49
- <pre><code>code
50
- </code></pre>
51
- <figure class="f-img">
52
- <figcaption><span class="f-img-label">図<span class="f-img-label-joint"> </span></span>A caption.</figcaption>
53
- <img src="cat.jpg" alt="">
54
- </figure>
55
-
56
-
57
- [Markdown]
58
-
59
- | h1 | h2 |
60
- |----|----|
61
- | 11 | 12 |
62
-
63
- ![A caption.](cat.jpg)
64
-
65
- [HTML]
66
- <table>
67
- <thead>
68
- <tr>
69
- <th>h1</th>
70
- <th>h2</th>
71
- </tr>
72
- </thead>
73
- <tbody>
74
- <tr>
75
- <td>11</td>
76
- <td>12</td>
77
- </tr>
78
- </tbody>
79
- </table>
80
- <figure class="f-img">
81
- <figcaption><span class="f-img-label">図<span class="f-img-label-joint"> </span></span>A caption.</figcaption>
82
- <img src="cat.jpg" alt="">
83
- </figure>
84
-
@@ -1,60 +0,0 @@
1
- [Markdown]
2
- ![](cat.jpg "A caption.")
3
-
4
- [HTML]
5
- <figure class="f-img">
6
- <figcaption><span class="f-img-label">Figure 1<span class="f-img-label-joint">.</span></span> A caption.</figcaption>
7
- <img src="cat.jpg" alt="">
8
- </figure>
9
-
10
-
11
- [Markdown]
12
- ![](cat.jpg "Figure. A caption.")
13
-
14
- [HTML]
15
- <figure class="f-img">
16
- <figcaption><span class="f-img-label">Figure 1<span class="f-img-label-joint">.</span></span> A caption.</figcaption>
17
- <img src="cat.jpg" alt="">
18
- </figure>
19
-
20
-
21
- [Markdown]
22
- ![A alt text.](cat.jpg)
23
-
24
- [HTML]
25
- <figure class="f-img">
26
- <img src="cat.jpg" alt="A alt text.">
27
- </figure>
28
-
29
- [Markdown]
30
- ![A alt text.](cat.jpg "Figure.")
31
-
32
- [HTML]
33
- <figure class="f-img">
34
- <figcaption><span class="f-img-label">Figure 1<span class="f-img-label-joint">.</span></span></figcaption>
35
- <img src="cat.jpg" alt="A alt text.">
36
- </figure>
37
-
38
-
39
- [Markdown]
40
- Figure. A caption.
41
-
42
- ![](cat.jpg)
43
-
44
- [HTML]
45
- <p>Figure. A caption.</p>
46
- <figure class="f-img">
47
- <img src="cat.jpg" alt="">
48
- </figure>
49
-
50
-
51
- [Markdown]
52
- ![](cat.jpg "Figure 12. A caption.")
53
-
54
- [HTML]
55
- <figure class="f-img">
56
- <figcaption><span class="f-img-label">Figure 12<span class="f-img-label-joint">.</span></span> A caption.</figcaption>
57
- <img src="cat.jpg" alt="">
58
- </figure>
59
-
60
-
@@ -1,60 +0,0 @@
1
- [Markdown]
2
- ![](cat.jpg "A caption.")
3
-
4
- [HTML]
5
- <figure class="f-img">
6
- <figcaption><span class="f-img-label">Figure<span class="f-img-label-joint">.</span></span> A caption.</figcaption>
7
- <img src="cat.jpg" alt="">
8
- </figure>
9
-
10
-
11
- [Markdown]
12
- ![](cat.jpg "Figure. A caption.")
13
-
14
- [HTML]
15
- <figure class="f-img">
16
- <figcaption><span class="f-img-label">Figure<span class="f-img-label-joint">.</span></span> A caption.</figcaption>
17
- <img src="cat.jpg" alt="">
18
- </figure>
19
-
20
-
21
- [Markdown]
22
- ![A alt text.](cat.jpg)
23
-
24
- [HTML]
25
- <figure class="f-img">
26
- <img src="cat.jpg" alt="A alt text.">
27
- </figure>
28
-
29
- [Markdown]
30
- ![A alt text.](cat.jpg "Figure.")
31
-
32
- [HTML]
33
- <figure class="f-img">
34
- <figcaption><span class="f-img-label">Figure<span class="f-img-label-joint">.</span></span></figcaption>
35
- <img src="cat.jpg" alt="A alt text.">
36
- </figure>
37
-
38
-
39
- [Markdown]
40
- Figure. A caption.
41
-
42
- ![](cat.jpg)
43
-
44
- [HTML]
45
- <p>Figure. A caption.</p>
46
- <figure class="f-img">
47
- <img src="cat.jpg" alt="">
48
- </figure>
49
-
50
-
51
- [Markdown]
52
- ![](cat.jpg "Figure 12. A caption.")
53
-
54
- [HTML]
55
- <figure class="f-img">
56
- <figcaption><span class="f-img-label">Figure 12<span class="f-img-label-joint">.</span></span> A caption.</figcaption>
57
- <img src="cat.jpg" alt="">
58
- </figure>
59
-
60
-
@@ -1,30 +0,0 @@
1
- [Markdown]
2
- ![猫](cat.jpg "図1 キャプション")
3
-
4
- [HTML]
5
- <figure class="f-img">
6
- <figcaption><span class="f-img-label">図1<span class="f-img-label-joint"> </span></span>キャプション</figcaption>
7
- <img src="cat.jpg" alt="猫">
8
- </figure>
9
-
10
- [Markdown]
11
- ![](cat.jpg "図 キャプション")
12
-
13
- [HTML]
14
- <figure class="f-img">
15
- <figcaption><span class="f-img-label">図</span> キャプション</figcaption>
16
- <img src="cat.jpg" alt="">
17
- </figure>
18
-
19
-
20
- [Markdown]
21
- 図 キャプション
22
-
23
- ![猫](cat.jpg "図23 Caption")
24
-
25
- [HTML]
26
- <p>図 キャプション</p>
27
- <figure class="f-img">
28
- <figcaption><span class="f-img-label">図23</span> Caption</figcaption>
29
- <img src="cat.jpg" alt="猫">
30
- </figure>
@@ -1,140 +0,0 @@
1
- [Markdown]
2
- A paragraph. multipleImages: true.
3
-
4
- Figure. Cats.
5
-
6
- ![One cat](cat1.jpg) ![Two cat](cat2.jpg)
7
-
8
- A paragraph.
9
- [HTML]
10
- <p>A paragraph. multipleImages: true.</p>
11
- <figure class="f-img-horizontal">
12
- <figcaption><span class="f-img-label">Figure<span class="f-img-label-joint">.</span></span> Cats.</figcaption>
13
- <img src="cat1.jpg" alt="One cat"><img src="cat2.jpg" alt="Two cat">
14
- </figure>
15
- <p>A paragraph.</p>
16
-
17
-
18
- [Markdown]
19
- A paragraph. multipleImages: true.
20
-
21
- ![One cat](cat1.jpg) ![Two cat](cat2.jpg)
22
-
23
- Figure. Cats.
24
-
25
- A paragraph.
26
- [HTML]
27
- <p>A paragraph. multipleImages: true.</p>
28
- <figure class="f-img-horizontal">
29
- <img src="cat1.jpg" alt="One cat"><img src="cat2.jpg" alt="Two cat">
30
- <figcaption><span class="f-img-label">Figure<span class="f-img-label-joint">.</span></span> Cats.</figcaption>
31
- </figure>
32
- <p>A paragraph.</p>
33
-
34
-
35
- [Markdown]
36
- A paragraph. multipleImages: true.
37
-
38
- Figure. Cats.
39
-
40
- ![One cat](cat1.jpg)![Two cat](cat2.jpg)![Three cat](cat3.jpg) {.style}
41
-
42
- A paragraph.
43
- [HTML]
44
- <p>A paragraph. multipleImages: true.</p>
45
- <figure class="f-img-horizontal style">
46
- <figcaption><span class="f-img-label">Figure<span class="f-img-label-joint">.</span></span> Cats.</figcaption>
47
- <img src="cat1.jpg" alt="One cat"><img src="cat2.jpg" alt="Two cat"><img src="cat3.jpg" alt="Three cat">
48
- </figure>
49
- <p>A paragraph.</p>
50
-
51
- [Markdown]
52
- A paragraph. multipleImages: true.
53
-
54
- Figure. Cats.
55
-
56
- ![One cat](cat1.jpg)
57
- ![Two cat](cat2.jpg)
58
-
59
- A paragraph.
60
- [HTML]
61
- <p>A paragraph. multipleImages: true.</p>
62
- <figure class="f-img-vertical">
63
- <figcaption><span class="f-img-label">Figure<span class="f-img-label-joint">.</span></span> Cats.</figcaption>
64
- <img src="cat1.jpg" alt="One cat">
65
- <img src="cat2.jpg" alt="Two cat">
66
- </figure>
67
- <p>A paragraph.</p>
68
-
69
- [Markdown]
70
- A paragraph. multipleImages: true.
71
-
72
- Figure. Cats.
73
-
74
- ![One cat](cat1.jpg) ![Two cat](cat2.jpg)
75
- ![Three cat](cat3.jpg)
76
-
77
- A paragraph.
78
- [HTML]
79
- <p>A paragraph. multipleImages: true.</p>
80
- <figure class="f-img-multiple">
81
- <figcaption><span class="f-img-label">Figure<span class="f-img-label-joint">.</span></span> Cats.</figcaption>
82
- <img src="cat1.jpg" alt="One cat"><img src="cat2.jpg" alt="Two cat">
83
- <img src="cat3.jpg" alt="Three cat">
84
- </figure>
85
- <p>A paragraph.</p>
86
-
87
- [Markdown]
88
- A paragraph. multipleImages: true.
89
-
90
- Figure. Cats.
91
-
92
- ![One cat](cat1.jpg) ![Two cat](cat2.jpg)
93
- ![Three cat](cat3.jpg) {.style}
94
-
95
- A paragraph.
96
- [HTML]
97
- <p>A paragraph. multipleImages: true.</p>
98
- <figure class="f-img-multiple style">
99
- <figcaption><span class="f-img-label">Figure<span class="f-img-label-joint">.</span></span> Cats.</figcaption>
100
- <img src="cat1.jpg" alt="One cat"><img src="cat2.jpg" alt="Two cat">
101
- <img src="cat3.jpg" alt="Three cat">
102
- </figure>
103
- <p>A paragraph.</p>
104
-
105
-
106
- [Markdown]
107
- A paragraph. multipleImages: true.
108
-
109
- ![One cat](cat1.jpg) ![Two cat](cat2.jpg)
110
- ![Three cat](cat3.jpg)![Four cat](cat4.jpg) {.style #id}
111
-
112
- Figure. Cats.
113
-
114
- A paragraph.
115
- [HTML]
116
- <p>A paragraph. multipleImages: true.</p>
117
- <figure class="f-img-multiple style" id="id">
118
- <img src="cat1.jpg" alt="One cat"><img src="cat2.jpg" alt="Two cat">
119
- <img src="cat3.jpg" alt="Three cat"><img src="cat4.jpg" alt="Four cat">
120
- <figcaption><span class="f-img-label">Figure<span class="f-img-label-joint">.</span></span> Cats.</figcaption>
121
- </figure>
122
- <p>A paragraph.</p>
123
-
124
-
125
-
126
- [Markdown]
127
- A paragraph. multipleImages: true.
128
-
129
- ![One cat](cat1.jpg) ![Two cat](cat2.jpg)
130
- ![Three cat](cat3.jpg)![Four cat](cat4.jpg) {.style #id}
131
-
132
- A paragraph.
133
- [HTML]
134
- <p>A paragraph. multipleImages: true.</p>
135
- <figure class="f-img-multiple style" id="id">
136
- <img src="cat1.jpg" alt="One cat"><img src="cat2.jpg" alt="Two cat">
137
- <img src="cat3.jpg" alt="Three cat"><img src="cat4.jpg" alt="Four cat">
138
- </figure>
139
- <p>A paragraph.</p>
140
-