( container: HTMLElement, links: string[], linkServices: LinkServices )
| 186 | } |
| 187 | |
| 188 | function renderProjectLinksWithoutPrefix( |
| 189 | container: HTMLElement, |
| 190 | links: string[], |
| 191 | linkServices: LinkServices |
| 192 | ): void { |
| 193 | renderProjectLinks(container, links, linkServices); |
| 194 | |
| 195 | Array.from(container.childNodes).forEach((node) => { |
| 196 | if (node.nodeType === Node.TEXT_NODE && node.textContent?.trim() === "+") { |
| 197 | node.remove(); |
| 198 | } |
| 199 | }); |
| 200 | } |
| 201 | |
| 202 | function createTaskModalProjectItemFromWikiLink( |
| 203 | projectString: string, |
no test coverage detected