diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,3 +1,12 @@
+pandoc-citeproc (0.16.1)
+
+  * Add --columns option.  This allows users to specify the column
+    width for text wrapping in --bib2yaml output.
+  * Use --columns=0 in biblio2yaml tests to avoid problems with
+    different wrapping in different libyaml versions.
+  * man page: remove references to obsolete pandoc_markdown(5) man page.
+  * man page: add info on how to set metadata (#378).
+
 pandoc-citeproc (0.16.0.2)
 
   * Remove need for HTTP access in test for #213.
diff --git a/pandoc-citeproc.cabal b/pandoc-citeproc.cabal
--- a/pandoc-citeproc.cabal
+++ b/pandoc-citeproc.cabal
@@ -1,5 +1,5 @@
 name:               pandoc-citeproc
-version:            0.16.0.2
+version:            0.16.1
 cabal-version:      1.12
 synopsis:           Supports using pandoc with citeproc
 
@@ -102,6 +102,7 @@
     ghc-prof-options: -fprof-auto-exported
     build-depends:    containers, directory, mtl,
                       bytestring, filepath,
+                      network < 3.0,
                       pandoc-types >= 1.17.3 && < 1.18,
                       pandoc >= 1.16 && < 2.7,
                       tagsoup,
@@ -112,7 +113,7 @@
                       unordered-containers >= 0.2 && < 0.3,
                       data-default,
                       setenv >= 0.1 && < 0.2,
-                      split, yaml >= 0.8.32
+                      split, yaml >= 0.11
     if impl(ghc < 8.0)
       build-depends: semigroups == 0.18.*
     if impl(ghc < 8.4)
@@ -155,8 +156,15 @@
                       pandoc-types >= 1.17.3 && < 1.18,
                       pandoc >= 1.16 && < 2.7,
                       aeson,
-                      aeson-pretty >= 0.8, yaml, bytestring, syb, attoparsec, text,
-                      filepath
+                      aeson-pretty >= 0.8,
+                      yaml >= 0.11,
+                      libyaml,
+                      bytestring,
+                      syb,
+                      attoparsec,
+                      text,
+                      filepath,
+                      safe
     if impl(ghc < 8.0)
       build-depends: semigroups == 0.18.*
     if impl(ghc < 8.4)
@@ -185,7 +193,7 @@
                   pandoc >= 1.16 && < 2.7,
                   filepath, containers,
                   bytestring, pandoc-citeproc, process, temporary >= 1.1,
-                  yaml >= 0.8.32, containers >= 0.4, vector >= 0.10
+                  yaml >= 0.11, containers >= 0.4, vector >= 0.10
   if impl(ghc < 8.0)
     build-depends: semigroups == 0.18.*
   if impl(ghc < 8.4)
@@ -207,7 +215,7 @@
                   pandoc-types >= 1.17.3 && < 1.18, mtl,
                   pandoc >= 1.16 && < 2.7, filepath, containers,
                   bytestring, pandoc-citeproc, process, temporary >= 1.1,
-                  yaml >= 0.8.32
+                  yaml >= 0.11
   ghc-options:    -funbox-strict-fields -Wall -fno-warn-unused-do-bind -threaded
   if impl(ghc < 8.0)
     build-depends: semigroups == 0.18.*
diff --git a/pandoc-citeproc.hs b/pandoc-citeproc.hs
--- a/pandoc-citeproc.hs
+++ b/pandoc-citeproc.hs
@@ -18,7 +18,8 @@
 import qualified Data.Text                        as T
 import           Data.Text.Encoding               (encodeUtf8)
 import           Data.Version                     (showVersion)
-import           Data.Yaml.Builder                (toByteString)
+import           Data.Yaml.Builder                (toByteStringWith, setWidth)
+import           Text.Libyaml                     (defaultFormatOptions)
 import           Paths_pandoc_citeproc            (version)
 import           System.Console.GetOpt
 import           System.Environment               (getArgs)
@@ -30,6 +31,7 @@
 import           Text.CSL.Input.Bibutils          (BibFormat (..),
                                                    readBiblioString)
 import           Text.CSL.Pandoc                  (processCites')
+import           Safe                             (readMay)
 import           Text.CSL.Reference               (Literal (..),
                                                    Reference (refId))
 import           Text.Pandoc.JSON                 hiding (Format)
@@ -63,6 +65,16 @@
         exitWith (ExitFailure 1)) $
     if Bib2YAML `elem` flags || Bib2JSON `elem` flags
        then do
+         colwidth <- case Prelude.take 1 $
+                          reverse [readMay n | Columns n <- flags] of
+                          []        -> return $ Just 80
+                          [Just 0]  -> return $ Nothing
+                          [Just x]  -> return $ Just x
+                          _         -> do
+                            UTF8.hPutStrLn stderr $
+                              "--columns must be followed by a number"
+                            exitWith $ ExitFailure 7
+         let fmtOpts = setWidth colwidth defaultFormatOptions
          let mbformat = case [f | Format f <- flags] of
                              [x] -> readFormat x
                              _   -> Nothing
@@ -72,7 +84,7 @@
                            Nothing  -> do
                               UTF8.hPutStrLn stderr $ usageInfo
                                 ("Unknown format\n" ++ header) options
-                              exitWith $ ExitFailure 3
+                              exitWith $ ExitFailure 4
          bibstring <- case args of
                            [] -> UTF8.getContents
                            xs -> mconcat <$> mapM UTF8.readFile xs
@@ -81,7 +93,7 @@
            if Bib2YAML `elem` flags
               then outputYamlBlock .
                    B8.intercalate (B.singleton 10) .
-                   map (unescapeTags . toByteString . (:[]))
+                   map (unescapeTags . toByteStringWith fmtOpts . (:[]))
               else B8.putStrLn . unescapeUnicode . B.concat . BL.toChunks .
                 encodePretty' defConfig{ confIndent = Spaces 2
                                        , confCompare = compare
@@ -135,6 +147,7 @@
     | Version
     | Convert
     | Format String
+    | Columns String
     | Bib2YAML
     | Bib2JSON
     | Quiet
@@ -150,6 +163,7 @@
   , Option ['j'] ["bib2json"] (NoArg Bib2JSON) "convert bibliography to JSON"
   , Option ['q'] ["quiet"] (NoArg Quiet) "silence all warnings"
   , Option ['f'] ["format"] (ReqArg Format "FORMAT") "bibliography format"
+  , Option ['c'] ["columns"] (ReqArg Columns "NUMBER") "column width (or 0)"
   ]
 
 warnDuplicateKeys :: [Reference] -> IO [Reference]
diff --git a/stack.yaml b/stack.yaml
--- a/stack.yaml
+++ b/stack.yaml
@@ -8,7 +8,9 @@
     static: false
 packages:
 - '.'
-extra-deps: []
+extra-deps:
+- pandoc-2.6
+- ipynb-0.1
 ghc-options:
    "$locals": -fhide-source-paths
 resolver: lts-13.5
diff --git a/tests/biblio2yaml/aksin.biblatex b/tests/biblio2yaml/aksin.biblatex
--- a/tests/biblio2yaml/aksin.biblatex
+++ b/tests/biblio2yaml/aksin.biblatex
@@ -63,8 +63,7 @@
     given: Erhan
   issued:
   - year: 2006
-  title: Effect of immobilization on catalytic characteristics of saturated Pd-N-heterocyclic
-    carbenes in Mizoroki-Heck reactions
+  title: Effect of immobilization on catalytic characteristics of saturated Pd-N-heterocyclic carbenes in Mizoroki-Heck reactions
   container-title: J. Organomet. Chem.
   page: 3027-3036
   volume: '691'
diff --git a/tests/biblio2yaml/almendro.biblatex b/tests/biblio2yaml/almendro.biblatex
--- a/tests/biblio2yaml/almendro.biblatex
+++ b/tests/biblio2yaml/almendro.biblatex
@@ -57,9 +57,7 @@
   - year: 1998
   title: Elektromagnetisches Signalhorn
   jurisdiction: France; United Kingdom; Germany
-  annote: This is a patent entry with a location field. The number is given in the
-    number field. Note the format of the location field in the database file. Compare
-    laufenberg, sorace, and kowalik
+  annote: This is a patent entry with a location field. The number is given in the number field. Note the format of the location field in the database file. Compare laufenberg, sorace, and kowalik
   number: EU-29702195U
   language: de-DE
 ...
diff --git a/tests/biblio2yaml/angenendt.biblatex b/tests/biblio2yaml/angenendt.biblatex
--- a/tests/biblio2yaml/angenendt.biblatex
+++ b/tests/biblio2yaml/angenendt.biblatex
@@ -53,7 +53,6 @@
   container-title: Revue d’Histoire Ecclésiastique
   page: 431-456, 791-823
   volume: '97'
-  annote: A German article in a French journal. Apart from that, a typical article
-    entry. Note the indextitle field
+  annote: A German article in a French journal. Apart from that, a typical article entry. Note the indextitle field
   language: de-DE
 ...
diff --git a/tests/biblio2yaml/aristotle-rhetoric.biblatex b/tests/biblio2yaml/aristotle-rhetoric.biblatex
--- a/tests/biblio2yaml/aristotle-rhetoric.biblatex
+++ b/tests/biblio2yaml/aristotle-rhetoric.biblatex
@@ -65,8 +65,7 @@
   title-short: Rhetoric
   publisher: Cambridge University Press
   number-of-volumes: '3'
-  annote: A commented edition. Note the concatenation of the editor and commentator
-    fields as well as the volumes, sorttitle, and indextitle fields
+  annote: A commented edition. Note the concatenation of the editor and commentator fields as well as the volumes, sorttitle, and indextitle fields
   keyword: primary
   language: en-GB
 ...
diff --git a/tests/biblio2yaml/article.biblatex b/tests/biblio2yaml/article.biblatex
--- a/tests/biblio2yaml/article.biblatex
+++ b/tests/biblio2yaml/article.biblatex
@@ -112,8 +112,7 @@
   - year: 2013
     month: 7
     day: 29
-  title: 'An article entry with the required and all optional fields: The subtitle.
-    The titleaddon'
+  title: 'An article entry with the required and all optional fields: The subtitle. The titleaddon'
   title-short: An article entry with the required and all optional fields
   container-title: 'The Journaltitle: The Journalsubtitle'
   collection-title: new series
diff --git a/tests/biblio2yaml/averroes-bland.biblatex b/tests/biblio2yaml/averroes-bland.biblatex
--- a/tests/biblio2yaml/averroes-bland.biblatex
+++ b/tests/biblio2yaml/averroes-bland.biblatex
@@ -63,15 +63,13 @@
     given: Kalman P.
   issued:
   - year: 1982
-  title: The epistle on the possibility of conjunction with the active intellect by
-    Ibn Rushd with the commentary of Moses Narboni
+  title: The epistle on the possibility of conjunction with the active intellect by Ibn Rushd with the commentary of Moses Narboni
   title-short: Possibility of conjunction
   collection-title: 'Moreshet: Studies in Jewish history, literature and thought'
   collection-number: '7'
   publisher: Jewish Theological Seminary of America
   publisher-place: New York
-  annote: A book entry with a series and a number. Note the concatenation of the editor
-    and translator fields as well as the indextitle field
+  annote: A book entry with a series and a number. Note the concatenation of the editor and translator fields as well as the indextitle field
   keyword: primary
   language: en-US
 ...
diff --git a/tests/biblio2yaml/averroes-hannes.biblatex b/tests/biblio2yaml/averroes-hannes.biblatex
--- a/tests/biblio2yaml/averroes-hannes.biblatex
+++ b/tests/biblio2yaml/averroes-hannes.biblatex
@@ -65,14 +65,11 @@
     given: Ludwig
   issued:
   - year: 1892
-  title: 'Des Averroës Abhandlung: “Über die Möglichkeit der Conjunktion” oder “Über
-    den materiellen Intellekt”'
+  title: 'Des Averroës Abhandlung: “Über die Möglichkeit der Conjunktion” oder “Über den materiellen Intellekt”'
   title-short: Über die Möglichkeit der Conjunktion
   publisher: C. A. Kaemmerer
   publisher-place: Halle an der Saale
-  annote: An annotated edition. Note the concatenation of the editor, translator,
-    and annotator fields. Also note the shorttitle, indextitle, sorttitle, and indexsorttitle
-    fields
+  annote: An annotated edition. Note the concatenation of the editor, translator, and annotator fields. Also note the shorttitle, indextitle, sorttitle, and indexsorttitle fields
   keyword: primary
   language: de-DE
 ...
diff --git a/tests/biblio2yaml/averroes-hercz.biblatex b/tests/biblio2yaml/averroes-hercz.biblatex
--- a/tests/biblio2yaml/averroes-hercz.biblatex
+++ b/tests/biblio2yaml/averroes-hercz.biblatex
@@ -65,14 +65,11 @@
     given: J.
   issued:
   - year: 1869
-  title: 'Drei Abhandlungen über die Conjunction des separaten Intellects mit dem
-    Menschen: Von Averroes (Vater und Sohn), aus dem Arabischen übersetzt von Samuel
-    Ibn Tibbon'
+  title: 'Drei Abhandlungen über die Conjunction des separaten Intellects mit dem Menschen: Von Averroes (Vater und Sohn), aus dem Arabischen übersetzt von Samuel Ibn Tibbon'
   title-short: Drei Abhandlungen
   publisher: S. Hermann
   publisher-place: Berlin
-  annote: A book entry. Note the concatenation of the editor and translator fields
-    as well as the indextitle and indexsorttitle fields
+  annote: A book entry. Note the concatenation of the editor and translator fields as well as the indextitle and indexsorttitle fields
   keyword: primary
   language: de-DE
 ...
