(text: string)
| 25 | export function createMarkdownTheme(options?: { transient?: boolean }): MarkdownTheme { |
| 26 | const transient = options?.transient === true; |
| 27 | const stripHash = (text: string): string => text.replace(HEADING_HASH_PREFIX, '$1'); |
| 28 | |
| 29 | return { |
| 30 | heading: (text) => chalk.bold.hex(currentTheme.color('text'))(stripHash(text)), |
no outgoing calls
no test coverage detected