File: copyright_hints

package info (click to toggle)
pandoc 2.9.2.1-1%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 23,412 kB
  • sloc: haskell: 63,627; xml: 3,294; makefile: 325; sh: 137; perl: 51; lisp: 32
file content (1530 lines) | stat: -rw-r--r-- 42,140 bytes parent folder | download
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: FIXME
Upstream-Contact: FIXME
Source: FIXME
Disclaimer: Autogenerated by CDBS

Files: BUGS
 CONTRIBUTING.md
 INSTALL.md
 Makefile
 RELEASE-CHECKLIST
 Setup.hs
 cabal.project
 data/abbreviations
 data/bash_completion.tpl
 data/docx/[Content_Types].xml
 data/docx/_rels/.rels
 data/docx/docProps/app.xml
 data/docx/docProps/core.xml
 data/docx/docProps/custom.xml
 data/docx/word/_rels/document.xml.rels
 data/docx/word/_rels/footnotes.xml.rels
 data/docx/word/comments.xml
 data/docx/word/document.xml
 data/docx/word/fontTable.xml
 data/docx/word/footnotes.xml
 data/docx/word/numbering.xml
 data/docx/word/settings.xml
 data/docx/word/styles.xml
 data/docx/word/theme/theme1.xml
 data/docx/word/webSettings.xml
 data/dzslides/template.html
 data/epub.css
 data/init.lua
 data/jats.csl
 data/make-reference-files.hs
 data/odt/META-INF/manifest.xml
 data/odt/Thumbnails/thumbnail.png
 data/odt/content.xml
 data/odt/manifest.rdf
 data/odt/meta.xml
 data/odt/mimetype
 data/odt/settings.xml
 data/odt/styles.xml
 data/pptx/[Content_Types].xml
 data/pptx/_rels/.rels
 data/pptx/docProps/app.xml
 data/pptx/docProps/core.xml
 data/pptx/ppt/_rels/presentation.xml.rels
 data/pptx/ppt/notesMasters/_rels/notesMaster1.xml.rels
 data/pptx/ppt/notesMasters/notesMaster1.xml
 data/pptx/ppt/notesSlides/_rels/notesSlide1.xml.rels
 data/pptx/ppt/notesSlides/_rels/notesSlide2.xml.rels
 data/pptx/ppt/notesSlides/notesSlide1.xml
 data/pptx/ppt/notesSlides/notesSlide2.xml
 data/pptx/ppt/presProps.xml
 data/pptx/ppt/presentation.xml
 data/pptx/ppt/slideLayouts/_rels/slideLayout1.xml.rels
 data/pptx/ppt/slideLayouts/_rels/slideLayout10.xml.rels
 data/pptx/ppt/slideLayouts/_rels/slideLayout11.xml.rels
 data/pptx/ppt/slideLayouts/_rels/slideLayout2.xml.rels
 data/pptx/ppt/slideLayouts/_rels/slideLayout3.xml.rels
 data/pptx/ppt/slideLayouts/_rels/slideLayout4.xml.rels
 data/pptx/ppt/slideLayouts/_rels/slideLayout5.xml.rels
 data/pptx/ppt/slideLayouts/_rels/slideLayout6.xml.rels
 data/pptx/ppt/slideLayouts/_rels/slideLayout7.xml.rels
 data/pptx/ppt/slideLayouts/_rels/slideLayout8.xml.rels
 data/pptx/ppt/slideLayouts/_rels/slideLayout9.xml.rels
 data/pptx/ppt/slideLayouts/slideLayout1.xml
 data/pptx/ppt/slideLayouts/slideLayout10.xml
 data/pptx/ppt/slideLayouts/slideLayout11.xml
 data/pptx/ppt/slideLayouts/slideLayout2.xml
 data/pptx/ppt/slideLayouts/slideLayout3.xml
 data/pptx/ppt/slideLayouts/slideLayout4.xml
 data/pptx/ppt/slideLayouts/slideLayout5.xml
 data/pptx/ppt/slideLayouts/slideLayout6.xml
 data/pptx/ppt/slideLayouts/slideLayout7.xml
 data/pptx/ppt/slideLayouts/slideLayout8.xml
 data/pptx/ppt/slideLayouts/slideLayout9.xml
 data/pptx/ppt/slideMasters/_rels/slideMaster1.xml.rels
 data/pptx/ppt/slideMasters/slideMaster1.xml
 data/pptx/ppt/slides/_rels/slide1.xml.rels
 data/pptx/ppt/slides/_rels/slide2.xml.rels
 data/pptx/ppt/slides/_rels/slide3.xml.rels
 data/pptx/ppt/slides/_rels/slide4.xml.rels
 data/pptx/ppt/slides/slide1.xml
 data/pptx/ppt/slides/slide2.xml
 data/pptx/ppt/slides/slide3.xml
 data/pptx/ppt/slides/slide4.xml
 data/pptx/ppt/tableStyles.xml
 data/pptx/ppt/theme/theme1.xml
 data/pptx/ppt/theme/theme2.xml
 data/pptx/ppt/viewProps.xml
 data/sample.lua
 data/templates/.github/ISSUE_TEMPLATE.md
 data/templates/.github/PULL_REQUEST_TEMPLATE.md
 data/templates/default.asciidoc
 data/templates/default.asciidoctor
 data/templates/default.commonmark
 data/templates/default.context
 data/templates/default.docbook4
 data/templates/default.docbook5
 data/templates/default.dokuwiki
 data/templates/default.dzslides
 data/templates/default.epub2
 data/templates/default.epub3
 data/templates/default.haddock
 data/templates/default.html4
 data/templates/default.html5
 data/templates/default.icml
 data/templates/default.jats_archiving
 data/templates/default.jats_publishing
 data/templates/default.jira
 data/templates/default.latex
 data/templates/default.man
 data/templates/default.markdown
 data/templates/default.mediawiki
 data/templates/default.ms
 data/templates/default.muse
 data/templates/default.opendocument
 data/templates/default.opml
 data/templates/default.org
 data/templates/default.plain
 data/templates/default.revealjs
 data/templates/default.rst
 data/templates/default.rtf
 data/templates/default.s5
 data/templates/default.slideous
 data/templates/default.slidy
 data/templates/default.tei
 data/templates/default.texinfo
 data/templates/default.textile
 data/templates/default.xwiki
 data/templates/default.zimwiki
 data/templates/styles.html
 data/translations/am.yaml
 data/translations/bg.yaml
 data/translations/bn.yaml
 data/translations/cs.yaml
 data/translations/de.yaml
 data/translations/el.yaml
 data/translations/en.yaml
 data/translations/eo.yaml
 data/translations/et.yaml
 data/translations/eu.yaml
 data/translations/fi.yaml
 data/translations/hi.yaml
 data/translations/hr.yaml
 data/translations/is.yaml
 data/translations/it.yaml
 data/translations/km.yaml
 data/translations/ko.yaml
 data/translations/lo.yaml
 data/translations/lt.yaml
 data/translations/lv.yaml
 data/translations/nl.yaml
 data/translations/no.yaml
 data/translations/pl.yaml
 data/translations/rm.yaml
 data/translations/ro.yaml
 data/translations/ru.yaml
 data/translations/sk.yaml
 data/translations/sl.yaml
 data/translations/sq.yaml
 data/translations/sr-cyrl.yaml
 data/translations/sr.yaml
 data/translations/sv.yaml
 data/translations/th.yaml
 data/translations/tr.yaml
 data/translations/uk.yaml
 data/vimwiki.css
 debian/README.Debian
 debian/README.source
 debian/TODO
 debian/compat
 debian/control
 debian/control.in
 debian/gbp.conf
 debian/libghc-pandoc-doc.doc-base
 debian/pandoc-data.install
 debian/pandoc.install
 debian/pandoc.lintian-overrides
 debian/patches/020200417~a9ef15b.patch
 debian/patches/2001_templates_avoid_privacy_breach.patch
 debian/patches/2002_program_package_hint.patch
 debian/patches/series
 debian/rules
 debian/source/format
 debian/watch
 doc/customizing-pandoc.md
 doc/epub.md
 doc/filters.md
 doc/getting-started.md
 doc/lua-filters.md
 doc/org.md
 doc/using-the-pandoc-api.md
 linux/Dockerfile
 linux/Makefile
 linux/control.in
 linux/make_tarball.sh
 macos/Makefile
 macos/distribution.xml.in
 macos/uninstall-pandoc.pl
 man/manfilter.lua
 man/pandoc.1.after
 man/pandoc.1.before
 prelude/Prelude.hs
 src/Text/Pandoc/Writers/Math.hs
 stack.yaml
 test/Tests/Writers/AsciiDoc.hs
 test/Tests/Writers/ConTeXt.hs
 test/Tests/Writers/Docbook.hs
 test/Tests/Writers/Docx.hs
 test/Tests/Writers/FB2.hs
 test/Tests/Writers/HTML.hs
 test/Tests/Writers/JATS.hs
 test/Tests/Writers/LaTeX.hs
 test/Tests/Writers/Markdown.hs
 test/Tests/Writers/Muse.hs
 test/Tests/Writers/Native.hs
 test/Tests/Writers/OOXML.hs
 test/Tests/Writers/Org.hs
 test/Tests/Writers/Plain.hs
 test/Tests/Writers/Powerpoint.hs
 test/Tests/Writers/RST.hs
 test/Tests/Writers/TEI.hs
 test/bodybg.gif
 test/command/1126.md
 test/command/1166.md
 test/command/1279.md
 test/command/1390.md
 test/command/1592.md
 test/command/1629.md
 test/command/168.md
 test/command/1710.md
 test/command/1718.md
 test/command/1745.md
 test/command/1762.md
 test/command/1773.md
 test/command/1841.md
 test/command/1881.md
 test/command/1905.md
 test/command/2118.md
 test/command/2228.md
 test/command/2378.md
 test/command/2397.md
 test/command/2434.md
 test/command/2549.md
 test/command/2552.md
 test/command/256.md
 test/command/2602.md
 test/command/2606.md
 test/command/262.md
 test/command/2662.md
 test/command/2834.md
 test/command/2874.md
 test/command/2994.md
 test/command/3113.md
 test/command/3123.md
 test/command/3236.md
 test/command/3257.md
 test/command/3309.md
 test/command/3314.md
 test/command/3324.md
 test/command/3337.md
 test/command/3348.md
 test/command/3401.md
 test/command/3407.md
 test/command/3422.md
 test/command/3432.md
 test/command/3432a.md
 test/command/3450.md
 test/command/3475.md
 test/command/3487.md
 test/command/3494.md
 test/command/3497.md
 test/command/3499.md
 test/command/3510-export.latex
 test/command/3510-src.hs
 test/command/3510-subdoc.org
 test/command/3510.md
 test/command/3511.md
 test/command/3512.md
 test/command/3516.md
 test/command/3518.md
 test/command/3523.md
 test/command/3526.md
 test/command/3529.md
 test/command/3530.md
 test/command/3531.md
 test/command/3533-rst-csv-tables.csv
 test/command/3533-rst-csv-tables.md
 test/command/3534.md
 test/command/3537.md
 test/command/3539.md
 test/command/3558.md
 test/command/3568.md
 test/command/3570.md
 test/command/3577.md
 test/command/3585.md
 test/command/3587.md
 test/command/3596.md
 test/command/3615.md
 test/command/3619.md
 test/command/3630.md
 test/command/3667.md
 test/command/3674.md
 test/command/3675.md
 test/command/3681.md
 test/command/3690.md
 test/command/3701.md
 test/command/3706.md
 test/command/3708.md
 test/command/3715.md
 test/command/3716.md
 test/command/3730.md
 test/command/3733.md
 test/command/3734.md
 test/command/3736.md
 test/command/3755.md
 test/command/3771.md
 test/command/3773.md
 test/command/3779.md
 test/command/3792.md
 test/command/3794.md
 test/command/3803.md
 test/command/3804.md
 test/command/3816.md
 test/command/3824.md
 test/command/3840.md
 test/command/3853.md
 test/command/3880.md
 test/command/3880.txt
 test/command/3916.md
 test/command/3937.md
 test/command/3947.md
 test/command/3958.md
 test/command/3968.md
 test/command/3971.md
 test/command/3971b.tex
 test/command/3974.md
 test/command/3978.md
 test/command/3983.md
 test/command/3989.md
 test/command/4007.md
 test/command/4012.md
 test/command/4016.md
 test/command/4019.md
 test/command/4038.md
 test/command/4054.md
 test/command/4056.md
 test/command/4061.md
 test/command/4062.md
 test/command/4068.md
 test/command/4091.md
 test/command/4113.md
 test/command/4119.md
 test/command/4125.md
 test/command/4134.md
 test/command/4156.md
 test/command/4159.md
 test/command/4162.md
 test/command/4164.md
 test/command/4171.md
 test/command/4172.md
 test/command/4183.md
 test/command/4186.md
 test/command/4193.md
 test/command/4199.md
 test/command/4240.md
 test/command/4253.md
 test/command/4254.md
 test/command/4280.md
 test/command/4281.md
 test/command/4284.md
 test/command/4306.md
 test/command/4320.md
 test/command/4374.md
 test/command/4382.md
 test/command/4420.md
 test/command/4424.md
 test/command/4442.md
 test/command/4454.md
 test/command/4499.md
 test/command/4513.md
 test/command/4527.md
 test/command/4528.md
 test/command/4529.md
 test/command/4545.md
 test/command/4550.md
 test/command/4553.md
 test/command/4576.md
 test/command/4578.md
 test/command/4579.md
 test/command/4589.md
 test/command/4594.md
 test/command/4598.md
 test/command/4624.md
 test/command/4635.md
 test/command/4637.md
 test/command/4639.md
 test/command/4653.md
 test/command/4667.md
 test/command/4669.md
 test/command/4677.md
 test/command/4690.md
 test/command/4715.md
 test/command/4722.md
 test/command/4742.md
 test/command/4743.md
 test/command/4748.md
 test/command/4768.md
 test/command/4781.md
 test/command/4794.md
 test/command/4811.md
 test/command/4817.md
 test/command/4819.md
 test/command/4832.md
 test/command/4833.md
 test/command/4842.md
 test/command/4845.md
 test/command/4848.md
 test/command/4860.md
 test/command/4877.md
 test/command/4880.md
 test/command/4885.md
 test/command/4908.md
 test/command/4913.md
 test/command/4919.md
 test/command/4928.md
 test/command/4933.md
 test/command/4960.md
 test/command/5010.md
 test/command/5014.md
 test/command/5039.md
 test/command/5050.md
 test/command/5053.md
 test/command/5072.md
 test/command/5079.md
 test/command/5080.md
 test/command/5099.md
 test/command/5107.md
 test/command/5119.md
 test/command/512.md
 test/command/5121.md
 test/command/5128.md
 test/command/5177.md
 test/command/5178.md
 test/command/5182.md
 test/command/5182.txt
 test/command/5195.md
 test/command/5233.md
 test/command/5241.md
 test/command/5271.md
 test/command/5285.md
 test/command/5304.md
 test/command/5321.md
 test/command/5340.md
 test/command/5360.md
 test/command/5367.md
 test/command/5368.md
 test/command/5369.md
 test/command/5407.md
 test/command/5410.md
 test/command/5416.md
 test/command/5420.md
 test/command/5439.md
 test/command/5446.md
 test/command/5474-figures.md
 test/command/5474-tables.md
 test/command/5476.md
 test/command/5495.md
 test/command/5519.md
 test/command/5529.md
 test/command/5540.md
 test/command/5543.md
 test/command/5549.md
 test/command/5565.md
 test/command/5566.md
 test/command/5574.md
 test/command/5619.md
 test/command/5620.md
 test/command/5627.md
 test/command/5635.md
 test/command/5642.md
 test/command/5650.md
 test/command/5654.md
 test/command/5655.md
 test/command/5682.md
 test/command/5684.md
 test/command/5686.md
 test/command/5690.md
 test/command/5700-metadata-file-1.yml
 test/command/5700-metadata-file-2.yml
 test/command/5700.md
 test/command/5705.md
 test/command/5708.md
 test/command/5711.md
 test/command/5714.md
 test/command/5740.md
 test/command/5753.md
 test/command/5795.md
 test/command/5797.md
 test/command/5805.md
 test/command/5813.md
 test/command/5819.md
 test/command/5836.md
 test/command/5845.md
 test/command/5846.md
 test/command/5849-prefix.md
 test/command/5857.md
 test/command/5881.md
 test/command/5885.md
 test/command/5898.md
 test/command/5899.md
 test/command/5904.md
 test/command/5918.md
 test/command/5936.md
 test/command/5967.md
 test/command/5986.md
 test/command/6009.md
 test/command/6030.md
 test/command/6033.md
 test/command/6034.md
 test/command/6043.md
 test/command/6062.md
 test/command/6107.md
 test/command/6114.md
 test/command/6119.md
 test/command/6133.md
 test/command/6137.md
 test/command/645.md
 test/command/853.md
 test/command/934.md
 test/command/982.md
 test/command/987.md
 test/command/A.txt
 test/command/B.txt
 test/command/C.txt
 test/command/D.txt
 test/command/SVG_logo-without-xml-declaration.svg
 test/command/SVG_logo.svg
 test/command/abbrevs
 test/command/adjacent_latex_blocks.md
 test/command/bar.tex
 test/command/cite-in-inline-note.md
 test/command/corrupt.svg
 test/command/csv.md
 test/command/custom-attributes.html
 test/command/defaults1.yaml
 test/command/defaults2.yaml
 test/command/dots.md
 test/command/emoji.md
 test/command/empty-inline-code.txt
 test/command/empty_paragraphs.md
 test/command/gfm.md
 test/command/hspace.md
 test/command/html-read-figure.md
 test/command/html-trim-definition-list-terms.md
 test/command/hyphenat.md
 test/command/ifstrequal.md
 test/command/indented-fences.md
 test/command/inkscape-cube.svg
 test/command/latex-color.md
 test/command/latex-command-comment.md
 test/command/latex-fontawesome.md
 test/command/latex-tabular-column-specs.md
 test/command/lettrine.md
 test/command/lstlisting.md
 test/command/lua-pandoc-state.lua
 test/command/lua-pandoc-state.md
 test/command/macro-defs-in-preamble.md
 test/command/macros.md
 test/command/make-section-column-divs.md
 test/command/md-abbrevs.md
 test/command/multiple-metadata-blocks.md
 test/command/parse-raw.md
 test/command/refs.md
 test/command/rst-links.md
 test/command/section-divs.md
 test/command/setext-fenced-div.md
 test/command/shift-heading-level-by.md
 test/command/sloppypar.md
 test/command/smart.md
 test/command/sub-file-chapter-1.tex
 test/command/sub-file-chapter-2.tex
 test/command/svg.md
 test/command/tabularx.md
 test/command/tasklist.md
 test/command/tex-group.md
 test/command/toc.md
 test/command/translations.md
 test/command/vars-and-metadata.md
 test/command/video-audio.md
 test/command/write18.md
 test/command/yaml-metadata-blocks.md
 test/command/yaml-metadata.yaml
 test/command/yaml-with-chomp.md
 test/creole-reader.native
 test/docbook-chapter.docbook
 test/docbook-chapter.native
 test/docbook-reader.native
 test/docbook-xref.docbook
 test/docbook-xref.native
 test/docx/0_level_headers.native
 test/docx/adjacent_codeblocks.native
 test/docx/already_auto_ident.native
 test/docx/alternate_document_path.native
 test/docx/block_quotes_parse_indent.native
 test/docx/char_styles.native
 test/docx/codeblock.native
 test/docx/comments.native
 test/docx/comments_no_comments.native
 test/docx/compact-style-removal.native
 test/docx/custom-style-no-styles.native
 test/docx/custom-style-preserve.native
 test/docx/custom-style-roundtrip-end.native
 test/docx/custom-style-with-styles.native
 test/docx/custom_style.native
 test/docx/deep_normalize.native
 test/docx/definition_list.native
 test/docx/document-properties-short-desc.native
 test/docx/document-properties.native
 test/docx/drop_cap.native
 test/docx/dummy_item_after_list_item.native
 test/docx/dummy_item_after_paragraph.native
 test/docx/enumerated_headings.native
 test/docx/german_styled_lists.native
 test/docx/hanging_indent.native
 test/docx/headers.native
 test/docx/i18n_blocks.native
 test/docx/image_no_embed.native
 test/docx/image_no_embed_writer.native
 test/docx/image_vml.native
 test/docx/image_writer_test.native
 test/docx/inline_code.native
 test/docx/inline_formatting.native
 test/docx/inline_formatting_writer.native
 test/docx/inline_images.native
 test/docx/inline_images_writer.native
 test/docx/inline_images_writer_test.native
 test/docx/instrText_hyperlink.native
 test/docx/link_in_notes.native
 test/docx/links.native
 test/docx/links_writer.native
 test/docx/lists-compact.native
 test/docx/lists.native
 test/docx/lists_continuing.native
 test/docx/lists_level_override.native
 test/docx/lists_restarting.native
 test/docx/lists_sublist_reset.native
 test/docx/lists_writer.native
 test/docx/metadata.native
 test/docx/metadata_after_normal.native
 test/docx/nested_anchors_in_header.native
 test/docx/nested_sdt.native
 test/docx/nested_smart_tags.native
 test/docx/normalize.native
 test/docx/notes.native
 test/docx/numbered_header.native
 test/docx/overlapping_targets.native
 test/docx/paragraph_insertion_deletion_accept.native
 test/docx/paragraph_insertion_deletion_all.native
 test/docx/paragraph_insertion_deletion_reject.native
 test/docx/sdt_elements.native
 test/docx/sdt_in_footnote.native
 test/docx/special_punctuation.native
 test/docx/table_one_row.native
 test/docx/table_variable_width.native
 test/docx/table_with_list_cell.native
 test/docx/tables.native
 test/docx/tabs.native
 test/docx/track_changes_deletion_accept.native
 test/docx/track_changes_deletion_all.native
 test/docx/track_changes_deletion_reject.native
 test/docx/track_changes_insertion_accept.native
 test/docx/track_changes_insertion_all.native
 test/docx/track_changes_insertion_reject.native
 test/docx/track_changes_move_accept.native
 test/docx/track_changes_move_all.native
 test/docx/track_changes_move_reject.native
 test/docx/trailing_spaces_in_formatting.native
 test/docx/trim_last_inline.native
 test/docx/unicode.native
 test/docx/unused_anchors.native
 test/docx/verbatim_subsuper.native
 test/dokuwiki_external_images.dokuwiki
 test/dokuwiki_external_images.native
 test/dokuwiki_inline_formatting.dokuwiki
 test/dokuwiki_inline_formatting.native
 test/dokuwiki_multiblock_table.dokuwiki
 test/dokuwiki_multiblock_table.native
 test/epub/features.native
 test/epub/formatting.native
 test/epub/wasteland.native
 test/fb2/basic.fb2
 test/fb2/basic.markdown
 test/fb2/images-embedded.fb2
 test/fb2/images-embedded.html
 test/fb2/images.fb2
 test/fb2/images.markdown
 test/fb2/math.fb2
 test/fb2/math.markdown
 test/fb2/meta.fb2
 test/fb2/meta.markdown
 test/fb2/reader/emphasis.fb2
 test/fb2/reader/emphasis.native
 test/fb2/reader/epigraph.fb2
 test/fb2/reader/epigraph.native
 test/fb2/reader/meta.fb2
 test/fb2/reader/meta.native
 test/fb2/reader/notes.fb2
 test/fb2/reader/notes.native
 test/fb2/reader/poem.fb2
 test/fb2/reader/poem.native
 test/fb2/reader/titles.fb2
 test/fb2/reader/titles.native
 test/fb2/titles.fb2
 test/fb2/titles.markdown
 test/grofftest.sh
 test/haddock-reader.haddock
 test/haddock-reader.native
 test/html-reader.native
 test/insert
 test/ipynb/simple.in.native
 test/ipynb/simple.ipynb
 test/ipynb/simple.out.native
 test/jats-reader.native
 test/jira-reader.native
 test/lalune.jpg
 test/latex-reader.native
 test/lhs-test-markdown.native
 test/lhs-test.fragment.html+lhs
 test/lhs-test.html
 test/lhs-test.html+lhs
 test/lhs-test.latex
 test/lhs-test.latex+lhs
 test/lhs-test.markdown
 test/lhs-test.markdown+lhs
 test/lhs-test.native
 test/lhs-test.rst
 test/lhs-test.rst+lhs
 test/lua/attr-test.lua
 test/lua/block-count.lua
 test/lua/blocks-filter.lua
 test/lua/hello-world-doc.lua
 test/lua/implicit-doc-filter.lua
 test/lua/inlines-filter.lua
 test/lua/markdown-reader.lua
 test/lua/math.lua
 test/lua/meta.lua
 test/lua/metatable-catch-all.lua
 test/lua/module/pandoc-list.lua
 test/lua/module/pandoc-mediabag.lua
 test/lua/module/pandoc-types.lua
 test/lua/module/pandoc-utils.lua
 test/lua/module/pandoc.lua
 test/lua/plain-to-para.lua
 test/lua/script-name.lua
 test/lua/single-to-double-quoted.lua
 test/lua/smallcaps-title.lua
 test/lua/smart-constructors.lua
 test/lua/strmacro.lua
 test/lua/undiv.lua
 test/lua/uppercase-header.lua
 test/man-reader.man
 test/man-reader.native
 test/markdown-citations.native
 test/markdown-citations.txt
 test/markdown-reader-more.native
 test/markdown-reader-more.txt
 test/media/rId25.jpg
 test/media/rId26.jpg
 test/media/rId27.jpg
 test/mediawiki-reader.native
 test/mediawiki-reader.wiki
 test/movie.jpg
 test/odt/markdown/bold.md
 test/odt/markdown/citation.md
 test/odt/markdown/endnote.md
 test/odt/markdown/externalLink.md
 test/odt/markdown/footnote.md
 test/odt/markdown/formula.md
 test/odt/markdown/headers.md
 test/odt/markdown/horizontalRule.md
 test/odt/markdown/image.md
 test/odt/markdown/imageIndex.md
 test/odt/markdown/imageWithCaption.md
 test/odt/markdown/italic.md
 test/odt/markdown/listBlocks.md
 test/odt/markdown/paragraph.md
 test/odt/markdown/strikeout.md
 test/odt/markdown/trackedChanges.md
 test/odt/markdown/underlined.md
 test/odt/native/blockquote.native
 test/odt/native/image.native
 test/odt/native/imageIndex.native
 test/odt/native/imageWithCaption.native
 test/odt/native/inlinedCode.native
 test/odt/native/orderedListMixed.native
 test/odt/native/orderedListRoman.native
 test/odt/native/orderedListSimple.native
 test/odt/native/referenceToChapter.native
 test/odt/native/referenceToListItem.native
 test/odt/native/referenceToText.native
 test/odt/native/simpleTable.native
 test/odt/native/simpleTableWithCaption.native
 test/odt/native/tableWithContents.native
 test/odt/native/textMixedStyles.native
 test/odt/native/unicode.native
 test/odt/native/unorderedList.native
 test/opml-reader.native
 test/opml-reader.opml
 test/org-select-tags.native
 test/org-select-tags.org
 test/pipe-tables.native
 test/pipe-tables.txt
 test/pptx/code.native
 test/pptx/document-properties-short-desc.native
 test/pptx/document-properties.native
 test/pptx/endnotes.native
 test/pptx/images.native
 test/pptx/inline_formatting.native
 test/pptx/lists.native
 test/pptx/raw_ooxml.native
 test/pptx/remove_empty_slides.native
 test/pptx/slide_breaks.native
 test/pptx/speaker_notes.native
 test/pptx/speaker_notes_after_metadata.native
 test/pptx/speaker_notes_afterheader.native
 test/pptx/speaker_notes_afterseps.native
 test/pptx/start_numbering_at.native
 test/pptx/tables.native
 test/pptx/two_column.native
 test/rst-reader.native
 test/s5-basic.html
 test/s5-fancy.html
 test/s5-fragment.html
 test/s5-inserts.html
 test/s5.native
 test/tables-rstsubset.native
 test/tables.asciidoc
 test/tables.asciidoctor
 test/tables.context
 test/tables.custom
 test/tables.docbook4
 test/tables.docbook5
 test/tables.dokuwiki
 test/tables.fb2
 test/tables.haddock
 test/tables.html4
 test/tables.html5
 test/tables.icml
 test/tables.jats_archiving
 test/tables.jats_articleauthoring
 test/tables.jats_publishing
 test/tables.jira
 test/tables.latex
 test/tables.man
 test/tables.markdown
 test/tables.mediawiki
 test/tables.ms
 test/tables.muse
 test/tables.native
 test/tables.opendocument
 test/tables.org
 test/tables.plain
 test/tables.rst
 test/tables.rtf
 test/tables.tei
 test/tables.texinfo
 test/tables.textile
 test/tables.txt
 test/tables.xwiki
 test/tables.zimwiki
 test/test-pandoc.hs
 test/testsuite.native
 test/textile-reader.native
 test/tikiwiki-reader.native
 test/tikiwiki-reader.tikiwiki
 test/twiki-reader.native
 test/twiki-reader.twiki
 test/txt2tags.native
 test/txt2tags.t2t
 test/vimwiki-reader.native
 test/vimwiki-reader.wiki
 test/writer.native
 test/writers-lang-and-dir.context
 test/writers-lang-and-dir.latex
 test/writers-lang-and-dir.native
 tools/changelog-helper.sh
 tools/changes_template.html
 tools/diff-zip.sh
 tools/extract-changes.hs
 tools/github-upload.sh
 tools/update-readme.lua
 trypandoc/Makefile
 trypandoc/index.html
 windows/Makefile
 windows/Pandoc-en-us.wxl
 windows/pandoc.wxs
