diff options
| author | Sean Soon <[email protected]> | 2025-08-26 13:34:33 +0100 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2025-08-26 18:22:16 +0200 |
| commit | 1bee23683d10b2e0ed4a539fecf510f01ad4523e (patch) | |
| tree | e2e0b1ad37f7549a3917c6f0f2ac1e08751fb9ba /test/man-reader.native | |
| parent | 10404ca6d5c1fe95a9cc1e467becc01de56e3e38 (diff) | |
Support header and footer in MAN reader
Diffstat (limited to 'test/man-reader.native')
| -rw-r--r-- | test/man-reader.native | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/test/man-reader.native b/test/man-reader.native index 1fe99ae35..e0d14ca79 100644 --- a/test/man-reader.native +++ b/test/man-reader.native @@ -6,16 +6,12 @@ Pandoc , MetaInlines [ Str "Oct" , Space , Str "17," , Space , Str "2018" ] ) - , ( "section" , MetaInlines [] ) - , ( "title" - , MetaInlines - [ Str "Pandoc" - , Space - , Str "Man" - , Space - , Str "tests" - ] + , ( "footer" , MetaInlines [ Str "v1.0.1" ] ) + , ( "header" + , MetaInlines [ Str "Pandoc" , Space , Str "Tests" ] ) + , ( "section" , MetaInlines [ Str "1" ] ) + , ( "title" , MetaInlines [ Str "PANDOC-MAN-TESTS" ] ) ] } [ Para |
