{"id":13791321,"url":"https://github.com/pandoc-ext/multibib","last_synced_at":"2026-02-13T18:41:30.579Z","repository":{"id":66922594,"uuid":"572141305","full_name":"pandoc-ext/multibib","owner":"pandoc-ext","description":"Generate multiple, topic-specific bibliographies.","archived":false,"fork":false,"pushed_at":"2025-01-26T14:51:01.000Z","size":33,"stargazers_count":17,"open_issues_count":8,"forks_count":5,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-05-12T10:41:50.469Z","etag":null,"topics":["lua","pandoc","pandoc-filter","quarto","quarto-extension"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pandoc-ext.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["tarleb"]}},"created_at":"2022-11-29T16:33:08.000Z","updated_at":"2025-02-10T15:00:26.000Z","dependencies_parsed_at":"2024-01-05T23:49:42.059Z","dependency_job_id":"a9ab247a-1696-47f6-ace1-3ac08ebe8b37","html_url":"https://github.com/pandoc-ext/multibib","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/pandoc-ext/multibib","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pandoc-ext%2Fmultibib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pandoc-ext%2Fmultibib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pandoc-ext%2Fmultibib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pandoc-ext%2Fmultibib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pandoc-ext","download_url":"https://codeload.github.com/pandoc-ext/multibib/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pandoc-ext%2Fmultibib/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29414282,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-13T06:24:03.484Z","status":"ssl_error","status_checked_at":"2026-02-13T06:23:12.830Z","response_time":78,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["lua","pandoc","pandoc-filter","quarto","quarto-extension"],"created_at":"2024-08-03T22:00:58.774Z","updated_at":"2026-02-13T18:41:30.560Z","avatar_url":"https://github.com/pandoc-ext.png","language":"Lua","readme":"# multibib\n\n[![GitHub build status][CI badge]][CI workflow]\n\nThis filter allows to create multiple bibliographies using\n`citeproc`. The content of each bibliography is controlled via\nYAML values and the file in which a bibliographic entry is\nspecified.\n\n[CI badge]: https://img.shields.io/github/actions/workflow/status/pandoc-ext/multibib/ci.yaml?logo=github\u0026branch=main\n[CI workflow]: https://github.com/pandoc-ext/multibib/actions/workflows/ci.yaml\n\nThe bibliographies must be defined in a map below the\n`bibliography` key in the document's metadata. E.g.\n\n```yaml\n---\nbibliography:\n  main: main-bibliography.bib\n  software: software.bib\n---\n```\n\nThe placement of bibliographies is controlled via special divs.\n\n``` markdown\n# References\n\n::: {#refs-main}\n:::\n\n# Software\n\n::: {#refs-software}\n:::\n```\n\nEach refs-*x* div should have a matching entry *x* in the\nmetadata. These divs are filled with citations from the respective\nbib-file.\n\n\u003e [!IMPORTANT]\n\u003e This filter works best with citation styles that use non-numeric\n\u003e citation labels.\n\n\nUsage\n------------------------------------------------------------------\n\nThe filter modifies the internal document representation; it can\nbe used with many publishing systems that are based on pandoc.\n\n### Plain pandoc\n\nPass the filter to pandoc via the `--lua-filter` (or `-L`) command\nline option.\n\n    pandoc --lua-filter multibib.lua ...\n\n### Quarto\n\nUsers of Quarto can install this filter as an extension with\n\n    quarto install extension pandoc-ext/multibib\n\nand use it by adding `multibib` to the `filters` entry\nin their YAML header. (You also need to add `validate-yaml: false`, as per [this discussion](https://github.com/quarto-dev/quarto-cli/issues/4139).)\n\n``` yaml\n---\nfilters:\n  - multibib\nvalidate-yaml: false\n---\n```\n\n### R Markdown\n\nUse `pandoc_args` to invoke the filter. See the [R Markdown\nCookbook](https://bookdown.org/yihui/rmarkdown-cookbook/lua-filters.html)\nfor details.\n\n``` yaml\n---\noutput:\n  word_document:\n    pandoc_args: ['--lua-filter=multibib.lua']\n---\n```\n\nLicense\n------------------------------------------------------------------\n\nThis pandoc Lua filter is published under the MIT license, see\nfile `LICENSE` for details.\n","funding_links":["https://github.com/sponsors/tarleb"],"categories":["Extensions"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpandoc-ext%2Fmultibib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpandoc-ext%2Fmultibib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpandoc-ext%2Fmultibib/lists"}