Added
- List the tags found in your notebook with
zk tag list
.- Many options are available to customize the output, including JSON serialization. See
zk tag list --help
.
- Many options are available to customize the output, including JSON serialization. See
- Support for LSP references to browse the backlinks of the current note, if the caret is not over a link.
- New template variables are available when generating custom Markdown links with
link-format
.filename
,path
,abs-path
andrel-path
for many path flavors.metadata
to use information (e.g.id
) from the YAML frontmatter.
- The LSP server is now matching wiki links to any part of a note's path or its title.
- Given the note
book/z5mj Information Graphics.md
with the title "Book Review of Information Graphics", the following wiki links would work from a note located underjournal/2020-09-25.md
:[[../book/z5mj]] [[book/z5mj]] [[z5mj]] [[book review information]] [[Information Graphics]]
- Given the note
- Use the
{{abs-path}}
template variable when formatting notes to print the absolute path to the note (contributed by @pstuifzand). - A new
{{substring s index length}}
template helper extracts a portion of a given string, e.g.:{{substring 'A full quote' 2 4}}
outputsfull
{{substring 'A full quote' -5 5}
outputsquote