(src: string)
| 948 | } |
| 949 | |
| 950 | inlineText(src: string): Tokens.Text | undefined { |
| 951 | const cap = this.rules.inline.text.exec(src); |
| 952 | if (cap) { |
| 953 | const escaped = this.lexer.state.inRawBlock; |
| 954 | return { |
| 955 | type: 'text', |
| 956 | raw: cap[0], |
| 957 | text: cap[0], |
| 958 | escaped, |
| 959 | }; |
| 960 | } |
| 961 | } |
| 962 | } |
no outgoing calls
no test coverage detected