Internal link variable doesn't work

The new variable in v0.16 for link decoration doesn’t work properly. Internal links when hovered are not underlined in reading view, if the non-hover decoration is overridden. External links work as expected.

link_decoration

Here’s the CSS I used:

body {
  --link-decoration: none;
  --link-decoration-hover: underline;
  --link-external-decoration: none;
  --link-external-decoration-hover: underline;
}

The markdown:

[[Note|internal]]
[external](https://example.org)

BTW, I still think it would be simpler (for users and devs too) to have classes that simplify selectors across reading and preview instead of tons of new limited variables.

should be fixed 0.16.3

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.