Skip to content

Commit 4805b63

Browse files
Remove deprecated items
1 parent 585150c commit 4805b63

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

src/MarkedOptions.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export interface TokenizerThis {
1212
export type TokenizerExtensionFunction = (this: TokenizerThis, src: string, tokens: Token[] | TokensList) => Tokens.Generic | undefined;
1313

1414
export type TokenizerStartFunction = (this: TokenizerThis, src: string) => number | void;
15-
export type TokenizerMaskingFunction = (this: TokenizerThis, src: string) => string | undefined;
1615

1716
export interface TokenizerExtension {
1817
name: string;
@@ -147,9 +146,6 @@ export interface MarkedOptions<ParserOutput = string, RendererOutput = string> e
147146
block?: TokenizerExtensionFunction[];
148147
startInline?: TokenizerStartFunction[];
149148
startBlock?: TokenizerStartFunction[];
150-
hooks?: {
151-
emStrongMask?: TokenizerMaskingFunction;
152-
}[];
153149
};
154150

155151
/**

0 commit comments

Comments
 (0)