zk/tests/issue-170.tesh
Michael McDonagh 0eaf26483f
Remove references to old repo (#373)
Finalise transfer from old repo (github.com/mickael-menu/zk) to new (github.com/zk-org/zk)

Co-authored-by: tjex <tjex@tjex.net>
2024-01-10 22:47:22 +01:00

23 lines
362 B
Plaintext

# Wiki links in subdirectories are broken
# https://github.com/zk-org/zk/issues/170
$ cd blank-slug
$ touch one.md
$ echo "[[one]]" > two.md
$ mkdir my_dir
$ echo "[[one]]" > my_dir/three.md
$ zk list -qfpath
>my_dir/three.md
>one.md
>two.md
$ zk list --link-to one.md -qfpath
>my_dir/three.md
>two.md
$ zk list --linked-by my_dir/three.md -qfpath
>one.md