Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a9f4b8e

Browse files
committed
bibexport: add deprecation notice to README
1 parent 5d5d131 commit a9f4b8e

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

bibexport/README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# bibexport
22

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+
316
Export all cited references into a single bibtex file. This is
417
most useful when writing collaboratively while using a large,
518
private bibtex collection. Using the bibexport filter allows to
@@ -35,5 +48,3 @@ redirecting stdout to a file. E.g.
3548
or, when the filter is called in a one-off fashion
3649
3750
pandoc --lua-filter=bibexport.lua article.md -o /dev/null
38-
39-

0 commit comments

Comments
 (0)