diff --git a/tests/biblio2yaml/baez-article.biblatex b/tests/biblio2yaml/baez-article.biblatex
--- a/tests/biblio2yaml/baez-article.biblatex
+++ b/tests/biblio2yaml/baez-article.biblatex
@@ -61,9 +61,7 @@
   page: 423-491
   version: '3'
   volume: '12'
-  annote: An article with eprint and eprinttype fields. Note that the arXiv reference
-    is transformed into a clickable link if hyperref support has been enabled. Compare
-    baez/online, which is the same item given as an online entry
+  annote: An article with eprint and eprinttype fields. Note that the arXiv reference is transformed into a clickable link if hyperref support has been enabled. Compare baez/online, which is the same item given as an online entry
   URL: http://arxiv.org/abs/math/0307200v3
   language: en-US
 ...
diff --git a/tests/biblio2yaml/baez-online.biblatex b/tests/biblio2yaml/baez-online.biblatex
--- a/tests/biblio2yaml/baez-online.biblatex
+++ b/tests/biblio2yaml/baez-online.biblatex
@@ -57,8 +57,7 @@
   title: 'Higher-dimensional algebra V: 2-groups'
   title-short: Higher-dimensional algebra V
   version: '3'
-  annote: An online reference from arXiv. Note the eprint and eprinttype fields. Compare
-    baez/article which is the same item given as an article entry with eprint information
+  annote: An online reference from arXiv. Note the eprint and eprinttype fields. Compare baez/article which is the same item given as an article entry with eprint information
   URL: http://arxiv.org/abs/math/0307200v3
   language: en-US
 ...
diff --git a/tests/biblio2yaml/book-averroes.biblatex b/tests/biblio2yaml/book-averroes.biblatex
--- a/tests/biblio2yaml/book-averroes.biblatex
+++ b/tests/biblio2yaml/book-averroes.biblatex
@@ -63,16 +63,13 @@
     given: Kalman P.
   issued:
   - year: 1982
-  title: The epistle on the possibility of conjunction with the active intellect by
-    Ibn Rushd with the commentary of Moses Narboni
+  title: The epistle on the possibility of conjunction with the active intellect by Ibn Rushd with the commentary of Moses Narboni
   title-short: Possibility of conjunction
-  collection-title: '<span class="nocase">Moreshet: Studies in Jewish History, Literature
-    and Thought</span>'
+  collection-title: '<span class="nocase">Moreshet: Studies in Jewish History, Literature and Thought</span>'
   collection-number: '7'
   publisher: Jewish Theological Seminary of America
   publisher-place: New York
-  annote: A book entry with a series and a number. Note the concatenation of the editor
-    and translator fields as well as the indextitle field
+  annote: A book entry with a series and a number. Note the concatenation of the editor and translator fields as well as the indextitle field
   keyword: primary
   language: en-US
 
@@ -88,14 +85,11 @@
     given: Ludwig
   issued:
   - year: 1892
-  title: 'Des Averroës Abhandlung: “Über die Möglichkeit der Conjunktion” oder “Über
-    den materiellen Intellekt”'
+  title: 'Des Averroës Abhandlung: “Über die Möglichkeit der Conjunktion” oder “Über den materiellen Intellekt”'
   title-short: Über die Möglichkeit der Conjunktion
   publisher: C. A. Kaemmerer
   publisher-place: Halle an der Saale
-  annote: An annotated edition. Note the concatenation of the editor, translator,
-    and annotator fields. Also note the shorttitle, indextitle, sorttitle, and indexsorttitle
-    fields
+  annote: An annotated edition. Note the concatenation of the editor, translator, and annotator fields. Also note the shorttitle, indextitle, sorttitle, and indexsorttitle fields
   keyword: primary
   language: de-DE
 
@@ -111,14 +105,11 @@
     given: J.
   issued:
   - year: 1869
-  title: 'Drei Abhandlungen über die Conjunction des separaten Intellects mit dem
-    Menschen: Von Averroes (Vater und Sohn), aus dem Arabischen übersetzt von Samuel
-    Ibn Tibbon'
+  title: 'Drei Abhandlungen über die Conjunction des separaten Intellects mit dem Menschen: Von Averroes (Vater und Sohn), aus dem Arabischen übersetzt von Samuel Ibn Tibbon'
   title-short: Drei Abhandlungen
   publisher: S. Hermann
   publisher-place: Berlin
-  annote: A book entry. Note the concatenation of the editor and translator fields
-    as well as the indextitle and indexsorttitle fields
+  annote: A book entry. Note the concatenation of the editor and translator fields as well as the indextitle and indexsorttitle fields
   keyword: primary
   language: de-DE
 ...
diff --git a/tests/biblio2yaml/book-coleridge.biblatex b/tests/biblio2yaml/book-coleridge.biblatex
--- a/tests/biblio2yaml/book-coleridge.biblatex
+++ b/tests/biblio2yaml/book-coleridge.biblatex
@@ -38,15 +38,12 @@
   issued:
   - year: 1983
   title: The collected works of Samuel Taylor Coleridge
-  volume-title: Biographia literaria, or Biographical sketches of my literary life
-    and opinions
+  volume-title: Biographia literaria, or Biographical sketches of my literary life and opinions
   collection-title: Bollingen series
   collection-number: '75'
   publisher: Routledge and Kegan Paul
   publisher-place: London
   volume: '7.2'
-  annote: One (partial) volume of a multivolume book. This is a book entry with a
-    volume and a part field which explicitly refers to the second (physical) part
-    of the seventh (logical) volume. Also note the series and number fields
+  annote: One (partial) volume of a multivolume book. This is a book entry with a volume and a part field which explicitly refers to the second (physical) part of the seventh (logical) volume. Also note the series and number fields
   language: en-GB
 ...
diff --git a/tests/biblio2yaml/book-vazques-de-parga.biblatex b/tests/biblio2yaml/book-vazques-de-parga.biblatex
--- a/tests/biblio2yaml/book-vazques-de-parga.biblatex
+++ b/tests/biblio2yaml/book-vazques-de-parga.biblatex
@@ -36,7 +36,6 @@
   publisher-place: Pamplona
   number-of-volumes: '3'
   note: Ed. facs. de la realizada en 1948–49
-  annote: A multivolume book cited as a whole. This is a book entry with volumes,
-    note, sorttitle, and indextitle fields
+  annote: A multivolume book cited as a whole. This is a book entry with volumes, note, sorttitle, and indextitle fields
   language: es-ES
 ...
diff --git a/tests/biblio2yaml/brandt.biblatex b/tests/biblio2yaml/brandt.biblatex
--- a/tests/biblio2yaml/brandt.biblatex
+++ b/tests/biblio2yaml/brandt.biblatex
@@ -73,8 +73,6 @@
   publisher: Klett-Cotta
   publisher-place: Stuttgart
   page: 884-917
-  annote: An incollection entry with a series and a number. Note the format of the
-    printed name and compare the useprefix option in the options field as well as
-    vangennep. Also note the indextitle, and indexsorttitle fields
+  annote: An incollection entry with a series and a number. Note the format of the printed name and compare the useprefix option in the options field as well as vangennep. Also note the indextitle, and indexsorttitle fields
   language: de-DE
 ...
diff --git a/tests/biblio2yaml/britannica.biblatex b/tests/biblio2yaml/britannica.biblatex
--- a/tests/biblio2yaml/britannica.biblatex
+++ b/tests/biblio2yaml/britannica.biblatex
@@ -69,10 +69,6 @@
   publisher-place: Chicago, Ill.
   number-of-volumes: '32'
   edition: '15'
-  annote: This is a collection entry for an encyclopedia. Note the useeditor option
-    in the options field as well as the sorttitle field. We want this entry to be
-    cited and alphabetized by title even though there is an editor. In addition to
-    that, we want the title to be alphabetized under ‘E’ rather than ‘T’. Also note
-    the label field which is provided for author-year citation styles
+  annote: This is a collection entry for an encyclopedia. Note the useeditor option in the options field as well as the sorttitle field. We want this entry to be cited and alphabetized by title even though there is an editor. In addition to that, we want the title to be alphabetized under ‘E’ rather than ‘T’. Also note the label field which is provided for author-year citation styles
   language: en-GB
 ...
diff --git a/tests/biblio2yaml/chiu.biblatex b/tests/biblio2yaml/chiu.biblatex
--- a/tests/biblio2yaml/chiu.biblatex
+++ b/tests/biblio2yaml/chiu.biblatex
@@ -58,13 +58,10 @@
     given: We Min
   issued:
   - year: 1978
-  title: A hybrid hierarchical model of a multiple virtual storage (MVS) operating
-    system
+  title: A hybrid hierarchical model of a multiple virtual storage (MVS) operating system
   publisher: IBM
   genre: research report
-  annote: This is a report entry for a research report. Note the format of the type
-    field in the database file which uses a localization key. The number of the report
-    is given in the number field. Also note the sorttitle and indextitle fields
+  annote: This is a report entry for a research report. Note the format of the type field in the database file which uses a localization key. The number of the report is given in the number field. Also note the sorttitle and indextitle fields
   number: RC-6947
   language: en-US
 ...
diff --git a/tests/biblio2yaml/cicero.biblatex b/tests/biblio2yaml/cicero.biblatex
--- a/tests/biblio2yaml/cicero.biblatex
+++ b/tests/biblio2yaml/cicero.biblatex
@@ -68,8 +68,6 @@
   title-short: De natura deorum
   publisher: Reclam
   publisher-place: Stuttgart
-  annote: A bilingual edition of Cicero’s *De natura deorum*, with a German translation.
-    Note the format of the language field in the database file, the concatenation
-    of the editor and translator fields, and the afterword field
+  annote: A bilingual edition of Cicero’s *De natura deorum*, with a German translation. Note the format of the language field in the database file, the concatenation of the editor and translator fields, and the afterword field
   language: de-DE
 ...
diff --git a/tests/biblio2yaml/cms.biblatex b/tests/biblio2yaml/cms.biblatex
--- a/tests/biblio2yaml/cms.biblatex
+++ b/tests/biblio2yaml/cms.biblatex
@@ -58,17 +58,12 @@
   type: book
   issued:
   - year: 2003
-  title: 'The Chicago manual of style: The essential guide for writers, editors,
-    and publishers'
+  title: 'The Chicago manual of style: The essential guide for writers, editors, and publishers'
   title-short: Chicago manual of style
   publisher: University of Chicago Press
   publisher-place: Chicago, Ill.
   edition: '15'
-  annote: This is a manual entry without an author or editor. Note the label field
-    in the database file which is provided for author-year citation styles. Also note
-    the sorttitle and indextitle fields. By default, all entries without an author
-    or editor are alphabetized by title but we want this entry to be alphabetized
-    under ‘C’ rather than ‘T’. There’s also an isbn field
+  annote: This is a manual entry without an author or editor. Note the label field in the database file which is provided for author-year citation styles. Also note the sorttitle and indextitle fields. By default, all entries without an author or editor are alphabetized by title but we want this entry to be alphabetized under ‘C’ rather than ‘T’. There’s also an isbn field
   ISBN: 0-226-10403-6
   language: en-US
 ...
diff --git a/tests/biblio2yaml/coleridge.biblatex b/tests/biblio2yaml/coleridge.biblatex
--- a/tests/biblio2yaml/coleridge.biblatex
+++ b/tests/biblio2yaml/coleridge.biblatex
@@ -65,15 +65,12 @@
   issued:
   - year: 1983
   title: The collected works of Samuel Taylor Coleridge
-  volume-title: Biographia literaria, or Biographical sketches of my literary life
-    and opinions
+  volume-title: Biographia literaria, or Biographical sketches of my literary life and opinions
   collection-title: Bollingen series
   collection-number: '75'
   publisher: Routledge and Kegan Paul
   publisher-place: London
   volume: '7.2'
-  annote: One (partial) volume of a multivolume book. This is a book entry with a
-    volume and a part field which explicitly refers to the second (physical) part
-    of the seventh (logical) volume. Also note the series and number fields
+  annote: One (partial) volume of a multivolume book. This is a book entry with a volume and a part field which explicitly refers to the second (physical) part of the seventh (logical) volume. Also note the series and number fields
   language: en-GB
 ...
diff --git a/tests/biblio2yaml/companion.biblatex b/tests/biblio2yaml/companion.biblatex
--- a/tests/biblio2yaml/companion.biblatex
+++ b/tests/biblio2yaml/companion.biblatex
@@ -57,7 +57,6 @@
   publisher-place: Reading, Mass.
   number-of-pages: '528'
   edition: '1'
-  annote: A book with three authors. Note the formatting of the author list. By default,
-    only the first name is reversed in the bibliography
+  annote: A book with three authors. Note the formatting of the author list. By default, only the first name is reversed in the bibliography
   language: en-US
 ...
diff --git a/tests/biblio2yaml/cotton.biblatex b/tests/biblio2yaml/cotton.biblatex
--- a/tests/biblio2yaml/cotton.biblatex
+++ b/tests/biblio2yaml/cotton.biblatex
@@ -56,7 +56,6 @@
   publisher: Wiley
   publisher-place: Chichester
   edition: '6'
-  annote: A book entry with author authors and an edition field. By default, long
-    author and editor lists are automatically truncated. This is configurable
+  annote: A book entry with author authors and an edition field. By default, long author and editor lists are automatically truncated. This is configurable
   language: en-GB
 ...
diff --git a/tests/biblio2yaml/ctan.biblatex b/tests/biblio2yaml/ctan.biblatex
--- a/tests/biblio2yaml/ctan.biblatex
+++ b/tests/biblio2yaml/ctan.biblatex
@@ -59,11 +59,7 @@
     day: 1
   title: 'CTAN: The Comprehensive TeX Archive Network'
   title-short: CTAN