Copyright: NONE
License: UNKNOWN
 FIXME

Files: benchmark/weigh-pandoc.hs
 data/translations/he.yaml
 data/translations/pt.yaml
 pandoc.hs
 src/Text/Pandoc.hs
 src/Text/Pandoc/App.hs
 src/Text/Pandoc/App/FormatHeuristics.hs
 src/Text/Pandoc/App/Opt.hs
 src/Text/Pandoc/App/OutputSettings.hs
 src/Text/Pandoc/Asciify.hs
 src/Text/Pandoc/BCP47.hs
 src/Text/Pandoc/CSS.hs
 src/Text/Pandoc/CSV.hs
 src/Text/Pandoc/Class.hs
 src/Text/Pandoc/Class/CommonState.hs
 src/Text/Pandoc/Class/PandocIO.hs
 src/Text/Pandoc/Class/PandocMonad.hs
 src/Text/Pandoc/Class/PandocPure.hs
 src/Text/Pandoc/Data.hs
 src/Text/Pandoc/Emoji.hs
 src/Text/Pandoc/Error.hs
 src/Text/Pandoc/Extensions.hs
 src/Text/Pandoc/Filter.hs
 src/Text/Pandoc/Filter/JSON.hs
 src/Text/Pandoc/Filter/Lua.hs
 src/Text/Pandoc/Filter/Path.hs
 src/Text/Pandoc/Highlighting.hs
 src/Text/Pandoc/Image.hs
 src/Text/Pandoc/ImageSize.hs
 src/Text/Pandoc/Logging.hs
 src/Text/Pandoc/Lua.hs
 src/Text/Pandoc/Lua/Filter.hs
 src/Text/Pandoc/Lua/Global.hs
 src/Text/Pandoc/Lua/Init.hs
 src/Text/Pandoc/Lua/Marshaling.hs
 src/Text/Pandoc/Lua/Marshaling/AST.hs
 src/Text/Pandoc/Lua/Marshaling/AnyValue.hs
 src/Text/Pandoc/Lua/Marshaling/CommonState.hs
 src/Text/Pandoc/Lua/Marshaling/Context.hs
 src/Text/Pandoc/Lua/Marshaling/List.hs
 src/Text/Pandoc/Lua/Marshaling/MediaBag.hs
 src/Text/Pandoc/Lua/Marshaling/ReaderOptions.hs
 src/Text/Pandoc/Lua/Marshaling/Version.hs
 src/Text/Pandoc/Lua/Module/MediaBag.hs
 src/Text/Pandoc/Lua/Module/Pandoc.hs
 src/Text/Pandoc/Lua/Module/System.hs
 src/Text/Pandoc/Lua/Module/Types.hs
 src/Text/Pandoc/Lua/Module/Utils.hs
 src/Text/Pandoc/Lua/Packages.hs
 src/Text/Pandoc/Lua/Util.hs
 src/Text/Pandoc/Lua/Walk.hs
 src/Text/Pandoc/MIME.hs
 src/Text/Pandoc/MediaBag.hs
 src/Text/Pandoc/Options.hs
 src/Text/Pandoc/PDF.hs
 src/Text/Pandoc/Parsing.hs
 src/Text/Pandoc/Readers.hs
 src/Text/Pandoc/Readers/CSV.hs
 src/Text/Pandoc/Readers/CommonMark.hs
 src/Text/Pandoc/Readers/Creole.hs
 src/Text/Pandoc/Readers/DocBook.hs
 src/Text/Pandoc/Readers/Docx.hs
 src/Text/Pandoc/Readers/Docx/Combine.hs
 src/Text/Pandoc/Readers/Docx/Fields.hs
 src/Text/Pandoc/Readers/Docx/Lists.hs
 src/Text/Pandoc/Readers/Docx/Parse.hs
 src/Text/Pandoc/Readers/Docx/Parse/Styles.hs
 src/Text/Pandoc/Readers/Docx/Util.hs
 src/Text/Pandoc/Readers/DokuWiki.hs
 src/Text/Pandoc/Readers/EPUB.hs
 src/Text/Pandoc/Readers/FB2.hs
 src/Text/Pandoc/Readers/HTML.hs
 src/Text/Pandoc/Readers/Haddock.hs
 src/Text/Pandoc/Readers/Ipynb.hs
 src/Text/Pandoc/Readers/JATS.hs
 src/Text/Pandoc/Readers/Jira.hs
 src/Text/Pandoc/Readers/LaTeX.hs
 src/Text/Pandoc/Readers/LaTeX/Lang.hs
 src/Text/Pandoc/Readers/LaTeX/Parsing.hs
 src/Text/Pandoc/Readers/LaTeX/Types.hs
 src/Text/Pandoc/Readers/Man.hs
 src/Text/Pandoc/Readers/Markdown.hs
 src/Text/Pandoc/Readers/MediaWiki.hs
 src/Text/Pandoc/Readers/Metadata.hs
 src/Text/Pandoc/Readers/Muse.hs
 src/Text/Pandoc/Readers/Native.hs
 src/Text/Pandoc/Readers/OPML.hs
 src/Text/Pandoc/Readers/Odt.hs
 src/Text/Pandoc/Readers/Odt/Arrows/State.hs
 src/Text/Pandoc/Readers/Odt/Arrows/Utils.hs
 src/Text/Pandoc/Readers/Odt/Base.hs
 src/Text/Pandoc/Readers/Odt/ContentReader.hs
 src/Text/Pandoc/Readers/Odt/Generic/Fallible.hs
 src/Text/Pandoc/Readers/Odt/Generic/Namespaces.hs
 src/Text/Pandoc/Readers/Odt/Generic/SetMap.hs
 src/Text/Pandoc/Readers/Odt/Generic/Utils.hs
 src/Text/Pandoc/Readers/Odt/Generic/XMLConverter.hs
 src/Text/Pandoc/Readers/Odt/Namespaces.hs
 src/Text/Pandoc/Readers/Odt/StyleReader.hs
 src/Text/Pandoc/Readers/Org.hs
 src/Text/Pandoc/Readers/Org/BlockStarts.hs
 src/Text/Pandoc/Readers/Org/Blocks.hs
 src/Text/Pandoc/Readers/Org/DocumentTree.hs
 src/Text/Pandoc/Readers/Org/ExportSettings.hs
 src/Text/Pandoc/Readers/Org/Inlines.hs
 src/Text/Pandoc/Readers/Org/Meta.hs
 src/Text/Pandoc/Readers/Org/ParserState.hs
 src/Text/Pandoc/Readers/Org/Parsing.hs
 src/Text/Pandoc/Readers/Org/Shared.hs
 src/Text/Pandoc/Readers/RST.hs
 src/Text/Pandoc/Readers/Roff.hs
 src/Text/Pandoc/Readers/TWiki.hs
 src/Text/Pandoc/Readers/TikiWiki.hs
 src/Text/Pandoc/Readers/Txt2Tags.hs
 src/Text/Pandoc/Readers/Vimwiki.hs
 src/Text/Pandoc/RoffChar.hs
 src/Text/Pandoc/SelfContained.hs
 src/Text/Pandoc/Shared.hs
 src/Text/Pandoc/Slides.hs
 src/Text/Pandoc/Templates.hs
 src/Text/Pandoc/Translations.hs
 src/Text/Pandoc/UTF8.hs
 src/Text/Pandoc/UUID.hs
 src/Text/Pandoc/Writers.hs
 src/Text/Pandoc/Writers/AsciiDoc.hs
 src/Text/Pandoc/Writers/CommonMark.hs
 src/Text/Pandoc/Writers/ConTeXt.hs
 src/Text/Pandoc/Writers/Custom.hs
 src/Text/Pandoc/Writers/Docbook.hs
 src/Text/Pandoc/Writers/Docx.hs
 src/Text/Pandoc/Writers/Docx/StyleMap.hs
 src/Text/Pandoc/Writers/DokuWiki.hs
 src/Text/Pandoc/Writers/FB2.hs
 src/Text/Pandoc/Writers/HTML.hs
 src/Text/Pandoc/Writers/Haddock.hs
 src/Text/Pandoc/Writers/ICML.hs
 src/Text/Pandoc/Writers/Ipynb.hs
 src/Text/Pandoc/Writers/JATS.hs
 src/Text/Pandoc/Writers/Jira.hs
 src/Text/Pandoc/Writers/LaTeX.hs
 src/Text/Pandoc/Writers/Man.hs
 src/Text/Pandoc/Writers/Markdown.hs
 src/Text/Pandoc/Writers/MediaWiki.hs
 src/Text/Pandoc/Writers/Ms.hs
 src/Text/Pandoc/Writers/Muse.hs
 src/Text/Pandoc/Writers/Native.hs
 src/Text/Pandoc/Writers/ODT.hs
 src/Text/Pandoc/Writers/OOXML.hs
 src/Text/Pandoc/Writers/OPML.hs
 src/Text/Pandoc/Writers/OpenDocument.hs
 src/Text/Pandoc/Writers/Org.hs
 src/Text/Pandoc/Writers/Powerpoint.hs
 src/Text/Pandoc/Writers/Powerpoint/Output.hs
 src/Text/Pandoc/Writers/Powerpoint/Presentation.hs
 src/Text/Pandoc/Writers/RST.hs
 src/Text/Pandoc/Writers/RTF.hs
 src/Text/Pandoc/Writers/Roff.hs
 src/Text/Pandoc/Writers/Shared.hs
 src/Text/Pandoc/Writers/TEI.hs
 src/Text/Pandoc/Writers/Texinfo.hs
 src/Text/Pandoc/Writers/Textile.hs
 src/Text/Pandoc/Writers/ZimWiki.hs
 src/Text/Pandoc/XML.hs
 test/Tests/Command.hs
 test/Tests/Helpers.hs
 test/Tests/Lua/Module.hs
 test/Tests/Old.hs
 test/Tests/Readers/Creole.hs
 test/Tests/Readers/Docx.hs
 test/Tests/Readers/DokuWiki.hs
 test/Tests/Readers/EPUB.hs
 test/Tests/Readers/FB2.hs
 test/Tests/Readers/HTML.hs
 test/Tests/Readers/JATS.hs
 test/Tests/Readers/Jira.hs
 test/Tests/Readers/LaTeX.hs
 test/Tests/Readers/Man.hs
 test/Tests/Readers/Muse.hs
 test/Tests/Readers/Odt.hs
 test/Tests/Readers/Org.hs
 test/Tests/Readers/Org/Block.hs
 test/Tests/Readers/Org/Block/CodeBlock.hs
 test/Tests/Readers/Org/Block/Figure.hs
 test/Tests/Readers/Org/Block/Header.hs
 test/Tests/Readers/Org/Block/List.hs
 test/Tests/Readers/Org/Block/Table.hs
 test/Tests/Readers/Org/Directive.hs
 test/Tests/Readers/Org/Inline.hs
 test/Tests/Readers/Org/Inline/Citation.hs
 test/Tests/Readers/Org/Inline/Note.hs
 test/Tests/Readers/Org/Meta.hs
 test/Tests/Readers/Org/Shared.hs
 test/Tests/Readers/RST.hs
 test/Tests/Readers/Txt2Tags.hs
 test/Tests/Shared.hs
 test/command/ascii.md
 test/docbook-reader.docbook
 test/fb2/test-small.png
 test/fb2/test.jpg
 test/jats-reader.xml
 test/jira-reader.jira
 test/latex-reader.latex
 test/rst-reader.rst
 test/testsuite.txt
 test/textile-reader.textile
 test/writer.asciidoc
 test/writer.asciidoctor
 test/writer.context
 test/writer.docbook4
 test/writer.docbook5
 test/writer.dokuwiki
 test/writer.fb2
 test/writer.haddock
 test/writer.jats_archiving
 test/writer.jats_articleauthoring
 test/writer.jats_publishing
 test/writer.jira
 test/writer.latex
 test/writer.markdown
 test/writer.mediawiki
 test/writer.ms
 test/writer.muse
 test/writer.org
 test/writer.plain
 test/writer.rst
 test/writer.tei
 test/writer.texinfo
 test/writer.textile
 test/writer.xwiki
 test/writer.zimwiki
 trypandoc/trypandoc.hs
