1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
```
% pandoc -f jats -t native -s
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.2 20190208//EN"
"JATS-archivearticle1.dtd">
<article xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:xlink="http://www.w3.org/1999/xlink" dtd-version="1.2" article-type="other">
<front>
<journal-meta>
<journal-id></journal-id>
<journal-title-group>
</journal-title-group>
<issn></issn>
<publisher>
<publisher-name></publisher-name>
</publisher>
</journal-meta>
<article-meta>
<permissions>
</permissions>
</article-meta>
</front>
<body>
<p>Doe (2006)</p>
</body>
<back>
<ref-list>
<title>Bibliography</title>
<ref id="ref-test">
<mixed-citation>Doe, J. (2006). Test,
<italic>81</italic>.</mixed-citation>
</ref>
</ref-list>
</back>
</article>
^D
Pandoc
Meta
{ unMeta =
fromList
[ ( "references"
, MetaList
[ MetaMap (fromList [ ( "id" , MetaString "test" ) ]) ]
)
]
}
[ Para [ Str "Doe" , Space , Str "(2006)" ]
, Header 1 ( "" , [] , [] ) [ Str "Bibliography" ]
, Div ( "refs" , [] , [] ) []
]
```
|