Skip to content

Commit eab5bd1

Browse files
committedJan 20, 2025··
fix(colorized-brackets): use object style htmlStyle
1 parent 7ac62e1 commit eab5bd1

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed
 

‎packages/colorized-brackets/src/colorizeBracketTokens.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -105,18 +105,20 @@ function assignColorToToken(
105105
else {
106106
const { defaultColor = 'light', cssVariablePrefix = '--shiki-' }
107107
= shikiOptions
108-
const styles: string[] = []
108+
const styles: Record<string, string> = typeof token.htmlStyle === 'string'
109+
? {}
110+
: token.htmlStyle || {}
109111

110112
for (const [colorName, theme] of Object.entries(shikiOptions.themes)) {
111113
const themeName = typeof theme === 'string' ? theme : theme?.name
112114
const cssProperty
113115
= colorName === defaultColor
114116
? 'color'
115117
: `${cssVariablePrefix}${colorName}`
116-
styles.push(`${cssProperty}:${getColor(themes, themeName, level)}`)
118+
styles[cssProperty] = getColor(themes, themeName, level)
117119
}
118120

119-
token.htmlStyle = styles.join(';')
121+
token.htmlStyle = styles
120122
}
121123
}
122124

‎packages/colorized-brackets/test/fixtures.test.ts

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable no-console */
12
import { lstatSync, readdirSync } from 'node:fs'
23
import { readFile } from 'node:fs/promises'
34
import { join, sep } from 'node:path'
@@ -11,6 +12,8 @@ import {
1112
prettifyBrackets,
1213
} from './utils'
1314

15+
const SHOULD_LOG = false
16+
1417
/**
1518
* `tests/samples` contains code snippets that annotate expected colors with `@colors` comments.
1619
* `Y`, `P`, `B` are for the 3 levels of matched brackets (yellow, purple, blue), and `R` is for mismatched brackets (red).
@@ -63,11 +66,11 @@ describe('file-driven tests', async () => {
6366
})
6467
const actualBrackets = parseActualBrackets(html)
6568
// Logging the colored brackets is much easier to read
66-
/* eslint-disable no-console */
67-
console.log(c.bold(fileName))
68-
console.log(' Expected:', prettifyBrackets(expectedBrackets))
69-
console.log(' Actual: ', prettifyBrackets(actualBrackets))
70-
/* eslint-enable no-console */
69+
if (SHOULD_LOG) {
70+
console.log(c.bold(fileName))
71+
console.log(' Expected:', prettifyBrackets(expectedBrackets))
72+
console.log(' Actual: ', prettifyBrackets(actualBrackets))
73+
}
7174
expect(prettifyBrackets(actualBrackets, { noAnsi: true })).toEqual(
7275
prettifyBrackets(expectedBrackets, { noAnsi: true }),
7376
)

0 commit comments

Comments
 (0)
Please sign in to comment.