-  annote: This is an online entry. The <span style="font-variant:small-caps;">url</span>,
-    which is given in the url field, is transformed into a clickable link if hyperref
-    support has been enabled. Note the format of the urldate field (yyyy-mm-dd) in
-    the database file. Also note the label field which may be used as a fallback by
-    citation styles which need an author and/or a year
+  annote: This is an online entry. The <span style="font-variant:small-caps;">url</span>, which is given in the url field, is transformed into a clickable link if hyperref support has been enabled. Note the format of the urldate field (yyyy-mm-dd) in the database file. Also note the label field which may be used as a fallback by citation styles which need an author and/or a year
   URL: http://www.ctan.org
   language: en-US
 ...
diff --git a/tests/biblio2yaml/dates.biblatex b/tests/biblio2yaml/dates.biblatex
--- a/tests/biblio2yaml/dates.biblatex
+++ b/tests/biblio2yaml/dates.biblatex
@@ -97,8 +97,7 @@
   issued:
   - year: 1999
     month: 8
-  title: Year and month, biblatex style; note that biblatex does not have a “day”
-    field
+  title: Year and month, biblatex style; note that biblatex does not have a “day” field
   container-title: Journal
 
 - id: dates
diff --git a/tests/biblio2yaml/doody.biblatex b/tests/biblio2yaml/doody.biblatex
--- a/tests/biblio2yaml/doody.biblatex
+++ b/tests/biblio2yaml/doody.biblatex
@@ -75,8 +75,7 @@
   page: 212-225
   volume: '4'
   issue: '3'
-  annote: An article entry cited as an excerpt from a collection entry. Note the format
-    of the related and relatedstring fields
+  annote: An article entry cited as an excerpt from a collection entry. Note the format of the related and relatedstring fields
   language: en-US
 
 - id: matuz:doody
@@ -91,7 +90,6 @@
   publisher-place: Detroit
   page: 204-208
   volume: '61'
-  annote: A collection entry providing the excerpt information for the doody entry.
-    Note the format of the pages field
+  annote: A collection entry providing the excerpt information for the doody entry. Note the format of the pages field
   language: en-US
 ...
diff --git a/tests/biblio2yaml/escapedquotes.biblatex b/tests/biblio2yaml/escapedquotes.biblatex
--- a/tests/biblio2yaml/escapedquotes.biblatex
+++ b/tests/biblio2yaml/escapedquotes.biblatex
@@ -38,7 +38,6 @@
     given: Harry
   - family: Volkening
     given: Andrew
-  title: Pan-canadian evaluation of irreversible compression ratios ("lossy" compression)
-    for development of national guidelines
+  title: Pan-canadian evaluation of irreversible compression ratios ("lossy" compression) for development of national guidelines
   container-title: Journal of digital imaging
 ...
diff --git a/tests/biblio2yaml/gaonkar.biblatex b/tests/biblio2yaml/gaonkar.biblatex
--- a/tests/biblio2yaml/gaonkar.biblatex
+++ b/tests/biblio2yaml/gaonkar.biblatex
@@ -46,8 +46,7 @@
   title: Alternative modernities
   publisher: Duke University Press
   publisher-place: Durham; London
-  annote: This is a collection entry. Note the format of the location field in the
-    database file as well as the isbn field
+  annote: This is a collection entry. Note the format of the location field in the database file as well as the isbn field
   ISBN: 0-822-32714-7
   language: en-US
 ...
diff --git a/tests/biblio2yaml/geer.biblatex b/tests/biblio2yaml/geer.biblatex
--- a/tests/biblio2yaml/geer.biblatex
+++ b/tests/biblio2yaml/geer.biblatex
@@ -50,14 +50,11 @@
     dropping-particle: de
   issued:
   - year: 1985
-  title: 'Earl, saint, bishop, skald – and music: The Orkney earldom of the twelfth
-    century. A musicological study'
+  title: 'Earl, saint, bishop, skald – and music: The Orkney earldom of the twelfth century. A musicological study'
   title-short: Earl, saint, bishop, skald – and music
   publisher: Uppsala Universitet
   publisher-place: Uppsala
   genre: PhD thesis
-  annote: This is a typical thesis entry for a PhD thesis. Note the type field in
-    the database file which uses a localization key. Also note the format of the printed
-    name and compare the useprefix option in the options field as well as vangennep
+  annote: This is a typical thesis entry for a PhD thesis. Note the type field in the database file which uses a localization key. Also note the format of the printed name and compare the useprefix option in the options field as well as vangennep
   language: en-GB
 ...
diff --git a/tests/biblio2yaml/gerhardt.biblatex b/tests/biblio2yaml/gerhardt.biblatex
--- a/tests/biblio2yaml/gerhardt.biblatex
+++ b/tests/biblio2yaml/gerhardt.biblatex
@@ -51,7 +51,6 @@
   title-short: Federal appointments process
   publisher: Duke University Press
   publisher-place: Durham; London
-  annote: This is a book entry. Note the format of the location field as well as the
-    sorttitle and indextitle fields
+  annote: This is a book entry. Note the format of the location field as well as the sorttitle and indextitle fields
   language: en-US
 ...
diff --git a/tests/biblio2yaml/gillies.biblatex b/tests/biblio2yaml/gillies.biblatex
--- a/tests/biblio2yaml/gillies.biblatex
+++ b/tests/biblio2yaml/gillies.biblatex
@@ -57,7 +57,6 @@
   collection-title: new series
   page: 46-67
   volume: '9'
-  annote: An article entry with a series and a volume field. Note that format of the
-    series field in the database file
+  annote: An article entry with a series and a volume field. Note that format of the series field in the database file
   language: en-GB
 ...
diff --git a/tests/biblio2yaml/gonzalez.biblatex b/tests/biblio2yaml/gonzalez.biblatex
--- a/tests/biblio2yaml/gonzalez.biblatex
+++ b/tests/biblio2yaml/gonzalez.biblatex
@@ -48,8 +48,7 @@
   title-short: Ghost of John Wayne
   publisher: The University of Arizona Press
   publisher-place: Tucson
-  annote: A collection of short stories. This is a book entry. Note the sorttitle
-    and indextitle fields in the database file. There’s also an isbn field
+  annote: A collection of short stories. This is a book entry. Note the sorttitle and indextitle fields in the database file. There’s also an isbn field
   ISBN: 0-816-52066-6
   language: en-US
 ...
diff --git a/tests/biblio2yaml/hammond.biblatex b/tests/biblio2yaml/hammond.biblatex
--- a/tests/biblio2yaml/hammond.biblatex
+++ b/tests/biblio2yaml/hammond.biblatex
@@ -50,7 +50,6 @@
   title-short: Crystallography and diffraction
   publisher: International Union of Crystallography; Oxford University Press
   publisher-place: Oxford
-  annote: A book entry. Note the sorttitle and indextitle fields as well as the format
-    of the publisher field
+  annote: A book entry. Note the sorttitle and indextitle fields as well as the format of the publisher field
   language: en-GB
 ...
diff --git a/tests/biblio2yaml/iliad.biblatex b/tests/biblio2yaml/iliad.biblatex
--- a/tests/biblio2yaml/iliad.biblatex
+++ b/tests/biblio2yaml/iliad.biblatex
@@ -55,8 +55,6 @@
   publisher: Artemis & Winkler
   publisher-place: Düsseldorf; Zürich
   edition: '3'
-  annote: A German translation of the *Iliad*. Note the translator and introduction
-    fields and the format of the location field in the database file. Also note the
-    sorttitle and indextitle fields
+  annote: A German translation of the *Iliad*. Note the translator and introduction fields and the format of the location field in the database file. Also note the sorttitle and indextitle fields
   language: de-DE
 ...
diff --git a/tests/biblio2yaml/inbook.biblatex b/tests/biblio2yaml/inbook.biblatex
--- a/tests/biblio2yaml/inbook.biblatex
+++ b/tests/biblio2yaml/inbook.biblatex
@@ -79,11 +79,7 @@
   publisher-place: Berlin
   page: 1-163
   volume: '5'
-  annote: An edition of Kant’s *Collected Works*, volume five. This is an inbook entry
-    which explicitly refers to the *Critique of Practical Reason* only, not to the
-    entire fifth volume. Note the author and bookauthor fields in the database file.
-    By default, the bookauthor is omitted if the values of the author and bookauthor
-    fields are identical
+  annote: An edition of Kant’s *Collected Works*, volume five. This is an inbook entry which explicitly refers to the *Critique of Practical Reason* only, not to the entire fifth volume. Note the author and bookauthor fields in the database file. By default, the bookauthor is omitted if the values of the author and bookauthor fields are identical
   language: de-DE
 
 - id: kant:ku
@@ -103,9 +99,7 @@
   publisher-place: Berlin
   page: 165-485
   volume: '5'
-  annote: An edition of Kant’s *Collected Works*, volume five. This is an inbook entry
-    which explicitly refers to the *Critique of Judgment* only, not to the entire
-    fifth volume
+  annote: An edition of Kant’s *Collected Works*, volume five. This is an inbook entry which explicitly refers to the *Critique of Judgment* only, not to the entire fifth volume
   language: de-DE
 
 - id: nietzsche:historie
@@ -123,20 +117,14 @@
     given: Friedrich
   issued:
   - year: 1988
-  title: 'Unzeitgemässe Betrachtungen. Zweites Stück: Vom Nutzen und Nachtheil der
-    Historie für das Leben'
+  title: 'Unzeitgemässe Betrachtungen. Zweites Stück: Vom Nutzen und Nachtheil der Historie für das Leben'
   title-short: Vom Nutzen und Nachtheil der Historie
   container-title: 'Sämtliche Werke: Kritische Studienausgabe'
-  volume-title: Die Geburt der Tragödie. Unzeitgemäße Betrachtungen I–IV. Nachgelassene
-    Schriften 1870–1973
+  volume-title: Die Geburt der Tragödie. Unzeitgemäße Betrachtungen I–IV. Nachgelassene Schriften 1870–1973
   publisher: Deutscher Taschenbuch-Verlag; Walter de Gruyter
   publisher-place: München; Berlin; New York
   page: 243-334
   volume: '1'
-  annote: A single essay from the critical edition of Nietzsche’s works. This inbook
-    entry explicitly refers to an essay found in the first volume. Note the title,
-    booktitle, and maintitle fields. Also note the sorttitle and sortyear fields.
-    We want this entry to be listed after the entry referring to the entire first
-    volume
+  annote: A single essay from the critical edition of Nietzsche’s works. This inbook entry explicitly refers to an essay found in the first volume. Note the title, booktitle, and maintitle fields. Also note the sorttitle and sortyear fields. We want this entry to be listed after the entry referring to the entire first volume
   language: de-DE
 ...
diff --git a/tests/biblio2yaml/incollection-2.biblatex b/tests/biblio2yaml/incollection-2.biblatex
--- a/tests/biblio2yaml/incollection-2.biblatex
+++ b/tests/biblio2yaml/incollection-2.biblatex
@@ -49,15 +49,13 @@
     given: Gary
   issued:
   - year: 2000
-  title: 'The true frontier: Confronting and avoiding the realities of space in
-    American science fiction films'
+  title: 'The true frontier: Confronting and avoiding the realities of space in American science fiction films'
   title-short: The true frontier
   container-title: 'Space and beyond: The frontier theme in science fiction'
   publisher: Greenwood
   publisher-place: Westport, Conn.; London
   page: 55-65
-  annote: A cross-referenced article from a collection. This is an incollection entry
-    with a crossref field. Note the subtitle and indextitle fields
+  annote: A cross-referenced article from a collection. This is an incollection entry with a crossref field. Note the subtitle and indextitle fields
   language: en-US
 
 - id: gaonkar:in
@@ -88,7 +86,6 @@
   title-short: Space and beyond
   publisher: Greenwood
   publisher-place: Westport, Conn.; London
-  annote: This is a collection entry. Note the format of the location field as well
-    as the subtitle and booksubtitle fields
+  annote: This is a collection entry. Note the format of the location field as well as the subtitle and booksubtitle fields
   language: en-US
 ...
diff --git a/tests/biblio2yaml/incollection.biblatex b/tests/biblio2yaml/incollection.biblatex
--- a/tests/biblio2yaml/incollection.biblatex
+++ b/tests/biblio2yaml/incollection.biblatex
@@ -75,9 +75,7 @@
   publisher: Klett-Cotta
   publisher-place: Stuttgart
   page: 884-917
-  annote: An incollection entry with a series and a number. Note the format of the
-    printed name and compare the useprefix option in the options field as well as
-    vangennep. Also note the indextitle, and indexsorttitle fields
+  annote: An incollection entry with a series and a number. Note the format of the printed name and compare the useprefix option in the options field as well as vangennep. Also note the indextitle, and indexsorttitle fields
   language: de-DE
 
 - id: hyman
@@ -112,8 +110,7 @@
     given: Isadore
   issued:
   - year: 1979
-  title: The limitations of human knowledge according to Al-Farabi, <span class="nocase">ibn
-    Bajja</span>, and Maimonides
+  title: The limitations of human knowledge according to Al-Farabi, <span class="nocase">ibn Bajja</span>, and Maimonides
   title-short: Limitations of human knowledge
   container-title: Studies in medieval Jewish history and literature
   publisher: Harvard University Press
diff --git a/tests/biblio2yaml/inproceedings.biblatex b/tests/biblio2yaml/inproceedings.biblatex
--- a/tests/biblio2yaml/inproceedings.biblatex
+++ b/tests/biblio2yaml/inproceedings.biblatex
@@ -50,16 +50,13 @@
   - year: 1979
   event-date:
   - year: 1975
-  title: 'Le *De Anima* dans la tradition grècque: Quelques aspects de l’interpretation
-    du traité, de Theophraste à Themistius'
+  title: 'Le *De Anima* dans la tradition grècque: Quelques aspects de l’interpretation du traité, de Theophraste à Themistius'
   title-short: '*De Anima* dans la tradition grècque'
