Fix function formatting getting zettel from dir
This commit is contained in:
parent
5228a3b49e
commit
e31630a8c4
4 changed files with 9 additions and 5 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
public/
|
|
@ -65,6 +65,7 @@ next up:
|
||||||
* [ ] zettel 'lens' (preview first headline + content of linked zettel through floating window etc, on keypress)
|
* [ ] zettel 'lens' (preview first headline + content of linked zettel through floating window etc, on keypress)
|
||||||
* [ ] support *both* md-style and wiki-style links at the same time
|
* [ ] support *both* md-style and wiki-style links at the same time
|
||||||
* [ ] file/directory exception list for gathering files, which will be ignored
|
* [ ] file/directory exception list for gathering files, which will be ignored
|
||||||
|
* [ ] 'strict' mode *only* matching and following valid anchor links
|
||||||
|
|
||||||
## TODO: maintenance
|
## TODO: maintenance
|
||||||
|
|
||||||
|
|
|
@ -64,12 +64,13 @@ end
|
||||||
-- Take a list of zettel as an optional variable, without which
|
-- Take a list of zettel as an optional variable, without which
|
||||||
-- it will use the (recursive) results of the zettel_root directory.
|
-- it will use the (recursive) results of the zettel_root directory.
|
||||||
function ls.get_zettel(anchor, all)
|
function ls.get_zettel(anchor, all)
|
||||||
local zettels = all or
|
if not all then
|
||||||
ls.get_anchors_and_paths(
|
local files = ls.get_all_files(o.zettel().rootdir, true)
|
||||||
ls.get_all_files(o.zettel().rootdir, true))
|
all = ls.get_anchors_and_paths(files)
|
||||||
if not zettels then return end
|
end
|
||||||
|
if not all then return end
|
||||||
|
|
||||||
return zettels[anchor]
|
return all[anchor]
|
||||||
end
|
end
|
||||||
|
|
||||||
return ls
|
return ls
|
||||||
|
|
|
@ -167,4 +167,5 @@ describe("get_zettel", function()
|
||||||
ls.get_zettel(expected)
|
ls.get_zettel(expected)
|
||||||
assert.stub(fc).was_called_with(expected, true)
|
assert.stub(fc).was_called_with(expected, true)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
end)
|
end)
|
||||||
|
|
Loading…
Reference in a new issue