Support Pandoc citation syntax
See original GitHub issueSuggested by Mara & SkepticMystic on Discord #plugins
See https://pandoc.org/MANUAL.html#citations
We’ll need to
a) add a setting to specify a database file
b) parse [@foo, p. 33]
syntax into whatever Pandoc likes best
c) add a --citeproc
option to the CLI commands
d) …
This will be enormously helpful in conjunction with Zotero and the Obsidian citation plugin
This may be a fair bit of work. I’ll tentatively mark it for the 0.2.0 release and push it back a week or two if needed (possibly after submission to the community plugins list).
Issue Analytics
- State:
- Created 2 years ago
- Reactions:4
- Comments:13 (6 by maintainers)
Top Results From Across the Web
Pandoc User's Guide
Pandoc's enhanced version of Markdown includes syntax for tables, definition lists, metadata blocks, footnotes, citations, math, and much more.
Read more >Pandoc Markdown - Data Science with R
Pandoc's Markdown allows footnotes, using the following syntax: Here is a footnote reference,[^1] and another.[^longnote] [^1]: Here is the footnote. [^ ...
Read more >Citations - Pandoc User's Guide
Citations and references can be formatted using any style supported by the Citation Style Language, listed in the Zotero Style Repository.
Read more >pandoc_markdown(5): markdown syntax for pandoc
Markdown uses email conventions for quoting blocks of text. A block quotation is one or more paragraphs or other block elements (such as...
Read more >How to use Pandoc to produce a research paper
Research papers usually contain references to sections, figures, tables, and a bibliography. Pandoc by itself cannot easily cross-reference ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I was pointed here from the Obsidian #academic Discord. Supporting Pandoc citations would be huge for me and many others!
Hi @damienbelveze, @cobblepot1, @argenos, Using citations in this plugin is now possible!
It’s just a little fiddly at the moment. I’ve tested using BibTeX citations with the
--citeproc
filter on version 0.2.2 but it might work on earlier versions.Here’s a tutorial explaining the fiddly bits: https://github.com/OliverBalfour/obsidian-pandoc/wiki/Citations-(work-in-progress)
The main caveat is you can either get Pandoc markdown extensions like citations, or Obsidian markdown extensions/plugin features, but not both. I’ll think of ways to work around this if it becomes a pain point.
If you have any suggestions for improving this process or the documentation, I’m open to ideas.