Copyright: 2006-2020, John MacFarlane
  2006-2020, John MacFarlane <jgm@berkeley.edu>,
  2007-2020, John MacFarlane
  2008
  2008-2020, Andrea Rossato and John MacFarlane
  2008-2020, John MacFarlane
  2008-2020, John MacFarlane,
  2009-2020, John MacFarlane
  2010-2015, Puneeth Chaganti <punchagan@gmail.com>
  2010-2020, Albert Krewinkel, John MacFarlane
  2010-2020, John MacFarlane
  2011-2012, Sergey Astanin
  2011-2020, John MacFarlane
  2012-2020, John MacFarlane
  2012-2020, John MacFarlane,
  2013, David Lazar
  2013-2020, John MacFarlane
  2013-2020, github.com/mb21
  2014, Alexander Sulfrian
  2014, Matthew Pickering
  2014-2015, 2017, John MacFarlane
  2014-2015, 2017-2020, John MacFarlane
  2014-2020, Albert Krewinkel
  2014-2020, Jesse Rosenthal
  2014-2020, Jesse Rosenthal <jrosenthal@jhu.edu>,
  2014-2020, John MacFarlane <jgm@berkeley.edu>
  2014-2020, John MacFarlane,
  2014-2020, Matthew Pickering
  2015, John MacFarlane
  2015, Martin Linnemann
  2015-2020, John MacFarlane
  2016-2019, John MacFarlane <jgm@berkeley.edu>
  2016-2020, Albert Krewinkel
  2016-2020, Jesse Rosenthal, John MacFarlane
  2017, Hamish Mackenzie
  2017, Robin Lee Powell
  2017, Sascha Wilde
  2017-2020, Albert Krewinkel
  2017-2020, Alexander Krotov
  2017-2020, Hamish Mackenzie
  2017-2020, Jesse Rosenthal
  2017-2020, Jesse Rosenthal, John MacFarlane
  2017-2020, John MacFarlane
  2017-2020, John MacFarlane <jgm@berkeley.edu>
  2017-2020, Yuchen Pei
  2018-2019, Yan Pas <yanp.bugz@gmail.com>,
  2018-2020, Alexander Krotov
  2018-2020, Alexander Krotov <ilabdsf@gmail.com>
  2018-2020, John MacFarlane
  2018-2020, Yan Pashkovsky and John MacFarlane
  2019-2020, Albert Krewinel
  2019-2020, Albert Krewinkel
  2019-2020, John MacFarlane
  2020, John MacFarlane
