Skip to content

Commit 1a945d4

Browse files
authored
fix(cover): Compatible with legacy styles, fixed #677 (#678)
Please makes sure these boxes are checked before submitting your PR, thank you! * [ ] Make sure you are merging your commits to `master` branch. * [ ] Add some descriptions and refer relative issues for you PR. * [ ] DO NOT include files inside `lib` directory.
1 parent 81ec7c7 commit 1a945d4

File tree

3 files changed

+2
-15
lines changed

3 files changed

+2
-15
lines changed

src/core/render/compiler.js

-2
Original file line numberDiff line numberDiff line change
@@ -265,8 +265,6 @@ export class Compiler {
265265
result = helperTpl('tip', text)
266266
} else if (/^\?>/.test(text)) {
267267
result = helperTpl('warn', text)
268-
} else if (/^</.test(text)) {
269-
return text
270268
} else {
271269
result = `<p>${text}</p>`
272270
}

src/core/render/index.js

+1-12
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ export function renderMixin(proto) {
179179

180180
const m = html
181181
.trim()
182-
.match('<img.*?data-origin="(.*?)"[^a]+alt="(.*?)">([^<]*?)$')
182+
.match('<p><img.*?data-origin="(.*?)"[^a]+alt="(.*?)">([^<]*?)</p>$')
183183

184184
if (m) {
185185
if (m[2] === 'color') {
@@ -198,17 +198,6 @@ export function renderMixin(proto) {
198198
html = html.replace(m[0], '')
199199
}
200200

201-
// XXX: A Workaround
202-
html = html
203-
.split('\n')
204-
.map(part => {
205-
if (/^<a/.test(part)) {
206-
return part.replace('<a', '<a data-button')
207-
}
208-
return part
209-
})
210-
.join('\n')
211-
212201
this._renderTo('.cover-main', html)
213202
sticky()
214203
}

src/themes/basic/_coverpage.styl

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ section.cover
6161
max-width 500px
6262
padding 0
6363

64-
.cover-main > a[data-button]
64+
.cover-main > p:last-child a
6565
border-color var(--theme-color, $color-primary)
6666
border-radius 2rem
6767
border-style solid

0 commit comments

Comments
 (0)