Kevin Bonham
Kevin Bonham
Honestly, I think having a page for the docstrings of package functions that currently have them would go a long way. The `insert` / `fill` distinction might not be captured...
To add to this - there's actually a bunch of additional documentation in the template repos that's not at `franklinjl.org`. For example, there doesn't seem to be any mention of...
Oh weird -  I guess that's the obvious place to look in the site tree.
I think this is an alternative to #64, I prefer this route
Could possibly modify the actions from here: https://www.gostaticapp.com/jekyll-github-action
One more vote for this! I got 80% of the way through rebuilding my CV in typst, which is a dream compared to LaTeX, but this might kill the effort...
Is there a way to call hayagriva within typst? Something like my workaround is already possible with the hayagriva CLI: ``` ❯ hayagriva testcite.yaml reference Joe Schmoe, and Jane Doe....
I just hacked this together using the `#yaml` function: ``` #let refs(contents) = { for (tag, fields) in contents { let auth_n = fields.author.len() let auths = () if auth_n...
OK, last one - this allows you to pass an array of citation keys, and pass a tag to include: ``` #let refs(file, entries: (), tag: none) = { if...
@ayoubelmhamdi I think you can already use multiple bibliography files by [passing an array to `#bibliography`](https://typst.app/docs/reference/meta/bibliography/).