License: UNKNOWN
 FIXME

Files: benchmark/benchmark-pandoc.hs
 src/Text/Pandoc/Writers/XWiki.hs
 tools/pandoc-template-mode.el
Copyright: 2008-2017, John MacFarlane
  2008-2017, John MacFarlane <jgm@berkeley.edu>
  2012-2019, John MacFarlane <jgm@berkeley.edu>
  2017
License: GPL-2+
 FIXME

Files: data/pandoc.List.lua
 data/pandoc.lua
Copyright: 2017-2019, Albert Krewinkel
  2017-2020, Albert Krewinkel
License: ISC
 FIXME

Files: data/templates/article.jats_publishing
 data/templates/default.jats_articleauthoring
Copyright: -statement>$copyright.statement$</copyright-statement>
  -year>$copyright.year$</copyright-year>
License: UNKNOWN
 FIXME

Files: test/html-reader.html
 test/writer.custom
Copyright: ©</li>
License: UNKNOWN
 FIXME

Files: test/writer.html4
 test/writer.html5
Copyright: ©</li>
  ︎</a></p></li>
License: UNKNOWN
 FIXME

Files: data/templates/README.markdown
Copyright: 2014, --2019, John MacFarlane
License: BSD-3-clause
 FIXME

Files: COPYRIGHT
Copyright: 1994-2019, Lua.org, PUC-Rio.
  2006-2020, John MacFarlane
  2006-2020, John MacFarlane <jgm at berkeley dot edu>
  2008-2020, Andrea Rossato and John MacFarlane
  2008-2020, John MacFarlane and Peter Wang
  2010-2020, Paul Rivier and John MacFarlane
  2010-2020, Puneeth Chaganti, John MacFarlane, and
  2013, --2015 Martin Fenner,
  2014, --2020, John MacFarlane
  2014-2020, Albert Krewinkel
  2014-2020, Jesse Rosenthal
  2014-2020, Matthew Pickering and John MacFarlane
  2017, --2020 Albert Krewinkel and John MacFarlane
  2017, Alex Ivkin
  2017, Robin Lee Powell
  2017-2018, Hamish Mackenzie
  2017-2020, Albert Krewinkel
  2017-2020, Alexander Krotov
  2018, --2019 Alexander Krotov
  2019, --2020 Albert Krewinkel
  s, or subject to different
