First, search the help docs and this forum. Maybe your question has been answered! The debugging steps can help, too. Still stuck? Delete this line and proceed.
What I’m trying to do
Hello, I’m trying to make this works (inserting obsidian internal links in a HTML component)
<div style="display: flex; justify-content: space-between; text-transform: uppercase;">
<div style="display: flex; gap: 10px; align-items: center; text-decoration: none">
<span style="font-size: 1.1em; padding-bottom: 3px; font-weight: 600"><<</span>
<span style="font-size: 0.8em !important; letter-spacing: 2px; font-weight: bold">[[<% tp.date.now("DD MMM YYYY", -1) %>|Yesterday]]</span>
</div>
...
</div>
Things I have tried
I’ve tried using the anchor
tag, but that doesn’t create internal links, just a normal link in obsidian.
<div style="display: flex; justify-content: space-between; text-transform: uppercase;">
<a href="<% tp.date.now("DD MMM YYYY", -1) %>" class="internal-link" style="display: flex; gap: 10px; align-items: center; text-decoration: none">
<span style="font-size: 1.1em; padding-bottom: 3px; font-weight: 600"><<</span>
<span style="font-size: 0.8em !important; letter-spacing: 2px; font-weight: bold">Yesterday</span>
</a>
...
</div>
1 Like
I believe that’s not possible, as least within block elements like div
.
holroy
April 20, 2024, 1:04am
3
What kind of style are you looking to achieve with that html?
Hi, sorry for the late reply, I was trying to use flexbox css to make 2 internal links that are in the same line with blank spaces between them. It’s like one is aligned to the elft and the other to the right. Is there a way to do this in markdown?
You could use a table (see Help), or there are some multi-column solutions. I forget if they’re plugins or CSS snippets — I’m guessing snippets, maybe in conjunction with callouts.
Yered
April 22, 2024, 3:13am
6
this worked for me:
<p>Some text, <a href="Home.md" class="internal-link">Home file</a></p>
If your note is in a folder then it should look like this href=“…/folder/note.md”
Do those links appear in the linked notes’ backlinks?
I’ve tried those, but it doesn’t appear in the linked notes’ backlinks
Thanks for your reply. I will try searching for multi-column solutions or at last use a table for it.
holroy
April 24, 2024, 5:37pm
10
I’ve been a little busy lately, but what about this markup:
[[Left note]] #right [[Right note]]
With the following in a CSS snippet:
[href="#right"],
.is-live-preview .cm-line:not(.cm-active) .cm-tag-right {
display: none;
}
.is-live-preview .cm-line:not(.cm-active) > .cm-tag-right ~ .cm-hmd-internal-link,
[href="#right"] + a {
float: right;
}
In live preview and reading mode this looks something like:
system
Closed
July 23, 2024, 5:38pm
11
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.