mirror of
https://github.com/mickael-menu/zk
synced 2024-11-15 12:12:56 +00:00
0eaf26483f
Finalise transfer from old repo (github.com/mickael-menu/zk) to new (github.com/zk-org/zk) Co-authored-by: tjex <tjex@tjex.net>
23 lines
362 B
Plaintext
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
|
|
|