mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
13 lines
415 B
TypeScript
13 lines
415 B
TypeScript
import {
|
|
transformerNotationDiff,
|
|
transformerNotationFocus,
|
|
transformerNotationWordHighlight,
|
|
} from '@shikijs/transformers';
|
|
import type { ShikiTransformer } from 'shiki';
|
|
|
|
export const shikiNotationTransformers: ShikiTransformer[] = [
|
|
transformerNotationDiff({ matchAlgorithm: 'v3' }),
|
|
transformerNotationFocus({ matchAlgorithm: 'v3' }),
|
|
transformerNotationWordHighlight({ matchAlgorithm: 'v3' }),
|
|
];
|