Links and embeds - Markdown Rendering
Links and embeds - Markdown Rendering
Obsidian wiki-links
Note: Flowershow is configured to work with Obsidian shortest-path-possible wiki-links, but will also work with Obsidian absolute paths.
Wiki-link with "shortest-possible" path:
[[post-1]]
Wiki-link with absolute path:
[[blog/post-1]]
Wiki-link to root README:
[[README]]
Wiki-link to README in blog folder:
[[blog/README]]
Wiki-link with special characters:
[[Post With.Special.Chars %&(1)]]
Wiki-link to heading on the same page:
[[#Obsidian embeds]]
Wiki-link to heading on another page:
[[syntax/syntax#Text Formatting]]
Wiki-link to asset:
[[assets/sample.pdf]]
Wiki-link case insensitive:
[[POST-1]]
Wiki-link to file with permalink:
[[post-with-permalink]]
Wiki-link with alias:
[[post-1|Some Alias]]
Obsidian embeds
Images
Shortest path:
![[image.jpg]]
Absolute path:
![[assets/image.jpg]]
With special characters:
![[Image With Special Chars %&(1).jpg]]
With dimensions:
![[assets/image.jpg|300x200]]

With width only:
![[assets/image.jpg|300]]
PDF embed:
![[sample.pdf]]
Video
Video embed:
![[sample.mp4]]
Audio
Audio embed:
![[sample.mp3]]
CommonMark links
Absolute path link:
[/blog/post-1](/blog/post-1.md)
Relative path link:
[syntax](syntax.md)
Relative path link with dot-slash:
[./syntax](./syntax.md)
Link to root README with absolute path:
[/README](/README.md)
Link to parent directory README:
[../README](../README.md)
External link:
[External link](https://example.com)
Link to heading:
[#Links%20in%20JSX%20blocks](#Links%20in%20JSX%20blocks)
Link to asset:
[sample](/assets/sample.pdf)
Link with spaces in path:
[with spaces](/some/path/with%20spaces.md)
Link with special characters:
[link](/blog/café&restaurant!)
CommonMark embeds
CommonMark image embeds:

CommonMark embed with dimensions:


CommonMark embed with width only:


Test Table with Wiki Link Alias
Table with wiki-links:
| Column 1 | Column 2 | Column 3 |
| -------- | --------------------------------- | -------- |
| Data 1 | [[post-1]] | Data 3 |
| Data 4 | [[post-1\|Link with Alias]] | Data 6 |
| Data 7 | [[Post With.Special.Chars %&(1)]] | Data 9 |
| Column 1 | Column 2 | Column 3 |
|---|---|---|
| Data 1 | post-1 | Data 3 |
| Data 4 | Link with Alias | Data 6 |
| Data 7 | Post With.Special.Chars %&(1) | Data 9 |