-  container-title: Aristotle on Mind and the Senses. Proceedings of the Seventh Symposium
-    Aristotelicum
+  container-title: Aristotle on Mind and the Senses. Proceedings of the Seventh Symposium Aristotelicum
   publisher: Cambridge University Press
   publisher-place: Cambridge
   page: 281-324
-  annote: This is a typical inproceedings entry. Note the booksubtitle, shorttitle,
-    indextitle, and indexsorttitle fields. Also note the eventdate field.
+  annote: This is a typical inproceedings entry. Note the booksubtitle, shorttitle, indextitle, and indexsorttitle fields. Also note the eventdate field.
   keyword: secondary
   language: fr-FR
 
@@ -81,8 +78,7 @@
     month: 5
     day: 25
   title: Weak and electromagnetic interactions
-  container-title: 'Elementary particle theory: Relativistic groups and analyticity.
-    Proceedings of the eighth Nobel symposium'
+  container-title: 'Elementary particle theory: Relativistic groups and analyticity. Proceedings of the eighth Nobel symposium'
   publisher: Almquist & Wiksell
   publisher-place: Stockholm
   event-place: Aspenäsgarden, Lerum
diff --git a/tests/biblio2yaml/issue288.biblatex b/tests/biblio2yaml/issue288.biblatex
--- a/tests/biblio2yaml/issue288.biblatex
+++ b/tests/biblio2yaml/issue288.biblatex
@@ -20,8 +20,7 @@
   issued:
   - year: 2016
     month: 8
-  title: 'Upvoting the news: Breaking news aggregation, crowd collaboration, and
-    algorithm-driven attention on reddit.com'
+  title: 'Upvoting the news: Breaking news aggregation, crowd collaboration, and algorithm-driven attention on reddit.com'
   title-short: Upvoting the news
   publisher: University of Southern California
   publisher-place: Los Angeles, CA
diff --git a/tests/biblio2yaml/itzhaki.biblatex b/tests/biblio2yaml/itzhaki.biblatex
--- a/tests/biblio2yaml/itzhaki.biblatex
+++ b/tests/biblio2yaml/itzhaki.biblatex
@@ -62,17 +62,10 @@
   - year: 1996
     month: 3
     day: 11
-  title: Some remarks on ’<span class="nocase">t Hooft’s</span> S-matrix for black
-    holes
+  title: Some remarks on ’<span class="nocase">t Hooft’s</span> S-matrix for black holes
   version: '1'
-  annote: An online reference from arXiv. Note the eprint and eprinttype fields. Also
-    note that the arXiv reference is transformed into a clickable link if hyperref
-    support has been enabled
-  abstract: We discuss the limitations of ’t Hooft’s proposal for the black hole S-matrix.
-    We find that the validity of the S-matrix implies violation of the semi-classical
-    approximation at scales large compared to the Planck scale. We also show that
-    the effect of the centrifugal barrier on the S-matrix is crucial even for large
-    transverse distances.
+  annote: An online reference from arXiv. Note the eprint and eprinttype fields. Also note that the arXiv reference is transformed into a clickable link if hyperref support has been enabled
+  abstract: We discuss the limitations of ’t Hooft’s proposal for the black hole S-matrix. We find that the validity of the S-matrix implies violation of the semi-classical approximation at scales large compared to the Planck scale. We also show that the effect of the centrifugal barrier on the S-matrix is crucial even for large transverse distances.
   URL: http://arxiv.org/abs/hep-th/9603067
   language: en-US
 ...
diff --git a/tests/biblio2yaml/jaffe.biblatex b/tests/biblio2yaml/jaffe.biblatex
--- a/tests/biblio2yaml/jaffe.biblatex
+++ b/tests/biblio2yaml/jaffe.biblatex
@@ -65,13 +65,11 @@
   issued:
   - year: 1885
   - year: 1888
-  title: Regesta Pontificum Romanorum ab condita ecclesia ad annum post Christum natum
-    <span style="font-variant:small-caps;">mcxcviii</span>
+  title: Regesta Pontificum Romanorum ab condita ecclesia ad annum post Christum natum <span style="font-variant:small-caps;">mcxcviii</span>
   title-short: Regesta Pontificum Romanorum
   publisher-place: Leipzig
   number-of-volumes: '2'
   edition: '2'
-  annote: A collection entry with edition and volumes fields. Note the editora and
-    editoratype fields
+  annote: A collection entry with edition and volumes fields. Note the editora and editoratype fields
   language: la
 ...
diff --git a/tests/biblio2yaml/kant-kpv.biblatex b/tests/biblio2yaml/kant-kpv.biblatex
--- a/tests/biblio2yaml/kant-kpv.biblatex
+++ b/tests/biblio2yaml/kant-kpv.biblatex
@@ -73,10 +73,6 @@
   publisher-place: Berlin
   page: 1-163
   volume: '5'
-  annote: An edition of Kant’s *Collected Works*, volume five. This is an inbook entry
-    which explicitly refers to the *Critique of Practical Reason* only, not to the
-    entire fifth volume. Note the author and bookauthor fields in the database file.
-    By default, the bookauthor is omitted if the values of the author and bookauthor
-    fields are identical
+  annote: An edition of Kant’s *Collected Works*, volume five. This is an inbook entry which explicitly refers to the *Critique of Practical Reason* only, not to the entire fifth volume. Note the author and bookauthor fields in the database file. By default, the bookauthor is omitted if the values of the author and bookauthor fields are identical
   language: de-DE
 ...
diff --git a/tests/biblio2yaml/kant-ku.biblatex b/tests/biblio2yaml/kant-ku.biblatex
--- a/tests/biblio2yaml/kant-ku.biblatex
+++ b/tests/biblio2yaml/kant-ku.biblatex
@@ -68,8 +68,6 @@
   publisher-place: Berlin
   page: 165-485
   volume: '5'
-  annote: An edition of Kant’s *Collected Works*, volume five. This is an inbook entry
-    which explicitly refers to the *Critique of Judgment* only, not to the entire
-    fifth volume
+  annote: An edition of Kant’s *Collected Works*, volume five. This is an inbook entry which explicitly refers to the *Critique of Judgment* only, not to the entire fifth volume
   language: de-DE
 ...
diff --git a/tests/biblio2yaml/kastenholz.biblatex b/tests/biblio2yaml/kastenholz.biblatex
--- a/tests/biblio2yaml/kastenholz.biblatex
+++ b/tests/biblio2yaml/kastenholz.biblatex
@@ -86,30 +86,12 @@
     given: Philippe H.
   issued:
   - year: 2006
-  title: 'Computation of methodology-independent ionic solvation free energies from
-    molecular simulations: I. The electrostatic potential in molecular liquids'
-  title-short: Computation of methodology-independent ionic solvation free energies
-    from molecular simulations
+  title: 'Computation of methodology-independent ionic solvation free energies from molecular simulations: I. The electrostatic potential in molecular liquids'
+  title-short: Computation of methodology-independent ionic solvation free energies from molecular simulations
   container-title: J. Chem. Phys.
   volume: '124'
-  annote: An article entry with an eid and a doi field. Note that the <span style="font-variant:small-caps;">doi</span>
-    is transformed into a clickable link if hyperref support has been enabled
-  abstract: The computation of ionic solvation free energies from atomistic simulations
-    is a surprisingly difficult problem that has found no satisfactory solution for
-    more than 15 years. The reason is that the charging free energies evaluated from
-    such simulations are affected by very large errors. One of these is related to
-    the choice of a specific convention for summing up the contributions of solvent
-    charges to the electrostatic potential in the ionic cavity, namely, on the basis
-    of point charges within entire solvent molecules (M scheme) or on the basis of
-    individual point charges (P scheme). The use of an inappropriate convention may
-    lead to a charge-independent offset in the calculated potential, which depends
-    on the details of the summation scheme, on the quadrupole-moment trace of the
-    solvent molecule, and on the approximate form used to represent electrostatic
-    interactions in the system. However, whether the M or P scheme (if any) represents
-    the appropriate convention is still a matter of on-going debate. The goal of the
-    present article is to settle this long-standing controversy by carefully analyzing
-    (both analytically and numerically) the properties of the electrostatic potential
-    in molecular liquids (and inside cavities within them).
+  annote: An article entry with an eid and a doi field. Note that the <span style="font-variant:small-caps;">doi</span> is transformed into a clickable link if hyperref support has been enabled
+  abstract: The computation of ionic solvation free energies from atomistic simulations is a surprisingly difficult problem that has found no satisfactory solution for more than 15 years. The reason is that the charging free energies evaluated from such simulations are affected by very large errors. One of these is related to the choice of a specific convention for summing up the contributions of solvent charges to the electrostatic potential in the ionic cavity, namely, on the basis of point charges within entire solvent molecules (M scheme) or on the basis of individual point charges (P scheme). The use of an inappropriate convention may lead to a charge-independent offset in the calculated potential, which depends on the details of the summation scheme, on the quadrupole-moment trace of the solvent molecule, and on the approximate form used to represent electrostatic interactions in the system. However, whether the M or P scheme (if any) represents the appropriate convention is still a matter of on-going debate. The goal of the present article is to settle this long-standing controversy by carefully analyzing (both analytically and numerically) the properties of the electrostatic potential in molecular liquids (and inside cavities within them).
   DOI: 10.1063/1.2172593
   language: en-US
 ...
diff --git a/tests/biblio2yaml/knuth-ct-a.biblatex b/tests/biblio2yaml/knuth-ct-a.biblatex
--- a/tests/biblio2yaml/knuth-ct-a.biblatex
+++ b/tests/biblio2yaml/knuth-ct-a.biblatex
@@ -62,10 +62,6 @@
   publisher: Addison-Wesley
   publisher-place: Reading, Mass.
   volume: A
-  annote: The first volume of a five-volume book. Note the sorttitle and sortyear
-    fields. We want this volume to be listed after the entry referring to the entire
-    five-volume set. Also note the indextitle and indexsorttitle fields. Indexing
-    packages that don’t generate robust index entries require some control sequences
-    to be protected from expansion
+  annote: The first volume of a five-volume book. Note the sorttitle and sortyear fields. We want this volume to be listed after the entry referring to the entire five-volume set. Also note the indextitle and indexsorttitle fields. Indexing packages that don’t generate robust index entries require some control sequences to be protected from expansion
   language: en-US
 ...
diff --git a/tests/biblio2yaml/knuth-ct-b.biblatex b/tests/biblio2yaml/knuth-ct-b.biblatex
--- a/tests/biblio2yaml/knuth-ct-b.biblatex
+++ b/tests/biblio2yaml/knuth-ct-b.biblatex
@@ -58,7 +58,6 @@
   publisher: Addison-Wesley
   publisher-place: Reading, Mass.
   volume: B
-  annote: The second volume of a five-volume book. Note the sorttitle and sortyear
-    fields. Also note the indexsorttitle field
+  annote: The second volume of a five-volume book. Note the sorttitle and sortyear fields. Also note the indexsorttitle field
   language: en-US
 ...
diff --git a/tests/biblio2yaml/knuth-ct-c.biblatex b/tests/biblio2yaml/knuth-ct-c.biblatex
--- a/tests/biblio2yaml/knuth-ct-c.biblatex
+++ b/tests/biblio2yaml/knuth-ct-c.biblatex
@@ -57,7 +57,6 @@
   publisher: Addison-Wesley
   publisher-place: Reading, Mass.
   volume: C
-  annote: The third volume of a five-volume book. Note the sorttitle and sortyear
-    fields as well as the indextitle field
+  annote: The third volume of a five-volume book. Note the sorttitle and sortyear fields as well as the indextitle field
   language: en-US
 ...
diff --git a/tests/biblio2yaml/knuth-ct-d.biblatex b/tests/biblio2yaml/knuth-ct-d.biblatex
--- a/tests/biblio2yaml/knuth-ct-d.biblatex
+++ b/tests/biblio2yaml/knuth-ct-d.biblatex
@@ -59,7 +59,6 @@
   publisher: Addison-Wesley
   publisher-place: Reading, Mass.
   volume: D
-  annote: The fourth volume of a five-volume book. Note the sorttitle and sortyear
-    fields
+  annote: The fourth volume of a five-volume book. Note the sorttitle and sortyear fields
   language: en-US
 ...
diff --git a/tests/biblio2yaml/knuth-ct-e.biblatex b/tests/biblio2yaml/knuth-ct-e.biblatex
--- a/tests/biblio2yaml/knuth-ct-e.biblatex
+++ b/tests/biblio2yaml/knuth-ct-e.biblatex
@@ -54,7 +54,6 @@
   publisher: Addison-Wesley
   publisher-place: Reading, Mass.
   volume: E
-  annote: The fifth volume of a five-volume book. Note the sorttitle and sortyear
-    fields
+  annote: The fifth volume of a five-volume book. Note the sorttitle and sortyear fields
   language: en-US
 ...
diff --git a/tests/biblio2yaml/knuth-ct-related.biblatex b/tests/biblio2yaml/knuth-ct-related.biblatex
--- a/tests/biblio2yaml/knuth-ct-related.biblatex
+++ b/tests/biblio2yaml/knuth-ct-related.biblatex
@@ -61,7 +61,6 @@
   publisher: Addison-Wesley
   publisher-place: Reading, Mass.
   number-of-volumes: '5'
-  annote: A five-volume book cited as a whole and related to its individual volumes.
-    Note the related and relatedtype fields
+  annote: A five-volume book cited as a whole and related to its individual volumes. Note the related and relatedtype fields
   language: en-US
 ...
diff --git a/tests/biblio2yaml/knuth-ct.biblatex b/tests/biblio2yaml/knuth-ct.biblatex
--- a/tests/biblio2yaml/knuth-ct.biblatex
+++ b/tests/biblio2yaml/knuth-ct.biblatex
@@ -55,7 +55,6 @@
   publisher: Addison-Wesley
   publisher-place: Reading, Mass.
   number-of-volumes: '5'
