We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wiki-links
@dohliam
The code ![[image-name]] should act similarly to ![](image-name). (As it does in Obsidian's wiki-link syntax)
![[image-name]]
![](image-name)
The text stops being treated as a link when the ! is prepended, instead of embedding the media.
!
![](example.png)
![[example.png]]
Support of the official wiki-link syntax for images, which could be supported in addition to the above solution.
This would mean [[Image:example.png]] could be used to embed this media.
[[Image:example.png]]
It might also mean it could support wiki-link options, such as |#px to resize the image.
|#px
The text was updated successfully, but these errors were encountered:
Wiki links using double square bracket syntax only link local wiki articles. They are not meant for external links (full path URLs) or media.
Sorry, something went wrong.
Updated to match.
No branches or pull requests
Script name
wiki-links
Script authors
@dohliam
Expected behavior
The code
![[image-name]]
should act similarly to![](image-name)
. (As it does in Obsidian's wiki-link syntax)Actual behavior
The text stops being treated as a link when the
!
is prepended, instead of embedding the media.Steps to reproduce
![](example.png)
into a QOwnNotes note, and see the embed image in the preview panel.![[example.png]]
into a QOwnNotes note, and see that there is no embed image in the preview panel.Alternative Solution
Support of the official wiki-link syntax for images, which could be supported in addition to the above solution.
This would mean
[[Image:example.png]]
could be used to embed this media.It might also mean it could support wiki-link options, such as
|#px
to resize the image.The text was updated successfully, but these errors were encountered: