Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d5d131 commit a9f4b8eCopy full SHA for a9f4b8e
bibexport/README.md
@@ -1,5 +1,18 @@
1
# bibexport
2
3
+> **Warning**
4
+>
5
+> This filter is deprecated, as the functionality is now include
6
+> in pandoc. Use `--to=biblatex` with this filter instead:
7
8
+> ``` lua
9
+> function Pandoc (doc)
10
+> doc.meta.references = pandoc.utils.references(doc)
11
+> doc.meta.bibliography = nil
12
+> return doc
13
+> end
14
+> ```
15
+
16
Export all cited references into a single bibtex file. This is
17
most useful when writing collaboratively while using a large,
18
private bibtex collection. Using the bibexport filter allows to
@@ -35,5 +48,3 @@ redirecting stdout to a file. E.g.
35
48
or, when the filter is called in a one-off fashion
36
49
37
50
pandoc --lua-filter=bibexport.lua article.md -o /dev/null
38
-
39
0 commit comments