Open
Description
What happened?
I wanted to construct a mailto: email from a view emails which I could click on. The links generated linkified the email addresses separately from the mailto.
In the example provided. You can see that file: and mailto: form part of the link generated if used in obsidian, but they are not part of the link if used in dv.paragraph
.
This behaviour is replicated with inline format strings:
`=`
`$=`
The work around I am using is to generate a mailto link like so:
[email address](mailto:me@me.name)
DQL
No response
JS
```dataviewjs
dv.paragraph("mailto:me@me.name")
dv.paragraph("[mail](mailto:me@me.name)")
dv.paragraph("file:///etc/passwd")
dv.paragraph("http://www.test.com/")
```
`="mailto:me@me.name"`
`$="mailto:me@me.name"`
file:///etc/passwd
mailto:me@me.name
Dataview Version
0.5.68
Obsidian Version
v1.8.10
OS
Linux