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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
```
% pandoc -f jats -t native
<dedication>
<named-book-part-body>
<p>This is the dedication text.</p>
</named-book-part-body>
</dedication>
^D
[ Header 1 ( "" , [] , [] ) [ Str "Dedication" ]
, Para
[ Str "This"
, Space
, Str "is"
, Space
, Str "the"
, Space
, Str "dedication"
, Space
, Str "text."
]
]
```
```
% pandoc -f jats -t native
<foreword>
<named-book-part-body>
<p>This is the foreword text.</p>
</named-book-part-body>
</foreword>
^D
[ Header 1 ( "" , [] , [] ) [ Str "Foreword" ]
, Para
[ Str "This"
, Space
, Str "is"
, Space
, Str "the"
, Space
, Str "foreword"
, Space
, Str "text."
]
]
```
```
% pandoc -f jats -t native
<preface>
<named-book-part-body>
<p>This is the preface text.</p>
</named-book-part-body>
</preface>
^D
[ Header 1 ( "" , [] , [] ) [ Str "Preface" ]
, Para
[ Str "This"
, Space
, Str "is"
, Space
, Str "the"
, Space
, Str "preface"
, Space
, Str "text."
]
]
```
|