-  annote: A five-volume book cited as a whole. This is a book entry, note the volumes
-    field
+  annote: A five-volume book cited as a whole. This is a book entry, note the volumes field
   language: en-US
 ...
diff --git a/tests/biblio2yaml/kowalik.biblatex b/tests/biblio2yaml/kowalik.biblatex
--- a/tests/biblio2yaml/kowalik.biblatex
+++ b/tests/biblio2yaml/kowalik.biblatex
@@ -52,12 +52,9 @@
   - year: 1995
     month: 1
     day: 11
-  title: Estimateur d’un défaut de fonctionnement d’un modulateur en quadrature et
-    étage de modulation l’utilisant
+  title: Estimateur d’un défaut de fonctionnement d’un modulateur en quadrature et étage de modulation l’utilisant
   genre: French patent request
-  annote: This is a patent entry for a French patent request with a full date. The
-    number is given in the number field. Note the format of the type and date fields
-    in the database file. Compare almendro, laufenberg, and sorace
+  annote: This is a patent entry for a French patent request with a full date. The number is given in the number field. Note the format of the type and date fields in the database file. Compare almendro, laufenberg, and sorace
   number: '9500261'
   language: fr-FR
 ...
diff --git a/tests/biblio2yaml/kullback-related.biblatex b/tests/biblio2yaml/kullback-related.biblatex
--- a/tests/biblio2yaml/kullback-related.biblatex
+++ b/tests/biblio2yaml/kullback-related.biblatex
@@ -50,7 +50,6 @@
   title: Information theory and statistics
   publisher: Dover Publications
   publisher-place: New York
-  annote: A reprint of the kullback entry. Note the format of the related and relatedtype
-    fields
+  annote: A reprint of the kullback entry. Note the format of the related and relatedtype fields
   language: en-US
 ...
diff --git a/tests/biblio2yaml/kullback-reprint.biblatex b/tests/biblio2yaml/kullback-reprint.biblatex
--- a/tests/biblio2yaml/kullback-reprint.biblatex
+++ b/tests/biblio2yaml/kullback-reprint.biblatex
@@ -59,7 +59,6 @@
   publisher: Dover Publications
   original-publisher: John Wiley & Sons
   publisher-place: New York
-  annote: A reprint of the kullback entry. Note the format of origyear and origpublisher.
-    These fields are not used by the standard bibliography styles
+  annote: A reprint of the kullback entry. Note the format of origyear and origpublisher. These fields are not used by the standard bibliography styles
   language: en-US
 ...
diff --git a/tests/biblio2yaml/laufenberg.biblatex b/tests/biblio2yaml/laufenberg.biblatex
--- a/tests/biblio2yaml/laufenberg.biblatex
+++ b/tests/biblio2yaml/laufenberg.biblatex
@@ -90,13 +90,8 @@
     day: 13
   title: Elektrische Einrichtung und Betriebsverfahren
   genre: European patent
-  annote: This is a patent entry with a holder field. Note the format of the type
-    and location fields in the database file. Compare almendro, sorace, and kowalik
-  abstract: The invention relates to an electric device comprising a generator, in
-    particular for use in the vehicle electric system of a motor vehicle and a controller
-    for controlling the generator voltage. The device is equipped with a control zone,
-    in which the voltage is controlled and zones, in which the torque is controlled.
-    The invention also relates to methods for operating a device of this type.
+  annote: This is a patent entry with a holder field. Note the format of the type and location fields in the database file. Compare almendro, sorace, and kowalik
+  abstract: The invention relates to an electric device comprising a generator, in particular for use in the vehicle electric system of a motor vehicle and a controller for controlling the generator voltage. The device is equipped with a control zone, in which the voltage is controlled and zones, in which the torque is controlled. The invention also relates to methods for operating a device of this type.
   number: '1700367'
   language: de-DE
 ...
diff --git a/tests/biblio2yaml/loh.biblatex b/tests/biblio2yaml/loh.biblatex
--- a/tests/biblio2yaml/loh.biblatex
+++ b/tests/biblio2yaml/loh.biblatex
@@ -53,7 +53,6 @@
   publisher: Massachusetts Institute of Technology
   publisher-place: Cambridge, Mass.
   genre: Master’s thesis
-  annote: This is a typical thesis entry for an MA thesis. Note the type field in
-    the database file which uses a localization key
+  annote: This is a typical thesis entry for an MA thesis. Note the type field in the database file which uses a localization key
   language: en-US
 ...
diff --git a/tests/biblio2yaml/malinowski.biblatex b/tests/biblio2yaml/malinowski.biblatex
--- a/tests/biblio2yaml/malinowski.biblatex
+++ b/tests/biblio2yaml/malinowski.biblatex
@@ -48,13 +48,11 @@
     given: Bronisław
   issued:
   - year: 1972
-  title: 'Argonauts of the Western Pacific: An account of native enterprise and
-    adventure in the <span class="nocase">Archipelagoes of Melanesian New Guinea</span>'
+  title: 'Argonauts of the Western Pacific: An account of native enterprise and adventure in the <span class="nocase">Archipelagoes of Melanesian New Guinea</span>'
   title-short: Argonauts
   publisher: Routledge and Kegan Paul
   publisher-place: London
   edition: '8'
-  annote: This is a book entry. Note the format of the publisher and edition fields
-    as well as the subtitle field
+  annote: This is a book entry. Note the format of the publisher and edition fields as well as the subtitle field
   language: en-GB
 ...
diff --git a/tests/biblio2yaml/manual.biblatex b/tests/biblio2yaml/manual.biblatex
--- a/tests/biblio2yaml/manual.biblatex
+++ b/tests/biblio2yaml/manual.biblatex
@@ -28,17 +28,12 @@
   type: book
   issued:
   - year: 2003
-  title: 'The Chicago manual of style: The essential guide for writers, editors,
-    and publishers'
+  title: 'The Chicago manual of style: The essential guide for writers, editors, and publishers'
   title-short: Chicago manual of style
   publisher: University of Chicago Press
   publisher-place: Chicago, Ill.
   edition: '15'
-  annote: This is a manual entry without an author or editor. Note the label field
-    in the database file which is provided for author-year citation styles. Also note
-    the sorttitle and indextitle fields. By default, all entries without an author
-    or editor are alphabetized by title but we want this entry to be alphabetized
-    under ‘C’ rather than ‘T’. There’s also an isbn field
+  annote: This is a manual entry without an author or editor. Note the label field in the database file which is provided for author-year citation styles. Also note the sorttitle and indextitle fields. By default, all entries without an author or editor are alphabetized by title but we want this entry to be alphabetized under ‘C’ rather than ‘T’. There’s also an isbn field
   ISBN: 0-226-10403-6
   language: en-US
 ...
diff --git a/tests/biblio2yaml/markey.biblatex b/tests/biblio2yaml/markey.biblatex
--- a/tests/biblio2yaml/markey.biblatex
+++ b/tests/biblio2yaml/markey.biblatex
@@ -57,8 +57,7 @@
   title: 'Tame the BeaST: The B to X of BibTeX'
   title-short: Tame the BeaST
   version: '1.3'
-  annote: An online entry for a tutorial. Note the format of the date field (yyyy-mm-dd)
-    in the database file.
+  annote: An online entry for a tutorial. Note the format of the date field (yyyy-mm-dd) in the database file.
   URL: http://tug.ctan.org/tex-archive/info/bibtex/tamethebeast/ttb_en.pdf
   language: en-US
 ...
diff --git a/tests/biblio2yaml/maron.biblatex b/tests/biblio2yaml/maron.biblatex
--- a/tests/biblio2yaml/maron.biblatex
+++ b/tests/biblio2yaml/maron.biblatex
@@ -57,8 +57,6 @@
   title-short: Animal triste
   publisher: University of Nebraska Press
   publisher-place: Lincoln
-  annote: 'An English translation of a German novel with a French title. In other
-    words: a book entry with a translator field. Note the origlanguage field which
-    is concatenated with the translator'
+  annote: 'An English translation of a German novel with a French title. In other words: a book entry with a translator field. Note the origlanguage field which is concatenated with the translator'
   language: en-US
 ...
diff --git a/tests/biblio2yaml/moraux.biblatex b/tests/biblio2yaml/moraux.biblatex
--- a/tests/biblio2yaml/moraux.biblatex
+++ b/tests/biblio2yaml/moraux.biblatex
@@ -73,16 +73,13 @@
   - year: 1979
   event-date:
   - year: 1975
-  title: 'Le *De Anima* dans la tradition grècque: Quelques aspects de l’interpretation
-    du traité, de Theophraste à Themistius'
+  title: 'Le *De Anima* dans la tradition grècque: Quelques aspects de l’interpretation du traité, de Theophraste à Themistius'
   title-short: '*De Anima* dans la tradition grècque'
-  container-title: Aristotle on Mind and the Senses. Proceedings of the Seventh Symposium
-    Aristotelicum
+  container-title: Aristotle on Mind and the Senses. Proceedings of the Seventh Symposium Aristotelicum
   publisher: Cambridge University Press
   publisher-place: Cambridge
   page: 281-324
-  annote: This is a typical inproceedings entry. Note the booksubtitle, shorttitle,
-    indextitle, and indexsorttitle fields. Also note the eventdate field.
+  annote: This is a typical inproceedings entry. Note the booksubtitle, shorttitle, indextitle, and indexsorttitle fields. Also note the eventdate field.
   keyword: secondary
   language: fr-FR
 ...
diff --git a/tests/biblio2yaml/murray.biblatex b/tests/biblio2yaml/murray.biblatex
--- a/tests/biblio2yaml/murray.biblatex
+++ b/tests/biblio2yaml/murray.biblatex
@@ -84,15 +84,12 @@
     given: Royce W.
   issued:
   - year: 1998
-  title: 'Alkanethiolate gold cluster molecules with core diameters from 1.5 to
-    5.2 <span class="nocase">nm</span>: Core and monolayer properties as a function
-    of core size'
+  title: 'Alkanethiolate gold cluster molecules with core diameters from 1.5 to 5.2 <span class="nocase">nm</span>: Core and monolayer properties as a function of core size'
   title-short: Alkanethiolate gold cluster molecules
   container-title: Langmuir
   page: 17-30
   volume: '14'
   issue: '1'
-  annote: An article entry with author authors. By default, long author and editor
-    lists are automatically truncated. This is configurable
+  annote: An article entry with author authors. By default, long author and editor lists are automatically truncated. This is configurable
   language: en-US
 ...
diff --git a/tests/biblio2yaml/nietzsche-historie.biblatex b/tests/biblio2yaml/nietzsche-historie.biblatex
--- a/tests/biblio2yaml/nietzsche-historie.biblatex
+++ b/tests/biblio2yaml/nietzsche-historie.biblatex
@@ -75,20 +75,14 @@
     given: Friedrich
   issued:
   - year: 1988
-  title: 'Unzeitgemässe Betrachtungen. Zweites Stück: Vom Nutzen und Nachtheil der
-    Historie für das Leben'
+  title: 'Unzeitgemässe Betrachtungen. Zweites Stück: Vom Nutzen und Nachtheil der Historie für das Leben'
   title-short: Vom Nutzen und Nachtheil der Historie
   container-title: 'Sämtliche Werke: Kritische Studienausgabe'
-  volume-title: Die Geburt der Tragödie. Unzeitgemäße Betrachtungen I–IV. Nachgelassene
-    Schriften 1870–1973
+  volume-title: Die Geburt der Tragödie. Unzeitgemäße Betrachtungen I–IV. Nachgelassene Schriften 1870–1973
   publisher: Deutscher Taschenbuch-Verlag; Walter de Gruyter
   publisher-place: München; Berlin; New York
   page: 243-334
   volume: '1'
-  annote: A single essay from the critical edition of Nietzsche’s works. This inbook
-    entry explicitly refers to an essay found in the first volume. Note the title,
-    booktitle, and maintitle fields. Also note the sorttitle and sortyear fields.
-    We want this entry to be listed after the entry referring to the entire first
-    volume
+  annote: A single essay from the critical edition of Nietzsche’s works. This inbook entry explicitly refers to an essay found in the first volume. Note the title, booktitle, and maintitle fields. Also note the sorttitle and sortyear fields. We want this entry to be listed after the entry referring to the entire first volume
   language: de-DE
 ...
diff --git a/tests/biblio2yaml/nietzsche-ksa.biblatex b/tests/biblio2yaml/nietzsche-ksa.biblatex
--- a/tests/biblio2yaml/nietzsche-ksa.biblatex
+++ b/tests/biblio2yaml/nietzsche-ksa.biblatex
@@ -73,10 +73,6 @@
   publisher-place: München; Berlin; New York
   number-of-volumes: '15'
   edition: '2'
-  annote: The critical edition of Nietzsche’s works. This is a book entry referring
-    to a 15-volume work as a whole. Note the volumes field and the format of the publisher
-    and location fields in the database file. Also note the sorttitle and sortyear
-    fields which are used to fine-tune the sorting order of the bibliography. We want
-    this item listed first in the bibliography
+  annote: The critical edition of Nietzsche’s works. This is a book entry referring to a 15-volume work as a whole. Note the volumes field and the format of the publisher and location fields in the database file. Also note the sorttitle and sortyear fields which are used to fine-tune the sorting order of the bibliography. We want this item listed first in the bibliography
   language: de-DE
 ...
diff --git a/tests/biblio2yaml/nietzsche-ksa1.biblatex b/tests/biblio2yaml/nietzsche-ksa1.biblatex
--- a/tests/biblio2yaml/nietzsche-ksa1.biblatex
+++ b/tests/biblio2yaml/nietzsche-ksa1.biblatex
@@ -74,15 +74,11 @@
   issued:
   - year: 1988
   title: 'Sämtliche Werke: Kritische Studienausgabe'