License: BSD-3-clause and/or Expat and/or GPL-2+
 FIXME

Files: README.md
Copyright: 2006-2020, John MacFarlane (jgm@berkeley.edu). Released under the
  for full copyright and warranty notices.)
License: GPL
 FIXME

Files: MANUAL.txt
Copyright: -page frontmatter
  2006, --2020 John MacFarlane (jgm@berkeley.edu). Released
  2007, Joe Smith
  2007, John Smith, CC BY-NC
  crite en français canadien.
  for full copyright and
License: GPL-2
 FIXME

Files: man/pandoc.1
Copyright: 2006, --2020 John MacFarlane (jgm[at
  for full copyright and warranty notices.) For a full list
License: GPL-2
 FIXME

Files: COPYING.md
Copyright: 1989, 1991, Free Software Foundation, Inc.
  disclaimer" for the program,
  ed by
  ed interfaces, the
  interest in the program `Gnomovision'
  the software, and
  year name of author
  yyyy name of author
License: GPL-2
 FIXME

Files: README.template
Copyright: 2006-2020, John MacFarlane (jgm@berkeley.edu). Released under the
  for full copyright and warranty notices.)
License: GPL-2
 FIXME

Files: debian/copyright-check
Copyright: 2016-2017, Jonas Smedegaard <dr@jones.dk>
License: GPL-3+
 FIXME

Files: windows/AdvancedWelcomeEulaDlg_Custom.wxs
Copyright: 2004, Outercurve Foundation.
  file="AdvancedWelcomeEulaDlg.wxs" company="Outercurve Foundation">
  text can be found in the file
License: MS-RL
 FIXME

Files: windows/WixUI_Advanced_Custom.wxs
Copyright: 2004, Outercurve Foundation.
  file="WixUI_Advanced_Custom.wxs" company="Outercurve Foundation">
  text can be found in the file
License: MS-RL
 FIXME

Files: linux/make_deb.sh
Copyright: $COPYRIGHT /
  INSTALLED_SIZE=$(du -k -s $DEST | awk '{print $1}')
  PANDOC_CITEPROC_VERSION=`$ARTIFACTS/pandoc-citeproc --version | awk '{print $2;}'`
  echo "pandoc-citeproc" >> $COPYRIGHT
License: UNKNOWN
 FIXME

Files: pandoc.cabal
Copyright: (c) 2006-2020 John MacFarlane
  extra-source-files:
License: UNKNOWN
 FIXME

Files: test/Tests/Readers/Org/Inline/Smart.hs
Copyright: 2014-2020, Albert Krewinkel
  e de la guerre, le thème de l'«impossibilité du socialisme»"
  e de la guerre, le thème de l’«impossibilité du socialisme»")
License: UNKNOWN
 FIXME

Files: test/Tests/Lua.hs
Copyright: 2017-2020, Albert Krewinkel
  tats-unis" <> para "text")
License: UNKNOWN
 FIXME

Files: src/Text/Pandoc/App/CommandLineOptions.hs
Copyright: 2006-2020, John MacFarlane
  2006-2020, John MacFarlane",
  Message :: String
  Message = intercalate " " [
  Message))
License: UNKNOWN
 FIXME

Files: src/Text/Pandoc/Writers/EPUB.hs
Copyright: -page", "dedication",
  2010-2020, John MacFarlane
  claimant", "cpc")
License: UNKNOWN
 FIXME

Files: src/Text/Pandoc/Process.hs
Copyright: 2013-2020, John MacFarlane
  University of Glasgow 2004-2008.
License: UNKNOWN
 FIXME

Files: test/Tests/Readers/Markdown.hs
Copyright: 2006-2020, John MacFarlane
  e de la guerre, le thème de l'«impossibilité du socialisme»"
  e de la guerre, le thème de l’«impossibilité du socialisme»")
License: UNKNOWN
 FIXME

Files: changelog.md
Copyright: -Notices.html> /
  2007, John Smith, CC BY-NC
  dates.
  de Mattos Neto).
  files for `pandoc`, `pandoc-citeproc`.
  goire Pineau, #127).
  gory Bataille).
  lix Baylac-Jacqué).
  message (Felix Yan, #6010)
  message to '-v' output, modeled after FSF messages.
  sign ©)
License: UNKNOWN
 FIXME

Files: src/Text/Pandoc/Readers/Textile.hs
Copyright: 2010-2012, Paul Rivier
  mark :: PandocMonad m => ParserT Text st m Inlines
License: UNKNOWN
 FIXME

Files: data/translations/da.yaml
Copyright: Appendix: Bilag
License: UNKNOWN
 FIXME

Files: data/translations/ur.yaml
Copyright: Figure: ﺶﻜﻟ
  یﺏﺍچہ
  ﺍﻮﻟ
  ﺎﻟ
  ﺕﺎﺑیﺎﺗ
License: UNKNOWN
 FIXME

Files: debian/source/lintian-overrides
Copyright: GPL-2
  GPL-2+
  GPL-3+
  gpl-2
  gpl-2+
  gpl-3+
License: UNKNOWN
 FIXME

Files: data/translations/fa.yaml
Copyright: ListOfFigures: ﻝیﺲﺗ ﺖﺻﺍﻭیﺭ
  SeeAlso: ﻥیﺯ ﺐﺑیﻥیﺩ
  یﺪﻫ
  ﺍﻮﻟ
  ﺎﻨﺷc>ﻧﺎﻤﻫ
  ﺕﺎﺑc>ﻧﺎﻤﻫ
License: UNKNOWN
 FIXME

Files: data/translations/ca.yaml
Copyright: Table: Taula
License: UNKNOWN
 FIXME

Files: test/writer.man
Copyright: [co
License: UNKNOWN
 FIXME

Files: test/command/4208.md
Copyright: an inverted first-order triffle & $Box$
License: UNKNOWN
 FIXME

Files: data/translations/es.yaml
Copyright: ase
  ase también
  ndice
  tico
License: UNKNOWN
 FIXME

Files: test/command/2649.md
Copyright: bastien Ogier
  bastien_Loeb" title="wikilink">Sébastien Loeb</a></p></td>
  bastien_Ogier" title="wikilink">Sébastien Ogier</a></strong></p></td>
License: UNKNOWN
 FIXME

Files: AUTHORS.md
Copyright: de Mattos Neto
  gory Bataille
  lix Baylac-Jacqué
  rémy Bobbio
License: UNKNOWN
 FIXME

Files: data/translations/fr.yaml
Copyright: face
  férences
  monstration
  sumé
License: UNKNOWN
 FIXME

Files: data/translations/hu.yaml
Copyright: ke
  klet
  l-címzettek
  sz
License: UNKNOWN
 FIXME

Files: data/translations/vi.yaml
Copyright: ng minh
License: UNKNOWN
 FIXME

Files: test/command/5878.md
Copyright: sius^[
License: UNKNOWN
 FIXME

Files: test/creole-reader.txt
Copyright: the contributors. Some
License: UNKNOWN
 FIXME

Files: test/writer.rtf
Copyright: u169?sa180par}
License: UNKNOWN
 FIXME

Files: test/writer.opml
Copyright: ©&#10;&#10;AT&amp;T has an ampersand in their name.&#10;&#10;AT&amp;T is another way to write it.&#10;&#10;This &amp; that.&#10;&#10;4 &amp;lt; 5.&#10;&#10;6 &amp;gt; 5.&#10;&#10;Backslash: &#10;&#10;Backtick: `&#10;&#10;Asterisk: *&#10;&#10;Underscore: _&#10;&#10;Left brace: {&#10;&#10;Right brace: }&#10;&#10;Left bracket: [&#10;&#10;Right bracket:
License: UNKNOWN
 FIXME

Files: test/writer.icml
Copyright: ©</Content>
License: UNKNOWN
 FIXME

Files: test/writer.opendocument
Copyright: ©</text:p>
License: UNKNOWN
 FIXME

Files: test/command/4235.md
Copyright: ︎</a></p></li>
License: UNKNOWN
 FIXME

Files: data/translations/ar.yaml
Copyright: ﺍﻮﻟ
  ﺭ
License: UNKNOWN
 FIXME