(tagName, text)
| 23 | let excludeTags = []; |
| 24 | |
| 25 | function shouldProcessString(tagName, text) { |
| 26 | let shouldProcess = true; |
| 27 | |
| 28 | // we only want to process `@author` and `@see` tags that contain Markdown links |
| 29 | if ( (tagName === 'author' || tagName === 'see') && !text.includes('[') ) { |
| 30 | shouldProcess = false; |
| 31 | } |
| 32 | |
| 33 | return shouldProcess; |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * Process the markdown source in a doclet. The properties that should be processed are |
no outgoing calls
no test coverage detected
searching dependent graphs…