| 1 | /** |
| 2 | * Matches single and multi line accessible description |
| 3 | */ |
| 4 | export const accessibilityDescrRegex = /accDescr(?:[\t ]*:([^\n\r]*)|\s*{([^}]*)})/; |
| 5 | |
| 6 | /** |
| 7 | * Matches single line accessible title |
| 8 | */ |
| 9 | export const accessibilityTitleRegex = /accTitle[\t ]*:([^\n\r]*)/; |
| 10 | |
| 11 | /** |
| 12 | * Matches a single line title |
| 13 | */ |
| 14 | export const titleRegex = /title([\t ][^\n\r]*|)/; |
| 15 |