-  volume-title: Die Geburt der Tragödie. Unzeitgemäße Betrachtungen I–IV. Nachgelassene
-    Schriften 1870–1973
+  volume-title: Die Geburt der Tragödie. Unzeitgemäße Betrachtungen I–IV. Nachgelassene Schriften 1870–1973
   publisher: Deutscher Taschenbuch-Verlag; Walter de Gruyter
   publisher-place: München; Berlin; New York
   volume: '1'
   edition: '2'
-  annote: A single volume from the critical edition of Nietzsche’s works. This book
-    entry explicitly refers to the first volume only. Note the title and maintitle
-    fields. Also note the sorttitle and sortyear fields. We want this entry to be
-    listed after the entry referring to the entire edition
+  annote: A single volume from the critical edition of Nietzsche’s works. This book entry explicitly refers to the first volume only. Note the title and maintitle fields. Also note the sorttitle and sortyear fields. We want this entry to be listed after the entry referring to the entire edition
   language: de-DE
 ...
diff --git a/tests/biblio2yaml/nussbaum.biblatex b/tests/biblio2yaml/nussbaum.biblatex
--- a/tests/biblio2yaml/nussbaum.biblatex
+++ b/tests/biblio2yaml/nussbaum.biblatex
@@ -50,8 +50,7 @@
   title: Aristotle’s “De Motu Animalium”
   publisher: Princeton University Press
   publisher-place: Princeton
-  annote: A book entry. Note the sorttitle and indexsorttitle fields and the markup
-    of the quotes in the database file
+  annote: A book entry. Note the sorttitle and indexsorttitle fields and the markup of the quotes in the database file
   keyword: secondary
   language: en-US
 ...
diff --git a/tests/biblio2yaml/online.biblatex b/tests/biblio2yaml/online.biblatex
--- a/tests/biblio2yaml/online.biblatex
+++ b/tests/biblio2yaml/online.biblatex
@@ -42,8 +42,7 @@
   title: 'Tame the BeaST: The B to X of BibTeX'
   title-short: Tame the BeaST
   version: '1.3'
-  annote: An online entry for a tutorial. Note the format of the date field (yyyy-mm-dd)
-    in the database file.
+  annote: An online entry for a tutorial. Note the format of the date field (yyyy-mm-dd) in the database file.
   URL: http://tug.ctan.org/tex-archive/info/bibtex/tamethebeast/ttb_en.pdf
   language: en-US
 
@@ -57,11 +56,7 @@
     day: 1
   title: 'CTAN: The Comprehensive TeX Archive Network'
   title-short: CTAN
-  annote: This is an online entry. The <span style="font-variant:small-caps;">url</span>,
-    which is given in the url field, is transformed into a clickable link if hyperref
-    support has been enabled. Note the format of the urldate field (yyyy-mm-dd) in
-    the database file. Also note the label field which may be used as a fallback by
-    citation styles which need an author and/or a year
+  annote: This is an online entry. The <span style="font-variant:small-caps;">url</span>, which is given in the url field, is transformed into a clickable link if hyperref support has been enabled. Note the format of the urldate field (yyyy-mm-dd) in the database file. Also note the label field which may be used as a fallback by citation styles which need an author and/or a year
   URL: http://www.ctan.org
   language: en-US
 ...
diff --git a/tests/biblio2yaml/padhye.biblatex b/tests/biblio2yaml/padhye.biblatex
--- a/tests/biblio2yaml/padhye.biblatex
+++ b/tests/biblio2yaml/padhye.biblatex
@@ -82,25 +82,8 @@
   publisher: University of Massachusetts
   publisher-place: Amherst, Mass.
   genre: technical report
-  annote: This is a report entry for a technical report. Note the format of the type
-    field in the database file which uses a localization key. The number of the report
-    is given in the number field. Also note the sorttitle and indextitle fields
-  abstract: The steady state performance of a bulk transfer TCP flow (i.e. a flow
-    with a large amount of data to send, such as FTP transfers) may be characterized
-    by three quantities. The first is the send rate, which is the amount of data sent
-    by the sender in unit time. The second is the throughput, which is the amount
-    of data received by the receiver in unit time. Note that the throughput will always
-    be less than or equal to the send rate due to losses. Finally, the number of non-duplicate
-    packets received by the receiver in unit time gives us the goodput of the connection.
-    The goodput is always less than or equal to the throughput, since the receiver
-    may receive two copies of the same packet due to retransmissions by the sender.
-    In a previous paper, we presented a simple model for predicting the steady state
-    send rate of a bulk transfer TCP flow as a function of loss rate and round trip
-    time. In this paper, we extend that work in two ways. First, we analyze the performance
-    of bulk transfer TCP flows using more precise, stochastic analysis. Second, we
-    build upon the previous analysis to provide both an approximate formula as well
-    as a more accurate stochastic model for the steady state throughput of a bulk
-    transfer TCP flow.
+  annote: This is a report entry for a technical report. Note the format of the type field in the database file which uses a localization key. The number of the report is given in the number field. Also note the sorttitle and indextitle fields
+  abstract: The steady state performance of a bulk transfer TCP flow (i.e. a flow with a large amount of data to send, such as FTP transfers) may be characterized by three quantities. The first is the send rate, which is the amount of data sent by the sender in unit time. The second is the throughput, which is the amount of data received by the receiver in unit time. Note that the throughput will always be less than or equal to the send rate due to losses. Finally, the number of non-duplicate packets received by the receiver in unit time gives us the goodput of the connection. The goodput is always less than or equal to the throughput, since the receiver may receive two copies of the same packet due to retransmissions by the sender. In a previous paper, we presented a simple model for predicting the steady state send rate of a bulk transfer TCP flow as a function of loss rate and round trip time. In this paper, we extend that work in two ways. First, we analyze the performance of bulk transfer TCP flows using more precise, stochastic analysis. Second, we build upon the previous analysis to provide both an approximate formula as well as a more accurate stochastic model for the steady state throughput of a bulk transfer TCP flow.
   number: 99-02
   language: en-US
 ...
diff --git a/tests/biblio2yaml/pandoc-2/ctan.biblatex b/tests/biblio2yaml/pandoc-2/ctan.biblatex
--- a/tests/biblio2yaml/pandoc-2/ctan.biblatex
+++ b/tests/biblio2yaml/pandoc-2/ctan.biblatex
@@ -59,11 +59,7 @@
     day: 1
   title: 'CTAN: The Comprehensive TeX Archive Network'
   title-short: CTAN
-  annote: This is an online entry. The <span class="smallcaps">url</span>, which is
-    given in the url field, is transformed into a clickable link if hyperref support
-    has been enabled. Note the format of the urldate field (yyyy-mm-dd) in the database
-    file. Also note the label field which may be used as a fallback by citation styles
-    which need an author and/or a year
+  annote: This is an online entry. The <span class="smallcaps">url</span>, which is given in the url field, is transformed into a clickable link if hyperref support has been enabled. Note the format of the urldate field (yyyy-mm-dd) in the database file. Also note the label field which may be used as a fallback by citation styles which need an author and/or a year
   URL: http://www.ctan.org
   language: en-US
 ...
diff --git a/tests/biblio2yaml/pandoc-2/jaffe.biblatex b/tests/biblio2yaml/pandoc-2/jaffe.biblatex
--- a/tests/biblio2yaml/pandoc-2/jaffe.biblatex
+++ b/tests/biblio2yaml/pandoc-2/jaffe.biblatex
@@ -65,13 +65,11 @@
   issued:
   - year: 1885
   - year: 1888
-  title: Regesta Pontificum Romanorum ab condita ecclesia ad annum post Christum natum
-    <span class="smallcaps">mcxcviii</span>
+  title: Regesta Pontificum Romanorum ab condita ecclesia ad annum post Christum natum <span class="smallcaps">mcxcviii</span>
   title-short: Regesta Pontificum Romanorum
   publisher-place: Leipzig
   number-of-volumes: '2'
   edition: '2'
-  annote: A collection entry with edition and volumes fields. Note the editora and
-    editoratype fields
+  annote: A collection entry with edition and volumes fields. Note the editora and editoratype fields
   language: la
 ...
diff --git a/tests/biblio2yaml/pandoc-2/kastenholz.biblatex b/tests/biblio2yaml/pandoc-2/kastenholz.biblatex
--- a/tests/biblio2yaml/pandoc-2/kastenholz.biblatex
+++ b/tests/biblio2yaml/pandoc-2/kastenholz.biblatex
@@ -86,30 +86,12 @@
     given: Philippe H.
   issued:
   - year: 2006
-  title: 'Computation of methodology-independent ionic solvation free energies from
-    molecular simulations: I. The electrostatic potential in molecular liquids'
-  title-short: Computation of methodology-independent ionic solvation free energies
-    from molecular simulations
+  title: 'Computation of methodology-independent ionic solvation free energies from molecular simulations: I. The electrostatic potential in molecular liquids'
+  title-short: Computation of methodology-independent ionic solvation free energies from molecular simulations
   container-title: J. Chem. Phys.
   volume: '124'
-  annote: An article entry with an eid and a doi field. Note that the <span class="smallcaps">doi</span>
-    is transformed into a clickable link if hyperref support has been enabled
-  abstract: The computation of ionic solvation free energies from atomistic simulations
-    is a surprisingly difficult problem that has found no satisfactory solution for
-    more than 15 years. The reason is that the charging free energies evaluated from
-    such simulations are affected by very large errors. One of these is related to
-    the choice of a specific convention for summing up the contributions of solvent
-    charges to the electrostatic potential in the ionic cavity, namely, on the basis
-    of point charges within entire solvent molecules (M scheme) or on the basis of
-    individual point charges (P scheme). The use of an inappropriate convention may
-    lead to a charge-independent offset in the calculated potential, which depends
-    on the details of the summation scheme, on the quadrupole-moment trace of the
-    solvent molecule, and on the approximate form used to represent electrostatic
-    interactions in the system. However, whether the M or P scheme (if any) represents
-    the appropriate convention is still a matter of on-going debate. The goal of the
-    present article is to settle this long-standing controversy by carefully analyzing
-    (both analytically and numerically) the properties of the electrostatic potential
-    in molecular liquids (and inside cavities within them).
+  annote: An article entry with an eid and a doi field. Note that the <span class="smallcaps">doi</span> is transformed into a clickable link if hyperref support has been enabled
+  abstract: The computation of ionic solvation free energies from atomistic simulations is a surprisingly difficult problem that has found no satisfactory solution for more than 15 years. The reason is that the charging free energies evaluated from such simulations are affected by very large errors. One of these is related to the choice of a specific convention for summing up the contributions of solvent charges to the electrostatic potential in the ionic cavity, namely, on the basis of point charges within entire solvent molecules (M scheme) or on the basis of individual point charges (P scheme). The use of an inappropriate convention may lead to a charge-independent offset in the calculated potential, which depends on the details of the summation scheme, on the quadrupole-moment trace of the solvent molecule, and on the approximate form used to represent electrostatic interactions in the system. However, whether the M or P scheme (if any) represents the appropriate convention is still a matter of on-going debate. The goal of the present article is to settle this long-standing controversy by carefully analyzing (both analytically and numerically) the properties of the electrostatic potential in molecular liquids (and inside cavities within them).
   DOI: 10.1063/1.2172593
   language: en-US
 ...
diff --git a/tests/biblio2yaml/pandoc-2/online.biblatex b/tests/biblio2yaml/pandoc-2/online.biblatex
--- a/tests/biblio2yaml/pandoc-2/online.biblatex
+++ b/tests/biblio2yaml/pandoc-2/online.biblatex
@@ -42,8 +42,7 @@
   title: 'Tame the BeaST: The B to X of BibTeX'
   title-short: Tame the BeaST
   version: '1.3'
-  annote: An online entry for a tutorial. Note the format of the date field (yyyy-mm-dd)
-    in the database file.
+  annote: An online entry for a tutorial. Note the format of the date field (yyyy-mm-dd) in the database file.
   URL: http://tug.ctan.org/tex-archive/info/bibtex/tamethebeast/ttb_en.pdf
   language: en-US
 
@@ -57,11 +56,7 @@
     day: 1
   title: 'CTAN: The Comprehensive TeX Archive Network'
   title-short: CTAN
-  annote: This is an online entry. The <span class="smallcaps">url</span>, which is
-    given in the url field, is transformed into a clickable link if hyperref support
-    has been enabled. Note the format of the urldate field (yyyy-mm-dd) in the database
-    file. Also note the label field which may be used as a fallback by citation styles
-    which need an author and/or a year
+  annote: This is an online entry. The <span class="smallcaps">url</span>, which is given in the url field, is transformed into a clickable link if hyperref support has been enabled. Note the format of the urldate field (yyyy-mm-dd) in the database file. Also note the label field which may be used as a fallback by citation styles which need an author and/or a year
   URL: http://www.ctan.org
   language: en-US
 ...
diff --git a/tests/biblio2yaml/pandoc-2/sigfridsson.biblatex b/tests/biblio2yaml/pandoc-2/sigfridsson.biblatex
--- a/tests/biblio2yaml/pandoc-2/sigfridsson.biblatex
+++ b/tests/biblio2yaml/pandoc-2/sigfridsson.biblatex
@@ -73,25 +73,13 @@
     given: Ulf
   issued:
   - year: 1998
-  title: Comparison of methods for deriving atomic charges from the electrostatic
-    potential and moments
+  title: Comparison of methods for deriving atomic charges from the electrostatic potential and moments
   container-title: Journal of Computational Chemistry
   page: 377-395
   volume: '19'
   issue: '4'
-  annote: An article entry with volume, number, and doi fields. Note that the <span
-    class="smallcaps">doi</span> is transformed into a clickable link if hyperref
-    support has been enabled
-  abstract: 'Four methods for deriving partial atomic charges from the quantum chemical
-    electrostatic potential (CHELP, CHELPG, Merz-Kollman, and RESP) have been compared
-    and critically evaluated. It is shown that charges strongly depend on how and
-    where the potential points are selected. Two alternative methods are suggested
-    to avoid the arbitrariness in the point-selection schemes and van der Waals exclusion
-    radii: CHELP-BOW, which also estimates the charges from the electrostatic potential,
-    but with potential points that are Boltzmann-weighted after their occurrence in
-    actual simulations using the energy function of the program in which the charges
-    will be used, and CHELMO, which estimates the charges directly from the electrostatic
-    multipole moments. Different criteria for the quality of the charges are discussed.'
+  annote: An article entry with volume, number, and doi fields. Note that the <span class="smallcaps">doi</span> is transformed into a clickable link if hyperref support has been enabled
+  abstract: 'Four methods for deriving partial atomic charges from the quantum chemical electrostatic potential (CHELP, CHELPG, Merz-Kollman, and RESP) have been compared and critically evaluated. It is shown that charges strongly depend on how and where the potential points are selected. Two alternative methods are suggested to avoid the arbitrariness in the point-selection schemes and van der Waals exclusion radii: CHELP-BOW, which also estimates the charges from the electrostatic potential, but with potential points that are Boltzmann-weighted after their occurrence in actual simulations using the energy function of the program in which the charges will be used, and CHELMO, which estimates the charges directly from the electrostatic multipole moments. Different criteria for the quality of the charges are discussed.'
   DOI: 10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P
   language: en-US
 ...
diff --git a/tests/biblio2yaml/patent.biblatex b/tests/biblio2yaml/patent.biblatex
--- a/tests/biblio2yaml/patent.biblatex
+++ b/tests/biblio2yaml/patent.biblatex
@@ -68,9 +68,7 @@
   - year: 1998
   title: Elektromagnetisches Signalhorn
   jurisdiction: France; United Kingdom; Germany
-  annote: This is a patent entry with a location field. The number is given in the
-    number field. Note the format of the location field in the database file. Compare
-    laufenberg, sorace, and kowalik
+  annote: This is a patent entry with a location field. The number is given in the number field. Note the format of the location field in the database file. Compare laufenberg, sorace, and kowalik
   number: EU-29702195U
   language: de-DE
 
@@ -85,12 +83,9 @@
   - year: 1995
     month: 1
     day: 11
-  title: Estimateur d’un défaut de fonctionnement d’un modulateur en quadrature et
-    étage de modulation l’utilisant
+  title: Estimateur d’un défaut de fonctionnement d’un modulateur en quadrature et étage de modulation l’utilisant
   genre: French patent request
-  annote: This is a patent entry for a French patent request with a full date. The
-    number is given in the number field. Note the format of the type and date fields
-    in the database file. Compare almendro, laufenberg, and sorace
+  annote: This is a patent entry for a French patent request with a full date. The number is given in the number field. Note the format of the type and date fields in the database file. Compare almendro, laufenberg, and sorace
   number: '9500261'
   language: fr-FR
 
@@ -127,13 +122,8 @@
     day: 13
   title: Elektrische Einrichtung und Betriebsverfahren
   genre: European patent
-  annote: This is a patent entry with a holder field. Note the format of the type
-    and location fields in the database file. Compare almendro, sorace, and kowalik
-  abstract: The invention relates to an electric device comprising a generator, in
-    particular for use in the vehicle electric system of a motor vehicle and a controller
-    for controlling the generator voltage. The device is equipped with a control zone,
-    in which the voltage is controlled and zones, in which the torque is controlled.
-    The invention also relates to methods for operating a device of this type.
+  annote: This is a patent entry with a holder field. Note the format of the type and location fields in the database file. Compare almendro, sorace, and kowalik
+  abstract: The invention relates to an electric device comprising a generator, in particular for use in the vehicle electric system of a motor vehicle and a controller for controlling the generator voltage. The device is equipped with a control zone, in which the voltage is controlled and zones, in which the torque is controlled. The invention also relates to methods for operating a device of this type.
   number: '1700367'
   language: de-DE
 
@@ -152,8 +142,7 @@
     day: 16
   title: High-speed digital-to-RF converter
   genre: U.S. patent
-  annote: This is a patent entry with a holder field. Note the format of the type
-    and date fields in the database file. Compare almendro, laufenberg, and kowalik
+  annote: This is a patent entry with a holder field. Note the format of the type and date fields in the database file. Compare almendro, laufenberg, and kowalik
   number: '5668842'
   language: en-US
 ...
diff --git a/tests/biblio2yaml/piccato.biblatex b/tests/biblio2yaml/piccato.biblatex
--- a/tests/biblio2yaml/piccato.biblatex
+++ b/tests/biblio2yaml/piccato.biblatex
@@ -47,7 +47,6 @@
   title-short: City of suspects
   publisher: Duke University Press
   publisher-place: Durham; London
-  annote: This is a book entry. Note the format of the location field in the database
-    file
+  annote: This is a book entry. Note the format of the location field in the database file
   language: en-US
 ...
diff --git a/tests/biblio2yaml/pines.biblatex b/tests/biblio2yaml/pines.biblatex
--- a/tests/biblio2yaml/pines.biblatex
+++ b/tests/biblio2yaml/pines.biblatex
@@ -58,8 +58,7 @@
     given: Isadore
   issued:
   - year: 1979
-  title: The limitations of human knowledge according to Al-Farabi, <span class="nocase">ibn
-    Bajja</span>, and Maimonides
+  title: The limitations of human knowledge according to Al-Farabi, <span class="nocase">ibn Bajja</span>, and Maimonides
   title-short: Limitations of human knowledge
   container-title: Studies in medieval Jewish history and literature
   publisher: Harvard University Press
diff --git a/tests/biblio2yaml/quotes.biblatex b/tests/biblio2yaml/quotes.biblatex
--- a/tests/biblio2yaml/quotes.biblatex
+++ b/tests/biblio2yaml/quotes.biblatex
@@ -31,8 +31,7 @@
   title: Aristotle’s “De Motu Animalium”
   publisher: Princeton University Press
   publisher-place: Princeton
-  annote: A book entry. Note the sorttitle and indexsorttitle fields and the markup
-    of the quotes in the database file
+  annote: A book entry. Note the sorttitle and indexsorttitle fields and the markup of the quotes in the database file
   keyword: secondary
   language: en-US
 ...
diff --git a/tests/biblio2yaml/reese.biblatex b/tests/biblio2yaml/reese.biblatex
--- a/tests/biblio2yaml/reese.biblatex
+++ b/tests/biblio2yaml/reese.biblatex
@@ -57,8 +57,6 @@
   collection-title: 3rd ser.
   page: 168-190
   volume: '15'
-  annote: An article entry with a series and a volume field. Note the format of the
-    series. If the value of the series field is an integer, this number is printed
-    as an ordinal and the string ‘series’ is appended automatically
+  annote: An article entry with a series and a volume field. Note the format of the series. If the value of the series field is an integer, this number is printed as an ordinal and the string ‘series’ is appended automatically
   language: en-US
 ...
diff --git a/tests/biblio2yaml/report.biblatex b/tests/biblio2yaml/report.biblatex
--- a/tests/biblio2yaml/report.biblatex
+++ b/tests/biblio2yaml/report.biblatex
@@ -60,13 +60,10 @@
     given: We Min
   issued:
   - year: 1978
-  title: A hybrid hierarchical model of a Multiple Virtual Storage (MVS) operating
-    system
+  title: A hybrid hierarchical model of a Multiple Virtual Storage (MVS) operating system
   publisher: IBM
   genre: research report
-  annote: This is a report entry for a research report. Note the format of the type
-    field in the database file which uses a localization key. The number of the report
-    is given in the number field. Also note the sorttitle and indextitle fields
+  annote: This is a report entry for a research report. Note the format of the type field in the database file which uses a localization key. The number of the report is given in the number field. Also note the sorttitle and indextitle fields
   number: RC-6947
   language: en-US
 
@@ -85,25 +82,8 @@
   publisher: University of Massachusetts
   publisher-place: Amherst, Mass.
   genre: technical report
-  annote: This is a report entry for a technical report. Note the format of the type
-    field in the database file which uses a localization key. The number of the report
-    is given in the number field. Also note the sorttitle and indextitle fields
-  abstract: The steady state performance of a bulk transfer TCP flow (i.e. a flow
-    with a large amount of data to send, such as FTP transfers) may be characterized
-    by three quantities. The first is the send rate, which is the amount of data sent
-    by the sender in unit time. The second is the throughput, which is the amount
-    of data received by the receiver in unit time. Note that the throughput will always
-    be less than or equal to the send rate due to losses. Finally, the number of non-duplicate
-    packets received by the receiver in unit time gives us the goodput of the connection.
-    The goodput is always less than or equal to the throughput, since the receiver
-    may receive two copies of the same packet due to retransmissions by the sender.
-    In a previous paper, we presented a simple model for predicting the steady state
-    send rate of a bulk transfer TCP flow as a function of loss rate and round trip
-    time. In this paper, we extend that work in two ways. First, we analyze the performance
-    of bulk transfer TCP flows using more precise, stochastic analysis. Second, we
-    build upon the previous analysis to provide both an approximate formula as well
-    as a more accurate stochastic model for the steady state throughput of a bulk
-    transfer TCP flow.
+  annote: This is a report entry for a technical report. Note the format of the type field in the database file which uses a localization key. The number of the report is given in the number field. Also note the sorttitle and indextitle fields
+  abstract: The steady state performance of a bulk transfer TCP flow (i.e. a flow with a large amount of data to send, such as FTP transfers) may be characterized by three quantities. The first is the send rate, which is the amount of data sent by the sender in unit time. The second is the throughput, which is the amount of data received by the receiver in unit time. Note that the throughput will always be less than or equal to the send rate due to losses. Finally, the number of non-duplicate packets received by the receiver in unit time gives us the goodput of the connection. The goodput is always less than or equal to the throughput, since the receiver may receive two copies of the same packet due to retransmissions by the sender. In a previous paper, we presented a simple model for predicting the steady state send rate of a bulk transfer TCP flow as a function of loss rate and round trip time. In this paper, we extend that work in two ways. First, we analyze the performance of bulk transfer TCP flows using more precise, stochastic analysis. Second, we build upon the previous analysis to provide both an approximate formula as well as a more accurate stochastic model for the steady state throughput of a bulk transfer TCP flow.
   number: 99-02
   language: en-US
 ...
diff --git a/tests/biblio2yaml/salam.biblatex b/tests/biblio2yaml/salam.biblatex
--- a/tests/biblio2yaml/salam.biblatex
+++ b/tests/biblio2yaml/salam.biblatex
@@ -60,8 +60,7 @@
     month: 5
     day: 25
   title: Weak and electromagnetic interactions
-  container-title: 'Elementary particle theory: Relativistic groups and analyticity.
-    Proceedings of the eighth Nobel symposium'
+  container-title: 'Elementary particle theory: Relativistic groups and analyticity. Proceedings of the eighth Nobel symposium'
   publisher: Almquist & Wiksell
   publisher-place: Stockholm
   event-place: Aspenäsgarden, Lerum
diff --git a/tests/biblio2yaml/shore.biblatex b/tests/biblio2yaml/shore.biblatex
--- a/tests/biblio2yaml/shore.biblatex
+++ b/tests/biblio2yaml/shore.biblatex
@@ -55,6 +55,5 @@
   page: 9-27
   volume: '93'
   issue: '1'
-  annote: An article entry with series, volume, and number fields. Note the format
-    of the series which is a localization key
+  annote: An article entry with series, volume, and number fields. Note the format of the series which is a localization key
 ...
diff --git a/tests/biblio2yaml/sigfridsson.biblatex b/tests/biblio2yaml/sigfridsson.biblatex
--- a/tests/biblio2yaml/sigfridsson.biblatex
+++ b/tests/biblio2yaml/sigfridsson.biblatex
@@ -73,25 +73,13 @@
     given: Ulf
   issued:
   - year: 1998
-  title: Comparison of methods for deriving atomic charges from the electrostatic
-    potential and moments
+  title: Comparison of methods for deriving atomic charges from the electrostatic potential and moments
   container-title: Journal of Computational Chemistry
   page: 377-395
   volume: '19'
   issue: '4'
-  annote: An article entry with volume, number, and doi fields. Note that the <span
-    style="font-variant:small-caps;">doi</span> is transformed into a clickable link
-    if hyperref support has been enabled
-  abstract: 'Four methods for deriving partial atomic charges from the quantum chemical
-    electrostatic potential (CHELP, CHELPG, Merz-Kollman, and RESP) have been compared
-    and critically evaluated. It is shown that charges strongly depend on how and
-    where the potential points are selected. Two alternative methods are suggested
-    to avoid the arbitrariness in the point-selection schemes and van der Waals exclusion
-    radii: CHELP-BOW, which also estimates the charges from the electrostatic potential,
-    but with potential points that are Boltzmann-weighted after their occurrence in
-    actual simulations using the energy function of the program in which the charges
-    will be used, and CHELMO, which estimates the charges directly from the electrostatic
-    multipole moments. Different criteria for the quality of the charges are discussed.'
+  annote: An article entry with volume, number, and doi fields. Note that the <span style="font-variant:small-caps;">doi</span> is transformed into a clickable link if hyperref support has been enabled
+  abstract: 'Four methods for deriving partial atomic charges from the quantum chemical electrostatic potential (CHELP, CHELPG, Merz-Kollman, and RESP) have been compared and critically evaluated. It is shown that charges strongly depend on how and where the potential points are selected. Two alternative methods are suggested to avoid the arbitrariness in the point-selection schemes and van der Waals exclusion radii: CHELP-BOW, which also estimates the charges from the electrostatic potential, but with potential points that are Boltzmann-weighted after their occurrence in actual simulations using the energy function of the program in which the charges will be used, and CHELMO, which estimates the charges directly from the electrostatic multipole moments. Different criteria for the quality of the charges are discussed.'
   DOI: 10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P
   language: en-US
 ...
diff --git a/tests/biblio2yaml/sorace.biblatex b/tests/biblio2yaml/sorace.biblatex
--- a/tests/biblio2yaml/sorace.biblatex
+++ b/tests/biblio2yaml/sorace.biblatex
@@ -53,8 +53,7 @@
     day: 16
   title: High-speed digital-to-RF converter
   genre: U.S. patent
-  annote: This is a patent entry with a holder field. Note the format of the type
-    and date fields in the database file. Compare almendro, laufenberg, and kowalik
+  annote: This is a patent entry with a holder field. Note the format of the type and date fields in the database file. Compare almendro, laufenberg, and kowalik
   number: '5668842'
   language: en-US
 ...
diff --git a/tests/biblio2yaml/spiegelberg.biblatex b/tests/biblio2yaml/spiegelberg.biblatex
--- a/tests/biblio2yaml/spiegelberg.biblatex
+++ b/tests/biblio2yaml/spiegelberg.biblatex
@@ -61,7 +61,6 @@
   container-title: Studia Philosophica
   page: 189-216
   volume: '29'
-  annote: An article entry. Note the sorttitle and indexsorttitle fields and the markup
-    of the quotes in the database file
+  annote: An article entry. Note the sorttitle and indexsorttitle fields and the markup of the quotes in the database file
   language: de-DE
 ...
diff --git a/tests/biblio2yaml/test-case-conversion.biblatex b/tests/biblio2yaml/test-case-conversion.biblatex
--- a/tests/biblio2yaml/test-case-conversion.biblatex
+++ b/tests/biblio2yaml/test-case-conversion.biblatex
@@ -59,9 +59,7 @@
     given: Ann
   issued:
   - year: 2013
-  title: A title, in English, with a Proper Name and an ACRONYM and a <span class="nocase">camelCase</span>
-    word and some units, 400 <span class="nocase">nm</span>, 3 <span class="nocase">cm</span>,
-    and a quote, *Alea <span class="nocase">iacta est</span>*
+  title: A title, in English, with a Proper Name and an ACRONYM and a <span class="nocase">camelCase</span> word and some units, 400 <span class="nocase">nm</span>, 3 <span class="nocase">cm</span>, and a quote, *Alea <span class="nocase">iacta est</span>*
   container-title: Journal
   language: en-US
 ...
diff --git a/tests/biblio2yaml/thesis.biblatex b/tests/biblio2yaml/thesis.biblatex
--- a/tests/biblio2yaml/thesis.biblatex
+++ b/tests/biblio2yaml/thesis.biblatex
@@ -35,15 +35,12 @@
     dropping-particle: de
   issued:
   - year: 1985
-  title: 'Earl, saint, bishop, skald – and music: The Orkney earldom of the twelfth
-    century. A musicological study'
+  title: 'Earl, saint, bishop, skald – and music: The Orkney earldom of the twelfth century. A musicological study'
   title-short: Earl, saint, bishop, skald – and music
   publisher: Uppsala Universitet
   publisher-place: Uppsala
   genre: PhD thesis
-  annote: This is a typical thesis entry for a PhD thesis. Note the type field in
-    the database file which uses a localization key. Also note the format of the printed
-    name and compare the useprefix option in the options field as well as vangennep
+  annote: This is a typical thesis entry for a PhD thesis. Note the type field in the database file which uses a localization key. Also note the format of the printed name and compare the useprefix option in the options field as well as vangennep
   language: en-GB
 
 - id: loh
@@ -57,7 +54,6 @@
   publisher: Massachusetts Institute of Technology
   publisher-place: Cambridge, Mass.
   genre: Master’s thesis
-  annote: This is a typical thesis entry for an MA thesis. Note the type field in
-    the database file which uses a localization key
+  annote: This is a typical thesis entry for an MA thesis. Note the type field in the database file which uses a localization key
   language: en-US
 ...
diff --git a/tests/biblio2yaml/title-and-shorttitle.biblatex b/tests/biblio2yaml/title-and-shorttitle.biblatex
--- a/tests/biblio2yaml/title-and-shorttitle.biblatex
+++ b/tests/biblio2yaml/title-and-shorttitle.biblatex
@@ -40,14 +40,12 @@
 references:
 - id: item4
   type: book
-  title: 'The title: With a colon in the “title” field: And a subtitle, in two separate
-    fields; plus a separate “shorttitle” field'
+  title: 'The title: With a colon in the “title” field: And a subtitle, in two separate fields; plus a separate “shorttitle” field'
   title-short: The shorttitle
 
 - id: item3
   type: book
-  title: 'The title: With a colon in the “title” field: And a subtitle, in two separate
-    fields'
+  title: 'The title: With a colon in the “title” field: And a subtitle, in two separate fields'
   title-short: The title
 
 - id: item2
diff --git a/tests/biblio2yaml/vangennep-related.biblatex b/tests/biblio2yaml/vangennep-related.biblatex
--- a/tests/biblio2yaml/vangennep-related.biblatex
+++ b/tests/biblio2yaml/vangennep-related.biblatex
@@ -57,7 +57,6 @@
   title-short: Rites de passage
   publisher: Nourry
   publisher-place: Paris
-  annote: A variant of the vangennep entry related to its translation. Note the format
-    of the related and relatedtype fields
+  annote: A variant of the vangennep entry related to its translation. Note the format of the related and relatedtype fields
   language: fr-FR
 ...
diff --git a/tests/biblio2yaml/vangennep-trans.biblatex b/tests/biblio2yaml/vangennep-trans.biblatex
--- a/tests/biblio2yaml/vangennep-trans.biblatex
+++ b/tests/biblio2yaml/vangennep-trans.biblatex
@@ -57,7 +57,6 @@
   title: The rites of passage
   title-short: Rites of passage
   publisher: University of Chicago Press
-  annote: A translation of the vangennep entry. Note the translator and origlanguage
-    fields. Compare with the vangennep:related entry.
+  annote: A translation of the vangennep entry. Note the translator and origlanguage fields. Compare with the vangennep:related entry.
   language: en-US
 ...
diff --git a/tests/biblio2yaml/vangennep.biblatex b/tests/biblio2yaml/vangennep.biblatex
--- a/tests/biblio2yaml/vangennep.biblatex
+++ b/tests/biblio2yaml/vangennep.biblatex
@@ -49,7 +49,6 @@
   title-short: Rites de passage
   publisher: Nourry
   publisher-place: Paris
-  annote: A book entry. Note the format of the printed name and compare the useprefix
-    option in the options field as well as brandt and geer
+  annote: A book entry. Note the format of the printed name and compare the useprefix option in the options field as well as brandt and geer
   language: fr-FR
 ...
diff --git a/tests/biblio2yaml/vazques-de-parga-mvbook.biblatex b/tests/biblio2yaml/vazques-de-parga-mvbook.biblatex
--- a/tests/biblio2yaml/vazques-de-parga-mvbook.biblatex
+++ b/tests/biblio2yaml/vazques-de-parga-mvbook.biblatex
@@ -63,7 +63,6 @@
   publisher-place: Pamplona
   number-of-volumes: '3'
   note: Ed. facs. de la realizada en 1948–49
-  annote: A multivolume book cited as a whole. This is a book entry with volumes,
-    note, sorttitle, and indextitle fields
+  annote: A multivolume book cited as a whole. This is a book entry with volumes, note, sorttitle, and indextitle fields
   language: es-ES
 ...
diff --git a/tests/biblio2yaml/vazques-de-parga.biblatex b/tests/biblio2yaml/vazques-de-parga.biblatex
--- a/tests/biblio2yaml/vazques-de-parga.biblatex
+++ b/tests/biblio2yaml/vazques-de-parga.biblatex
@@ -62,7 +62,6 @@
   publisher-place: Pamplona
   number-of-volumes: '3'
   note: Ed. facs. de la realizada en 1948–49
-  annote: A multivolume book cited as a whole. This is a book entry with volumes,
-    note, sorttitle, and indextitle fields
+  annote: A multivolume book cited as a whole. This is a book entry with volumes, note, sorttitle, and indextitle fields
   language: es-ES
 ...
diff --git a/tests/biblio2yaml/vizedom-related.biblatex b/tests/biblio2yaml/vizedom-related.biblatex
--- a/tests/biblio2yaml/vizedom-related.biblatex
+++ b/tests/biblio2yaml/vizedom-related.biblatex
@@ -56,7 +56,6 @@
   title: The rites of passage
   title-short: Rites of passage
   publisher: University of Chicago Press
-  annote: A translated work from vangennep. Note the format of the related and relatedtype
-    fields
+  annote: A translated work from vangennep. Note the format of the related and relatedtype fields
   language: en-US
 ...
diff --git a/tests/biblio2yaml/wassenberg.biblatex b/tests/biblio2yaml/wassenberg.biblatex
--- a/tests/biblio2yaml/wassenberg.biblatex
+++ b/tests/biblio2yaml/wassenberg.biblatex
@@ -63,15 +63,8 @@
     day: 17
   title: Faster radix sort via virtual memory and write-combining
   version: '1'
-  annote: A recent online reference from arXiv using the new (April 2007 onward) identifier
-    format. Note the eprint, eprinttype, and eprintclass fields. Also note that the
-    arXiv reference is transformed into a clickable link if hyperref support has been
-    enabled
-  abstract: Sorting algorithms are the deciding factor for the performance of common
-    operations such as removal of duplicates or database sort-merge joins. This work
-    focuses on 32-bit integer keys, optionally paired with a 32-bit value. We present
-    a fast radix sorting algorithm that builds upon a microarchitecture-aware variant
-    of counting sort
+  annote: A recent online reference from arXiv using the new (April 2007 onward) identifier format. Note the eprint, eprinttype, and eprintclass fields. Also note that the arXiv reference is transformed into a clickable link if hyperref support has been enabled
+  abstract: Sorting algorithms are the deciding factor for the performance of common operations such as removal of duplicates or database sort-merge joins. This work focuses on 32-bit integer keys, optionally paired with a 32-bit value. We present a fast radix sorting algorithm that builds upon a microarchitecture-aware variant of counting sort
   URL: http://arxiv.org/abs/1008.2849v1
   language: en-US
 ...
diff --git a/tests/biblio2yaml/westfahl-frontier.biblatex b/tests/biblio2yaml/westfahl-frontier.biblatex
--- a/tests/biblio2yaml/westfahl-frontier.biblatex
+++ b/tests/biblio2yaml/westfahl-frontier.biblatex
@@ -48,7 +48,6 @@
   title-short: Space and beyond
   publisher: Greenwood
   publisher-place: Westport, Conn.; London
-  annote: This is a collection entry. Note the format of the location field as well
-    as the subtitle and booksubtitle fields
+  annote: This is a collection entry. Note the format of the location field as well as the subtitle and booksubtitle fields
   language: en-US
 ...
diff --git a/tests/biblio2yaml/westfahl-space.biblatex b/tests/biblio2yaml/westfahl-space.biblatex
--- a/tests/biblio2yaml/westfahl-space.biblatex
+++ b/tests/biblio2yaml/westfahl-space.biblatex
@@ -72,15 +72,13 @@
     given: Gary
   issued:
   - year: 2000
-  title: 'The true frontier: Confronting and avoiding the realities of space in
-    American science fiction films'
+  title: 'The true frontier: Confronting and avoiding the realities of space in American science fiction films'
   title-short: The true frontier
   container-title: 'Space and beyond: The frontier theme in science fiction'
   publisher: Greenwood
   publisher-place: Westport, Conn.; London
   page: 55-65
-  annote: A cross-referenced article from a collection. This is an incollection entry
-    with a crossref field. Note the subtitle and indextitle fields
+  annote: A cross-referenced article from a collection. This is an incollection entry with a crossref field. Note the subtitle and indextitle fields
   language: en-US
 
 - id: westfahl:frontier
@@ -94,7 +92,6 @@
   title-short: Space and beyond
   publisher: Greenwood
   publisher-place: Westport, Conn.; London
-  annote: This is a collection entry. Note the format of the location field as well
-    as the subtitle and booksubtitle fields
+  annote: This is a collection entry. Note the format of the location field as well as the subtitle and booksubtitle fields
   language: en-US
 ...
diff --git a/tests/biblio2yaml/yoon.biblatex b/tests/biblio2yaml/yoon.biblatex
--- a/tests/biblio2yaml/yoon.biblatex
+++ b/tests/biblio2yaml/yoon.biblatex
@@ -51,8 +51,7 @@
     given: Kyo Han
   issued:
   - year: 2006
-  title: 'Palladium pincer complexes with reduced bond angle strain: Efficient catalysts
-    for the Heck reaction'
+  title: 'Palladium pincer complexes with reduced bond angle strain: Efficient catalysts for the Heck reaction'
   title-short: Palladium pincer complexes with reduced bond angle strain
   container-title: Organometallics
   page: 2409-2411
diff --git a/tests/test-pandoc-citeproc.hs b/tests/test-pandoc-citeproc.hs
--- a/tests/test-pandoc-citeproc.hs
+++ b/tests/test-pandoc-citeproc.hs
@@ -127,7 +127,8 @@
   (ec, result') <- pipeProcess
                      (Just [("LANG","en_US.UTF-8"),("HOME",".")])
                      pandocCiteprocPath
-                     ["--bib2yaml", "-f", drop 1 $ takeExtension fp]
+                     ["--bib2yaml", "-f", drop 1 $ takeExtension fp,
+                      "--columns=0"]
                      (UTF8.fromStringLazy bib)
   let result = UTF8.toStringLazy result'
   if ec == ExitSuccess
