File tree 2 files changed +22
-2
lines changed
packages/transformers/src/shared
2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -177,6 +177,13 @@ console.log('Highlighted')
177
177
console.log('Highlighted')
178
178
console.log('Not highlighted')
179
179
```
180
+
181
+ ```ts
182
+ console.log('Not highlighted')
183
+ // [\!code highlight:1]
184
+ console.log('Highlighted')
185
+ console.log('Not highlighted')
186
+ ```
180
187
````
181
188
182
189
Renders:
@@ -188,6 +195,13 @@ console.log('Highlighted')
188
195
console .log (' Not highlighted' )
189
196
```
190
197
198
+ ``` ts
199
+ console .log (' Not highlighted' )
200
+ // [!code highlight:1]
201
+ console .log (' Highlighted' )
202
+ console .log (' Not highlighted' )
203
+ ```
204
+
191
205
---
192
206
193
207
### ` transformerNotationWordHighlight `
Original file line number Diff line number Diff line change @@ -95,8 +95,14 @@ export function createCommentNotationTransformer(
95
95
}
96
96
}
97
97
98
- for ( const line of linesToRemove )
99
- code . children . splice ( code . children . indexOf ( line ) , 1 )
98
+ for ( const line of linesToRemove ) {
99
+ const index = code . children . indexOf ( line )
100
+ const nextLine = code . children [ index + 1 ]
101
+ let removeLength = 1
102
+ if ( nextLine ?. type === 'text' && nextLine ?. value === '\n' )
103
+ removeLength = 2
104
+ code . children . splice ( index , removeLength )
105
+ }
100
106
} ,
101
107
}
102
108
}
You can’t perform that action at this time.
0 commit comments