summaryrefslogtreecommitdiff
path: root/paper/lua-filters/bibexport/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'paper/lua-filters/bibexport/README.md')
-rw-r--r--paper/lua-filters/bibexport/README.md31
1 files changed, 0 insertions, 31 deletions
diff --git a/paper/lua-filters/bibexport/README.md b/paper/lua-filters/bibexport/README.md
deleted file mode 100644
index ea1b54d..0000000
--- a/paper/lua-filters/bibexport/README.md
+++ /dev/null
@@ -1,31 +0,0 @@
-# bibexport
-
-Export all cited references into a single bibtex file. This is
-most useful when writing collaboratively while using a large,
-private bibtex collection. Using the bibexport filter allows to
-create a reduced bibtex file suitable for sharing with
-collaborators.
-
-## Prerequisites
-
-This filter expects the `bibexport` executable to be installed
-and in the user's PATH.
-
-## Usage
-
-The filter runs `bibexport` on a temporary *aux* file, creating
-the file *bibexport.bib* on success. The name of the temporary
-*.aux* file can be set via the `auxfile` meta value; if no value
-is specified, *bibexport.aux* will be used as filename.
-
-Please note that `bibexport` prints messages to stdout. Pandoc
-should be called with the `-o` or `--output` option instead of
-redirecting stdout to a file. E.g.
-
- pandoc --lua-filter=bibexport.lua article.md -o article.html
-
-or, when the filter is called in a one-off fashion
-
- pandoc --lua-filter=bibexport.lua article.md -o /dev/null
-
-