diff options
| author | John MacFarlane <fiddlosopher@gmail.com> | 2013-08-18 23:01:23 -0700 | 
|---|---|---|
| committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-08-20 20:47:06 -0700 | 
| commit | 7048c130ec9d128dd1c9d1ddf8e7ce3c15eaf435 (patch) | |
| tree | 7fb65fb2560a9581057117131f3bb456ac405c8d /tests/Tests | |
| parent | 0e2605ffdf69b7a6a7c942a986dec4283a886e82 (diff) | |
| download | pandoc-7048c130ec9d128dd1c9d1ddf8e7ce3c15eaf435.tar.gz | |
Create Cite element even if no matching reference in the biblio.
* Add ??? as fallback text for non-resolved citations.
* Biblio:  Put references (including a header at the end of
  the document, if one exists) inside a Div with class "references".
  This gives some control over styling of references, and allows
  scripts to manipulate them.
* Markdown writer:  Print markdown citation codes, and disable
  printing of references, if `citations` extension is enabled.
NOTE:  It would be good to improve what citeproc-hs does for
a nonexistent key.
Diffstat (limited to 'tests/Tests')
| -rw-r--r-- | tests/Tests/Old.hs | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Tests/Old.hs b/tests/Tests/Old.hs index 0ba240084..8609781d0 100644 --- a/tests/Tests/Old.hs +++ b/tests/Tests/Old.hs @@ -196,7 +196,7 @@ markdownCitationTests       ++ [test "natbib" wopts "markdown-citations.txt"           "markdown-citations.txt"]    where -    ropts             = ["-r", "markdown", "-w", "markdown", "--bibliography", +    ropts             = ["-r", "markdown", "-w", "markdown-citations", "--bibliography",                           "biblio.bib", "--no-wrap"]      wopts             = ["-r", "markdown", "-w", "markdown", "--no-wrap", "--natbib"]      styleToTest style = test style (ropts ++ ["--csl", style ++ ".csl"])  | 
