aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-05-11 21:19:15 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2015-05-11 21:19:15 -0700
commitc6debff1f898b0fd6a36efe8397dbfd18b84cacf (patch)
treea25d9d69c9f6315f86429f4ddd04beb5a95fd2b1
parentf0817e19527dc366339c070ac814e71f6483f6f6 (diff)
downloadpandoc-c6debff1f898b0fd6a36efe8397dbfd18b84cacf.tar.gz
Removed references to `biblio-files` in pandoc.hs and README.
-rw-r--r--README6
-rw-r--r--pandoc.hs3
2 files changed, 3 insertions, 6 deletions
diff --git a/README b/README
index e6b48e5c4..a886c24ba 100644
--- a/README
+++ b/README
@@ -1002,12 +1002,12 @@ as `title`, `author`, and `date`) as well as the following:
`lot`
: include list of tables in LaTeX documents
+`bibliography`
+: bibliography to use for resolving references
+
`biblio-style`
: bibliography style in LaTeX, when used with `--natbib`
-`biblio-files`
-: bibliography files to use in LaTeX, with `--natbib` or `--biblatex`
-
`section`
: section number in man pages
diff --git a/pandoc.hs b/pandoc.hs
index 9023b2625..949bb17d2 100644
--- a/pandoc.hs
+++ b/pandoc.hs
@@ -751,9 +751,6 @@ options =
(\arg opt -> return opt{ optMetadata = addMetadata
"bibliography" (readMetaValue arg)
$ optMetadata opt
- , optVariables =
- ("biblio-files", dropExtension arg) :
- optVariables opt
})
"FILE")
""