| 15 | } |
| 16 | |
| 17 | interface RenderMathInElementOptionsCopy { |
| 18 | delimiters: DelimiterSpec[]; |
| 19 | preProcess?: (math: string) => string; |
| 20 | ignoredTags: Set<string>; |
| 21 | ignoredClasses: string[]; |
| 22 | errorCallback: (msg: string, err: Error) => void; |
| 23 | displayMode?: boolean; |
| 24 | macros?: Record<string, string>; |
| 25 | } |
| 26 | |
| 27 | /* Note: optionsCopy is mutated by this method. If it is ever exposed in the |
| 28 | * API, we should copy it before mutating. |
nothing calls this directly
no outgoing calls
no test coverage detected