There are multiple functions to help with the parsing of the wiki links in a string.

This is the signature of the function you can use to extract the display name from the wiki link.

  • parseWikiLinkDisplayName(value: string): string

In this example it takes the string containing the wiki link and calls the different parsing functions.

Need to work on [[Projects/Painting The House|Painting The House]] soon.
```qatt
query: |
  SELECT
  parseWikiLinkDisplayName('Need to work on [[Projects/Painting The House|Painting The House]] soon.') AS Display
template: |
  {{stringify result}}
```

will result in:

[ { "Display": "Painting The House" } ]