doc: fix types (closes #223)

This commit is contained in:
Thomas Lambert
2023-02-20 09:04:57 +01:00
parent d72933ddbe
commit c0fe9c82e4

View File

@@ -97,7 +97,7 @@ telekasten.requirements`).
```lua ```lua
use { use {
'renerocksai/telekasten.nvim', 'renerocksai/telekasten.nvim',
requires = {'nvim-telescope/telescope.nvim} requires = {'nvim-telescope/telescope.nvim'}
} }
``` ```
@@ -109,7 +109,7 @@ telekasten.requirements`).
```lua ```lua
{ {
'renerocksai/telekasten.nvim', 'renerocksai/telekasten.nvim',
dependencies = {'nvim-telescope/telescope.nvim} dependencies = {'nvim-telescope/telescope.nvim'}
}, },
``` ```
@@ -144,9 +144,9 @@ your notes directory. If you do not specify anything, the plugin will ask you to
create the defaults directories before first use. create the defaults directories before first use.
```lua ```lua
require('telekasten').setup( require('telekasten').setup({
home = '~/zettelkasten', -- Put the name of your notes directory here home = '~/zettelkasten', -- Put the name of your notes directory here
) })
``` ```
**NOTE:** For Windows users, please indicate the path as **NOTE:** For Windows users, please indicate the path as
`C:/Users/username/zettelkasten/`. See `:h telekasten.windows` for more details `C:/Users/username/zettelkasten/`. See `:h telekasten.windows` for more details
@@ -347,8 +347,8 @@ The following links are supported:
# Media links # Media links
Use these for images, PDF files, videos. If telescope-media-files is installed, these can Use these for images, PDF files, videos. If telescope-media-files is installed,
be previewed. these can be previewed.
- ![optional title](path/to/file) ... links to the file `path/to/file` - ![optional title](path/to/file) ... links to the file `path/to/file`
``` ```