Markdown links are not showing as links in Reading View in the Properties panel

Background

I use Markdown links instead of Wikilinks for my Obsidian files so I can use my files in an IDE if I ever need or want to.

Problem

Putting any Markdown links in the frontmatter does not render the links. When I switch to the Reading View, the Markdown links stay as text.

I put the Markdown links in brackets and quotations as I would any Wikilink. I put the double brackets as I normally have more than one link present.

My Troubleshooting

The links in the frontmatter work correctly if I use Wikilinks. I am using a double-colon declaration (don’t know what to call this) with a Markdown link and that renders correctly. Both links are able to be queried in a dataview table as links.

My Evidence

Image01 is a screenshot of a file where I have a link to an existing file in the frontmatter (“related-note”). Near the bottom is another link declaration with double colons that calls to the same file (“bookmark”). I’m using the bottom link structure to work-around my frontmatter-link-issue but it’s not my preferred way of doing this.

Image02 is the same file as Image01 but in Reading View. Notice how the top link in the frontmatter is not a link, but text.

Image03 is the same file with a dataview query showing what table I want to display. I want to pull both the frontmatter link and the double-colon link from the same file.

Image04 is what the query produces. Notice both are queried as links.

Question

How can I get the Markdown link to render as a link in the frontmatter? Is this possible in any way besides doing the double-colon declaration as I’m doing so far?

1 Like

So I’m guessing there isn’t a fix for the meanwhile? Just use my workaround?

Which images are you referring to?

Could you include code to show what you’re using? (Enclose close the code in a forum post by having four backticks on the line before and after your text to ensure proper formatting)

My apologies, I forgot the images! I linked them below in order:




There is a vital difference here, and that is that the related-note column displays as a link, whereas the bookmark column is a link. Put the following in a note:

---
Tags: f80281
yaml: ["[Business MOC](./Business%20MOC.md)"]
---
questionUrl:: http://forum.obsidian.md/t//80281

body:: [[Business MOC]]

## Queried results

yaml:  `= this.yaml[0]` – `= typeof(this.yaml[0])`  
body: `= this.body` – `= typeof(this.body)`

```dataview
TABLE yaml, body
WHERE file = this.file
```

And it should produce something like:

As you can see both look like links, but only the inline field body is an actual link.

1 Like

Thank you for this! It’s not exactly what I wanted but I understand what you’re saying. It’s a bit more than I wanted to work with so I think for the sake of moving on with this stubborn problem of mine, I will use wikilinks. Thank you for your insight!

1 Like