UNPKG

vue-markdown-shiki

Version:

A Vue 3 component library that provides integration with Shiki and Markdown-it.

9 lines (8 loc) 384 B
import { RangeProcessorOptions } from '../utils/create-range-processor'; import { Processor } from '../types'; export interface HighlightProcessorOptions extends RangeProcessorOptions { hasHighlightedLinesClass?: string; hasHighlightClass?: string; highlightTag?: string; } export declare function createHighlightProcessor(options?: HighlightProcessorOptions): Processor;