mirror of
https://github.com/bramses/bramses-highly-opinionated-vault-2023.git
synced 2025-02-26 07:53:55 +00:00
19 lines
461 B
Markdown
19 lines
461 B
Markdown
|
|
|
|
```dataview
|
|
table phone, email, birthday, relationship,
|
|
choice(
|
|
regexmatch("\w+", instagram),
|
|
elink("https://instagram.com/@" + instagram, instagram), "\-") as instagram,
|
|
choice(
|
|
regexmatch("\w+", instagram),
|
|
elink("https://twitter.com/" + twitter, twitter), "\-") as twitter,
|
|
choice(
|
|
regexmatch("\w+", instagram),
|
|
elink("https://linkedin.com/@" + linkedin, linkedin), "\-") as linkedin, url as url
|
|
from "Databases/CRM"
|
|
where file.name != "CRM"
|
|
```
|
|
|
|
|