fix: Removed extra double quotes from computed style in shiki code component (#8035)
This commit is contained in:
parent
560e459246
commit
a12027b6af
2 changed files with 7 additions and 2 deletions
5
.changeset/tall-owls-act.md
Normal file
5
.changeset/tall-owls-act.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Removed extra double quotes from computed style in shiki code component
|
|
@ -74,9 +74,9 @@ const html = renderToHtml(tokens, {
|
|||
// Handle code wrapping
|
||||
// if wrap=null, do nothing.
|
||||
if (wrap === false) {
|
||||
style += '; overflow-x: auto;"';
|
||||
style += '; overflow-x: auto;';
|
||||
} else if (wrap === true) {
|
||||
style += '; overflow-x: auto; white-space: pre-wrap; word-wrap: break-word;"';
|
||||
style += '; overflow-x: auto; white-space: pre-wrap; word-wrap: break-word;';
|
||||
}
|
||||
return `<${tag} class="${className}" style="${style}" tabindex="0">${children}</${tag}>`;
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue