pandoc/test/command/6890.md
John MacFarlane 0bdcf415e4 Switch from pretty-simple to pretty-show for native output.
Update tests.

Reason:  it turns out that the native output generated by
pretty-simple isn't always readable by the native reader.
According to https://github.com/cdepillabout/pretty-simple/issues/99
it is not a design goal of the library that the rendered values
be readable using 'read'.  This makes it unsuitable for our
purposes.

pretty-show is a bit slower and it uses 4-space indents
(non-configurable), but it doesn't have this serious drawback.
2021-09-28 21:17:53 -07:00

3.1 KiB

% pandoc -t native --citeproc
---
references:
- author:
  - family: Früchtel
    given: Frank
  - family: Budde
    given: Wolfgang
  - family: Cyprian
    given: Gudrun
  edition: 3
  id: fruchtel-sozialer-2013a
  issued: 2013
  language: de-DE
  publisher: Springer VS
  publisher-place: Wiesbaden, Germany
  title: "Sozialer Raum und Soziale Arbeit Fieldbook: Methoden und
    Techniken"
  title-short: Sozialer Raum und Soziale Arbeit Fieldbook
  type: book
---

@fruchtel-sozialer-2013a

Some text.[^1]

[^1]: @fruchtel-sozialer-2013a
^D
[ Para
    [ Cite
        [ Citation
            { citationId = "fruchtel-sozialer-2013a"
            , citationPrefix = []
            , citationSuffix = []
            , citationMode = AuthorInText
            , citationNoteNum = 1
            , citationHash = 0
            }
        ]
        [ Str "Fr\252chtel,"
        , Space
        , Str "Budde,"
        , Space
        , Str "and"
        , Space
        , Str "Cyprian"
        , Space
        , Str "(2013)"
        ]
    ]
, Para
    [ Str "Some"
    , Space
    , Str "text."
    , Note
        [ Para
            [ Cite
                [ Citation
                    { citationId = "fruchtel-sozialer-2013a"
                    , citationPrefix = []
                    , citationSuffix = []
                    , citationMode = AuthorInText
                    , citationNoteNum = 2
                    , citationHash = 0
                    }
                ]
                [ Str "Fr\252chtel,"
                , Space
                , Str "Budde,"
                , Space
                , Str "and"
                , Space
                , Str "Cyprian"
                , Space
                , Str "(2013)"
                ]
            ]
        ]
    ]
, Div
    ( "refs"
    , [ "references" , "csl-bib-body" , "hanging-indent" ]
    , []
    )
    [ Div
        ( "ref-fruchtel-sozialer-2013a" , [ "csl-entry" ] , [] )
        [ Para
            [ Str "Fr\252chtel,"
            , Space
            , Str "Frank,"
            , Space
            , Str "Wolfgang"
            , Space
            , Str "Budde,"
            , Space
            , Str "and"
            , Space
            , Str "Gudrun"
            , Space
            , Str "Cyprian."
            , Space
            , Str "2013."
            , Space
            , Emph
                [ Str "Sozialer"
                , Space
                , Str "Raum"
                , Space
                , Str "und"
                , Space
                , Str "Soziale"
                , Space
                , Str "Arbeit"
                , Space
                , Str "Fieldbook:"
                , Space
                , Str "Methoden"
                , Space
                , Str "und"
                , Space
                , Str "Techniken"
                ]
            , Str "."
            , Space
            , Str "3rd"
            , Space
            , Str "ed."
            , Space
            , Str "Wiesbaden,"
            , Space
            , Str "Germany:"
            , Space
            , Str "Springer"
            , Space
            , Str "VS."
            ]
        ]
    ]
]