Skip to content

Commit d486eef

Browse files
authored
feat: github task lists, close #215 (#305)
1 parent b3c3180 commit d486eef

File tree

6 files changed

+75
-3
lines changed

6 files changed

+75
-3
lines changed

docs/de-de/helpers.md

+20
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,23 @@ You will get `<a href="/demo/">link</a>`html. Do not worry, you can still set ti
5656
[link](/demo ":target=_blank")
5757
[link](/demo2 ":target=_self")
5858
```
59+
60+
61+
## Github Task Lists
62+
63+
```md
64+
65+
* [ ] foo
66+
* bar
67+
* [x] baz
68+
* [] bam
69+
* [ ] bim
70+
* [ ] lim
71+
```
72+
73+
* [ ] foo
74+
* bar
75+
* [x] baz
76+
* [] bam
77+
* [ ] bim
78+
* [ ] lim

docs/helpers.md

+20
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,23 @@ You will get `<a href="/demo/">link</a>`html. Do not worry, you can still set ti
6262
```md
6363
[link](/demo ":disabled")
6464
```
65+
66+
## Github Task Lists
67+
68+
```md
69+
70+
* [ ] foo
71+
* bar
72+
* [x] baz
73+
* [] bam
74+
* [ ] bim
75+
* [ ] lim
76+
```
77+
78+
* [ ] foo
79+
* bar
80+
* [x] baz
81+
* [] bam
82+
* [ ] bim
83+
* [ ] lim
84+

docs/zh-cn/helpers.md

+20
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,23 @@ You will get `<a href="/demo/">link</a>`html. Do not worry, you can still set ti
5656
[link](/demo ":target=_blank")
5757
[link](/demo2 ":target=_self")
5858
```
59+
60+
61+
## Github Task Lists
62+
63+
```md
64+
65+
* [ ] foo
66+
* bar
67+
* [x] baz
68+
* [] bam
69+
* [ ] bim
70+
* [ ] lim
71+
```
72+
73+
* [ ] foo
74+
* bar
75+
* [x] baz
76+
* [] bam
77+
* [ ] bim
78+
* [ ] lim

src/core/render/compiler.js

+9
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,15 @@ export class Compiler {
175175
return `<img src="${url}"data-origin="${href}" alt="${text}"${attrs}>`
176176
}
177177

178+
const CHECKED_RE = /^\[([ x])\] +/
179+
origin.listitem = renderer.listitem = function (text) {
180+
const checked = CHECKED_RE.exec(text)
181+
if (checked) {
182+
text = text.replace(CHECKED_RE, `<input type="checkbox" ${checked[1] === 'x' ? 'checked' : ''} />`)
183+
}
184+
return `<li>${text}</li>\n`
185+
}
186+
178187
renderer.origin = origin
179188

180189
return renderer

src/themes/basic/_layout.css

+5
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,11 @@ kbd {
9191
vertical-align: middle;
9292
}
9393

94+
li input[type=checkbox] {
95+
margin: 0 0.2em 0.25em -1.6em;
96+
vertical-align: middle;
97+
}
98+
9499
/* navbar */
95100
.app-nav {
96101
left: 0;

src/themes/vue.css

+1-3
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,7 @@ body {
100100
}
101101

102102
.markdown-section figure,
103-
.markdown-section p,
104-
.markdown-section ul,
105-
.markdown-section ol {
103+
.markdown-section p {
106104
margin: 1.2em 0;
107105
}
108106

0 commit comments

Comments
 (0)