mirror of https://github.com/Chizi123/.emacs.d.git

Chizi123
2018-11-18 76bbd07de7add0f9d13c6914f158d19630fe2f62
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
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
;ELC
;;; Compiled
;;; in Emacs version 26.1
;;; with all optimizations.
 
;;; This file contains utf-8 non-ASCII characters,
;;; and so cannot be loaded into Emacs 22 or earlier.
(and (boundp 'emacs-version)
     (< (aref emacs-version (1- (length emacs-version))) ?A)
     (string-lessp emacs-version "23")
     (error "`%s' was compiled for Emacs 23 or later" #$))
 
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 
(byte-code "\300\301!\210\300\302!\210\300\303!\210\300\304!\210\300\305!\207" [require cl-lib ob-exp org-element org-macro tabulated-list] 2)
#@55 Maximum nesting depth for headlines, counting from 0.
(defconst org-export-max-depth 19 (#$ . 551))
#@1398 Alist between export properties and ways to set them.
 
The key of the alist is the property name, and the value is a list
like (KEYWORD OPTION DEFAULT BEHAVIOR) where:
 
KEYWORD is a string representing a buffer keyword, or nil.  Each
  property defined this way can also be set, during subtree
  export, through a headline property named after the keyword
  with the "EXPORT_" prefix (i.e. DATE keyword and EXPORT_DATE
  property).
OPTION is a string that could be found in an #+OPTIONS: line.
DEFAULT is the default value for the property.
BEHAVIOR determines how Org should handle multiple keywords for
  the same property.  It is a symbol among:
  nil       Keep old value and discard the new one.
  t         Replace old value with the new one.
  `space'   Concatenate the values, separating them with a space.
  `newline' Concatenate the values, separating them with
        a newline.
  `split'   Split values at white spaces, and cons them to the
        previous list.
  `parse'   Parse value as a list of strings and Org objects,
            which can then be transcoded with, e.g.,
            `org-export-data'.  It implies `space' behavior.
 
Values set through KEYWORD and OPTION have precedence over
DEFAULT.
 
All these properties should be back-end agnostic.  Back-end
specific properties are set through `org-export-define-backend'.
Properties redefined there have precedence over these.
(defconst org-export-options-alist '((:title "TITLE" nil nil parse) (:date "DATE" nil nil parse) (:author "AUTHOR" nil user-full-name parse) (:email "EMAIL" nil user-mail-address t) (:language "LANGUAGE" nil org-export-default-language t) (:select-tags "SELECT_TAGS" nil org-export-select-tags split) (:exclude-tags "EXCLUDE_TAGS" nil org-export-exclude-tags split) (:creator "CREATOR" nil org-export-creator-string) (:headline-levels nil "H" org-export-headline-levels) (:preserve-breaks nil "\\n" org-export-preserve-breaks) (:section-numbers nil "num" org-export-with-section-numbers) (:time-stamp-file nil "timestamp" org-export-time-stamp-file) (:with-archived-trees nil "arch" org-export-with-archived-trees) (:with-author nil "author" org-export-with-author) (:with-broken-links nil "broken-links" org-export-with-broken-links) (:with-clocks nil "c" org-export-with-clocks) (:with-creator nil "creator" org-export-with-creator) (:with-date nil "date" org-export-with-date) (:with-drawers nil "d" org-export-with-drawers) (:with-email nil "email" org-export-with-email) (:with-emphasize nil "*" org-export-with-emphasize) (:with-entities nil "e" org-export-with-entities) (:with-fixed-width nil ":" org-export-with-fixed-width) (:with-footnotes nil "f" org-export-with-footnotes) (:with-inlinetasks nil "inline" org-export-with-inlinetasks) (:with-latex nil "tex" org-export-with-latex) (:with-planning nil "p" org-export-with-planning) (:with-priority nil "pri" org-export-with-priority) (:with-properties nil "prop" org-export-with-properties) (:with-smart-quotes nil "'" org-export-with-smart-quotes) (:with-special-strings nil "-" org-export-with-special-strings) (:with-statistics-cookies nil "stat" org-export-with-statistics-cookies) (:with-sub-superscript nil "^" org-export-with-sub-superscripts) (:with-toc nil "toc" org-export-with-toc) (:with-tables nil "|" org-export-with-tables) (:with-tags nil "tags" org-export-with-tags) (:with-tasks nil "tasks" org-export-with-tasks) (:with-timestamps nil "<" org-export-with-timestamps) (:with-title nil "title" org-export-with-title) (:with-todo-keywords nil "todo" org-export-with-todo-keywords)) (#$ . 659))
#@213 List of in-buffer keywords that require special treatment.
These keywords are not directly associated to a property.  The
way they are handled must be hard-coded into
`org-export--get-inbuffer-options' function.
(defconst org-export-special-keywords '("FILETAGS" "SETUPFILE" "OPTIONS") (#$ . 4234))
#@463 Alist between filters properties and initial values.
 
The key of each association is a property name accessible through
the communication channel.  Its value is a configurable global
variable defining initial filters.
 
This list is meant to install user specified filters.  Back-end
developers may install their own filters using
`org-export-define-backend'.  Filters defined there will always
be prepended to the current list, so they always get applied
first.
(defconst org-export-filters-alist '((:filter-body . org-export-filter-body-functions) (:filter-bold . org-export-filter-bold-functions) (:filter-babel-call . org-export-filter-babel-call-functions) (:filter-center-block . org-export-filter-center-block-functions) (:filter-clock . org-export-filter-clock-functions) (:filter-code . org-export-filter-code-functions) (:filter-diary-sexp . org-export-filter-diary-sexp-functions) (:filter-drawer . org-export-filter-drawer-functions) (:filter-dynamic-block . org-export-filter-dynamic-block-functions) (:filter-entity . org-export-filter-entity-functions) (:filter-example-block . org-export-filter-example-block-functions) (:filter-export-block . org-export-filter-export-block-functions) (:filter-export-snippet . org-export-filter-export-snippet-functions) (:filter-final-output . org-export-filter-final-output-functions) (:filter-fixed-width . org-export-filter-fixed-width-functions) (:filter-footnote-definition . org-export-filter-footnote-definition-functions) (:filter-footnote-reference . org-export-filter-footnote-reference-functions) (:filter-headline . org-export-filter-headline-functions) (:filter-horizontal-rule . org-export-filter-horizontal-rule-functions) (:filter-inline-babel-call . org-export-filter-inline-babel-call-functions) (:filter-inline-src-block . org-export-filter-inline-src-block-functions) (:filter-inlinetask . org-export-filter-inlinetask-functions) (:filter-italic . org-export-filter-italic-functions) (:filter-item . org-export-filter-item-functions) (:filter-keyword . org-export-filter-keyword-functions) (:filter-latex-environment . org-export-filter-latex-environment-functions) (:filter-latex-fragment . org-export-filter-latex-fragment-functions) (:filter-line-break . org-export-filter-line-break-functions) (:filter-link . org-export-filter-link-functions) (:filter-node-property . org-export-filter-node-property-functions) (:filter-options . org-export-filter-options-functions) (:filter-paragraph . org-export-filter-paragraph-functions) (:filter-parse-tree . org-export-filter-parse-tree-functions) (:filter-plain-list . org-export-filter-plain-list-functions) (:filter-plain-text . org-export-filter-plain-text-functions) (:filter-planning . org-export-filter-planning-functions) (:filter-property-drawer . org-export-filter-property-drawer-functions) (:filter-quote-block . org-export-filter-quote-block-functions) (:filter-radio-target . org-export-filter-radio-target-functions) (:filter-section . org-export-filter-section-functions) (:filter-special-block . org-export-filter-special-block-functions) (:filter-src-block . org-export-filter-src-block-functions) (:filter-statistics-cookie . org-export-filter-statistics-cookie-functions) (:filter-strike-through . org-export-filter-strike-through-functions) (:filter-subscript . org-export-filter-subscript-functions) (:filter-superscript . org-export-filter-superscript-functions) (:filter-table . org-export-filter-table-functions) (:filter-table-cell . org-export-filter-table-cell-functions) (:filter-table-row . org-export-filter-table-row-functions) (:filter-target . org-export-filter-target-functions) (:filter-timestamp . org-export-filter-timestamp-functions) (:filter-underline . org-export-filter-underline-functions) (:filter-verbatim . org-export-filter-verbatim-functions) (:filter-verse-block . org-export-filter-verse-block-functions)) (#$ . 4540))
#@351 Default rule for link matching an inline image.
This rule applies to links with no description.  By default, it
will be considered as an inline image if it targets a local file
whose extension is either "png", "jpeg", "jpg", "gif",
"tiff", "tif", "xbm", "xpm", "pbm", "pgm" or "ppm".
See `org-export-inline-image-p' for more information about
rules.
(defconst org-export-default-inline-image-rule (byte-code "\300\301\302\303\"BC\207" ["file" format "\\.%s\\'" "\\(gif\\|jp\\(?:e?g\\)\\|p\\(?:bm\\|gm\\|ng\\|pm\\)\\|tiff?\\|x\\(?:[bp]m\\)\\)"] 4) (#$ . 8434))
#@284 List of variables not copied through upon buffer duplication.
Export process takes place on a copy of the original buffer.
When this copy is created, all Org related local variables not in
this list are copied to the new buffer.  Variables with an
unreadable value are also ignored.
(defconst org-export-ignored-local-variables '(org-font-lock-keywords org-element--cache org-element--cache-objects org-element--cache-sync-keys org-element--cache-sync-requests org-element--cache-sync-timer) (#$ . 9001))
#@323 Non-nil means asynchronous export process should leave data behind.
 
This data is found in the appropriate "*Org Export Process*"
buffer, and in files prefixed with "org-export-process" and
located in `temporary-file-directory'.
 
When non-nil, it will also set `debug-on-error' to a non-nil
value in the external process.
(defvar org-export-async-debug nil (#$ . 9513))
#@379 Record asynchronously generated export results and processes.
This is an alist: its CAR is the source of the
result (destination file or buffer for a finished process,
original buffer for a running one) and its CDR is a list
containing the back-end used, as a symbol, and either a process
or the time at which it finished.  It is used to build the menu
from `org-export-stack'.
(defvar org-export-stack-contents nil (#$ . 9890))
#@160 List of backends currently available in the exporter.
This variable is set with `org-export-define-backend' and
`org-export-define-derived-backend' functions.
(defvar org-export-registered-backends nil (#$ . 10326))
#@148 Last command called from the dispatcher.
The value should be a list.  Its CAR is the action, as a symbol,
and its CDR is a list of export options.
(defvar org-export-dispatch-last-action nil (#$ . 10549))
#@228 The position where the last export command was created using the dispatcher.
This marker will be used with `C-u C-c C-e' to make sure export repetition
uses the same subtree if the previous command was restricted to a subtree.
(defvar org-export-dispatch-last-position (make-marker) (#$ . 10761))
#@328 Name, if any, of the back-end used during an export process.
 
Its value is a symbol such as `html', `latex', `ascii', or nil if
the back-end is anonymous (see `org-export-create-backend') or if
there is no export process in progress.
 
It can be used to teach Babel blocks how to act differently
according to the back-end used.
(defvar org-export-current-backend nil (#$ . 11065))
(byte-code "\300\301\302\303\304\305\306\307&\210\300\310\302\311\304\312\306\301&\210\313\314\315\316\317DD\320\306\310\321\322\323\324&    \210\313\325\315\316\326DD\327\306\310\321\330\323\331&    \210\313\332\315\316\333DD\334\306\310\321\330\323\331&    \210\313\335\315\316\336DD\337\306\310\340\341\342\343\321\330\323\331& \210\313\344\315\316\345DD\346\306\310\321\330\323\331&    \210\313\347\315\316\350DD\351\306\310\321\352\323\353&    \210\313\354\315\316\355DD\356\306\310\321\357\323\360&    \210\313\361\315\316\362DD\363\306\310\340\364\342\365\321\366\323\367& \210\313\370\315\316\371DD\372\306\310\321\330\323\331&    \210\313\373\315\316\374DD\375\306\310\321\330\323\331&    \210\313\376\315\316\377DD\201@\306\310\321\201A\323\201B&    \210\313\201C\315\316\201DDD\201E\306\310\340\364\342\201F\321\330\323\331& \210\313\201G\315\316\201HDD\201I\306\310\321\330\323\331&    \210\313\201J\315\316\201KDD\201L\306\310\340\364\342\201M\321\201N\323\201O& \210\313\201P\315\316\201QDD\201R\306\310\321\201S\323\201T&    \210\313\201U\315\316\201VDD\201W\306\310\321\201X\323\360&    \210\313\201Y\315\316\201ZDD\201[\306\310\321\330\323\331&    \210\313\201\\\315\316\201]DD\201^\306\310\321\330\323\331&    \210\313\201_\315\316\201`DD\201a\306\310\340\364\342\201b\321\330\323\331& \210\313\201c\315\316\201dDD\201e\306\310\340\364\342\201f\321\330\323\331& \210\313\201g\315\316\201hDD\201i\306\310\321\330\323\331&    \210\313\201j\315\316\201kDD\201l\306\310\340\341\342\201m\321\201n\323\201o& \210\313\201p\315\316\201qDD\201r\306\310\321\330\323\331&    \210\313\201s\315\316\201tDD\201u\306\310\321\201v\323\201w&    \210\313\201x\315\316\201yDD\201z\306\310\340\364\342\201{\321\330\323\331& \210\313\201|\315\316\201}DD\201~\306\310\321\330\323\331&    \210\313\201\315\316\201\200DD\201\201\306\310\340\364\342\201\202\321\330\323\331& \210\313\201\203\315\316\201\204DD\201\205\306\310\340\364\342\201\206\321\201\207\323\201\210& \210\313\201\211\315\316\201\212DD\201\213\306\310\321\201\214\323\201\215&    \210\313\201\216\315\316\201\217DD\201\220\306\310\340\364\342\201\221\321\330\323\331& \210\313\201\222\315\316\201\223DD\201\224\306\310\321\201\225\323\201\226&    \210\313\201\227\315\316\201\230DD\201\231\306\310\321\201\232\323\201\233&    \210\313\201\234\315\316\201\235DD\201\236\306\310\340\341\342\201\237\321\330\323\331& \210\313\201\240\315\316\201\241DD\201\242\306\310\321\330\323\331&    \210\313\201\243\315\316\201\244DD\201\245\306\310\321\201\246\323\201\247&    \210\313\201\250\315\316\201\251DD\201\252\306\310\321\330&\210\313\201\253\315\316\201\254DD\201\255\306\310\340\364\342\201\256\321\330& \210\313\201\257\315\316\201\260DD\201\261\306\310\340\341\342\201\262\321\201\263& \210\313\201\264\315\316\201\265DD\201\266\306\310\340\364\342\201\267\321\201\270\323\201\271& \210\313\201\272\315\316\201\273DD\201\274\306\310\340\341\342\201\275\321\201\276& \210\313\201\277\315\316\201\300DD\201\301\306\310\340\364\342\201\302\321\201\303& \210\313\201\304\315\316\201\305DD\201\306\306\310\340\341\342\201\307\321\201\310& \210\313\201\311\315\316\201\312DD\201\313\306\310\321\201\314&\210\313\201\315\315\316\201\316DD\201\317\306\310\321\330&\210\313\201\320\315\316\201\321DD\201\322\306\310\340\364\342\201\323\321\330& \210\313\201\324\315\316\201\325DD\201\326\306\310\340\364\342\201\327\321\201\330& \210\313\201\331\315\316\201\332DD\201\333\306\310\340\364\342\201\334\321\330& \207" [custom-declare-group org-export nil "Options for exporting Org mode files." :tag "Org Export" :group org org-export-general "General options for export engine." "Org Export General" custom-declare-variable org-export-with-archived-trees funcall function #[0 "\300\207" [headline] 1] "Whether sub-trees with the ARCHIVE tag should be exported.\n\nThis can have three different values:\nnil         Do not export, pretend this tree is not present.\nt           Do export the entire tree.\n`headline'  Only export the headline, but skip the tree below it.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"arch:nil\"." :type (choice (const :tag "Not at all" nil) (const :tag "Headline only" headline) (const :tag "Entirely" t)) :safe #[257 "\211\300>\207" [(t nil headline)] 3 "\n\n(fn X)"] org-export-with-author #[0 "\300\207" [t] 1] "Non-nil means insert author name into the exported file.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"author:nil\"." boolean booleanp org-export-with-clocks #[0 "\300\207" [nil] 1] "Non-nil means export CLOCK keywords.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"c:t\"." org-export-with-creator #[0 "\300\207" [nil] 1] "Non-nil means the postamble should contain a creator sentence.\n\nThe sentence can be set in `org-export-creator-string', which\nsee.\n\nThis option can also be set with the OPTIONS keyword, e.g.,\n\"creator:t\"." :version "26.1" :package-version (Org . "8.3") org-export-with-date #[0 "\300\207" [t] 1] "Non-nil means insert date in the exported document.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"date:nil\"." org-export-date-timestamp-format #[0 "\300\207" [nil] 1] "Time-stamp format string to use for DATE keyword.\n\nThe format string, when specified, only applies if date consists\nin a single time-stamp.  Otherwise its value will be ignored.\n\nSee `format-time-string' for details on how to build this\nstring." (choice (string :tag "Time-stamp format string") (const :tag "No format string" nil)) #[257 "\211?\206\211;\207" [] 2 "\n\n(fn X)"] org-export-creator-string #[0 "\301\302\303\304!\203\304 \202\305#\207" [emacs-version format "Emacs %s (Org mode %s)" fboundp org-version "unknown version"] 5] "Information about the creator of the document.\nThis option can also be set on with the CREATOR keyword." (string :tag "Creator string") stringp org-export-with-drawers #[0 "\300\207" [(not "LOGBOOK")] 1] "Non-nil means export contents of standard drawers.\n\nWhen t, all drawers are exported.  This may also be a list of\ndrawer names to export, as strings.  If that list starts with\n`not', only drawers with such names will be ignored.\n\nThis variable doesn't apply to properties drawers.  See\n`org-export-with-properties' instead.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"d:nil\"." "24.4" (Org . "8.0") (choice (const :tag "All drawers" t) (const :tag "None" nil) (repeat :tag "Selected drawers" (string :tag "Drawer name")) (list :tag "Ignored drawers" (const :format "" not) (repeat :tag "Specify names of drawers to ignore during export" :inline t (string :tag "Drawer name")))) #[257 "\300!\206\211:\207" [booleanp] 3 "\n\n(fn X)"] org-export-with-email #[0 "\300\207" [nil] 1] "Non-nil means insert author email into the exported file.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"email:t\"." org-export-with-emphasize #[0 "\300\207" [t] 1] "Non-nil means interpret *word*, /word/, _word_ and +word+.\n\nIf the export target supports emphasizing text, the word will be\ntypeset in bold, italic, with an underline or strike-through,\nrespectively.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"*:nil\"." org-export-exclude-tags #[0 "\300\207" [("noexport")] 1] "Tags that exclude a tree from export.\n\nAll trees carrying any of these tags will be excluded from\nexport.  This is without condition, so even subtrees inside that\ncarry one of the `org-export-select-tags' will be removed.\n\nThis option can also be set with the EXCLUDE_TAGS keyword." (repeat (string :tag "Tag")) #[257 "\211<\205    \300\301\"\207" [cl-every stringp] 4 "\n\n(fn X)"] org-export-with-fixed-width #[0 "\300\207" [t] 1] "Non-nil means export lines starting with \":\".\nThis option can also be set with the OPTIONS keyword,\ne.g. \"::nil\"." (Org . "8.0") org-export-with-footnotes #[0 "\300\207" [t] 1] "Non-nil means Org footnotes should be exported.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"f:nil\"." org-export-with-latex #[0 "\300\207" [t] 1] "Non-nil means process LaTeX environments and fragments.\n\nThis option can also be set with the OPTIONS line,\ne.g. \"tex:verbatim\".  Allowed values are:\n\nnil         Ignore math snippets.\n`verbatim'  Keep everything in verbatim.\nt           Allow export of math snippets." (Org . "8.0") (choice (const :tag "Do not process math in any way" nil) (const :tag "Interpret math snippets" t) (const :tag "Leave math verbatim" verbatim)) #[257 "\211\300>\207" [(t nil verbatim)] 3 "\n\n(fn X)"] org-export-headline-levels #[0 "\300\207" [3] 1] "The last level which is still exported as a headline.\n\nInferior levels will usually produce itemize or enumerate lists\nwhen exported, but back-end behavior may differ.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"H:2\"." integer integerp org-export-default-language #[0 "\300\207" [#1="en"] 1 #1#] "The default language for export and clocktable translations, as a string.\nThis may have an association in\n`org-clock-clocktable-language-setup',\n`org-export-smart-quotes-alist' and `org-export-dictionary'.\nThis option can also be set with the LANGUAGE keyword." (string :tag "Language") org-export-preserve-breaks #[0 "\300\207" [nil] 1] "Non-nil means preserve all line breaks when exporting.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"\\n:t\"." org-export-with-entities #[0 "\300\207" [t] 1] "Non-nil means interpret entities when exporting.\n\nFor example, HTML export converts \\alpha to &alpha; and \\AA to\n&Aring;.\n\nFor a list of supported names, see the constant `org-entities'\nand the user option `org-entities-user'.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"e:nil\"." org-export-with-inlinetasks #[0 "\300\207" [t] 1] "Non-nil means inlinetasks should be exported.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"inline:nil\"." (Org . "8.0") org-export-with-planning #[0 "\300\207" [nil] 1] "Non-nil means include planning info in export.\n\nPlanning info is the line containing either SCHEDULED:,\nDEADLINE:, CLOSED: time-stamps, or a combination of them.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"p:t\"." (Org . "8.0") org-export-with-priority #[0 "\300\207" [nil] 1] "Non-nil means include priority cookies in export.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"pri:t\"." org-export-with-properties #[0 "\300\207" [nil] 1] "Non-nil means export contents of properties drawers.\n\nWhen t, all properties are exported.  This may also be a list of\nproperties to export, as strings.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"prop:t\"." (Org . "8.3") (choice (const :tag "All properties" t) (const :tag "None" nil) (repeat :tag "Selected properties" (string :tag "Property name"))) #[257 "\300!\206\211<\205\301\302\"\207" [booleanp cl-every stringp] 4 "\n\n(fn X)"] org-export-with-section-numbers #[0 "\300\207" [t] 1] "Non-nil means add section numbers to headlines when exporting.\n\nWhen set to an integer n, numbering will only happen for\nheadlines whose relative level is higher or equal to n.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"num:t\"." org-export-select-tags #[0 "\300\207" [("export")] 1] "Tags that select a tree for export.\n\nIf any such tag is found in a buffer, all trees that do not carry\none of these tags will be ignored during export.  Inside trees\nthat are selected like this, you can still deselect a subtree by\ntagging it with one of the `org-export-exclude-tags'.\n\nThis option can also be set with the SELECT_TAGS keyword." (repeat (string :tag "Tag")) #[257 "\211<\205    \300\301\"\207" [cl-every stringp] 4 "\n\n(fn X)"] org-export-with-smart-quotes #[0 "\300\207" [nil] 1] "Non-nil means activate smart quotes during export.\nThis option can also be set with the OPTIONS keyword,\ne.g., \"':t\".\n\nWhen setting this to non-nil, you need to take care of\nusing the correct Babel package when exporting to LaTeX.\nE.g., you can load Babel for french like this:\n\n#+LATEX_HEADER: \\usepackage[french]{babel}" (Org . "8.0") org-export-with-special-strings #[0 "\300\207" [t] 1] "Non-nil means interpret \"\\-\", \"--\" and \"---\" for export.\n\nWhen this option is turned on, these strings will be exported as:\n\n   Org     HTML     LaTeX    UTF-8\n  -----+----------+--------+-------\n   \\-    &shy;      \\-\n   --    &ndash;    --         –\n   ---   &mdash;    ---        —\n   ...   &hellip;   \\ldots     …\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"-:nil\"." org-export-with-statistics-cookies #[0 "\300\207" [t] 1] "Non-nil means include statistics cookies in export.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"stat:nil\"" (Org . "8.0") org-export-with-sub-superscripts #[0 "\300\207" [t] 1] "Non-nil means interpret \"_\" and \"^\" for export.\n\nIf you want to control how Org displays those characters, see\n`org-use-sub-superscripts'.  `org-export-with-sub-superscripts'\nused to be an alias for `org-use-sub-superscripts' in Org <8.0,\nit is not anymore.\n\nWhen this option is turned on, you can use TeX-like syntax for\nsub- and superscripts and see them exported correctly.\n\nYou can also set the option with #+OPTIONS: ^:t\n\nSeveral characters after \"_\" or \"^\" will be considered as a\nsingle item - so grouping with {} is normally not needed.  For\nexample, the following things will be parsed as single sub- or\nsuperscripts:\n\n 10^24   or   10^tau     several digits will be considered 1 item.\n 10^-12  or   10^-tau    a leading sign with digits or a word\n x^2-y^3                 will be read as x^2 - y^3, because items are\n             terminated by almost any nonword/nondigit char.\n x_{i^2} or   x^(2-i)    braces or parenthesis do grouping.\n\nStill, ambiguity is possible.  So when in doubt, use {} to enclose\nthe sub/superscript.  If you set this variable to the symbol `{}',\nthe braces are *required* in order to trigger interpretations as\nsub/superscript.  This can be helpful in documents that need \"_\"\nfrequently in plain text." (Org . "8.0") (choice (const :tag "Interpret them" t) (const :tag "Curly brackets only" {}) (const :tag "Do not interpret them" nil)) #[257 "\211\300>\207" [(t nil {})] 3 "\n\n(fn X)"] org-export-with-toc #[0 "\300\207" [t] 1] "Non-nil means create a table of contents in exported files.\n\nThe table of contents contains headlines with levels up to\n`org-export-headline-levels'.\n\nWhen this variable is set to an integer N, include levels up to\nN in the table of contents.  Although it may then be different\nfrom `org-export-headline-levels', it is cannot be larger than\nthe number of headline levels.\n\nWhen nil, no table of contents is created.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"toc:nil\" or \"toc:3\"." (choice (const :tag "No Table of Contents" nil) (const :tag "Full Table of Contents" t) (integer :tag "TOC to level")) #[257 "\300!\206\211\250\207" [booleanp] 3 "\n\n(fn X)"] org-export-with-tables #[0 "\300\207" [t] 1] "Non-nil means export tables.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"|:nil\"." (Org . "8.0") org-export-with-tags #[0 "\300\207" [t] 1] "If nil, do not export tags, just remove them from headlines.\n\nIf this is the symbol `not-in-toc', tags will be removed from\ntable of contents entries, but still be shown in the headlines of\nthe document.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"tags:nil\"." (choice (const :tag "Off" nil) (const :tag "Not in TOC" not-in-toc) (const :tag "On" t)) #[257 "\211\300>\207" [(t nil not-in-toc)] 3 "\n\n(fn X)"] org-export-with-tasks #[0 "\300\207" [t] 1] "Non-nil means include TODO items for export.\n\nThis may have the following values:\nt                    include tasks independent of state.\n`todo'               include only tasks that are not yet done.\n`done'               include only tasks that are already done.\nnil                  ignore all tasks.\nlist of keywords     include tasks with these keywords.\n\nThis option can also be set with the OPTIONS keyword,\ne.g. \"tasks:nil\"." (choice (const :tag "All tasks" t) (const :tag "No tasks" nil) (const :tag "Not-done tasks" todo) (const :tag "Only done tasks" done) (repeat :tag "Specific TODO keywords" (string :tag "Keyword"))) #[257 "\211\300>\206\211<\205\301\302\"\207" [(nil t todo done) cl-every stringp] 4 "\n\n(fn X)"] org-export-with-title #[0 "\300\207" [t] 1] "Non-nil means print title into the exported file.\nThis option can also be set with the OPTIONS keyword,\ne.g. \"title:nil\"." (Org . "8.3") org-export-time-stamp-file #[0 "\300\207" [t] 1] "Non-nil means insert a time stamp into the exported file.\nThe time stamp shows when the file was created.  This option can\nalso be set with the OPTIONS keyword, e.g. \"timestamp:nil\"." org-export-with-timestamps #[0 "\300\207" [t] 1] "Non nil means allow timestamps in export.\n\nIt can be set to any of the following values:\n  t          export all timestamps.\n  `active'   export active timestamps only.\n  `inactive' export inactive timestamps only.\n  nil        do not export timestamps\n\nThis only applies to timestamps isolated in a paragraph\ncontaining only timestamps.  Other timestamps are always\nexported.\n\nThis option can also be set with the OPTIONS keyword, e.g.\n\"<:nil\"." (choice (const :tag "All timestamps" t) (const :tag "Only active timestamps" active) (const :tag "Only inactive timestamps" inactive) (const :tag "No timestamp" nil)) #[257 "\211\300>\207" [(t nil active inactive)] 3 "\n\n(fn X)"] org-export-with-todo-keywords #[0 "\300\207" [t] 1] "Non-nil means include TODO keywords in export.\nWhen nil, remove all these keywords from the export.  This option\ncan also be set with the OPTIONS keyword, e.g.  \"todo:nil\"." org-export-allow-bind-keywords #[0 "\300\207" [nil] 1] "Non-nil means BIND keywords can define local variable values.\nThis is a potential security risk, which is why the default value\nis nil.  You can also allow them through local buffer variables." (Org . "8.0") org-export-with-broken-links #[0 "\300\207" [nil] 1] "Non-nil means do not raise an error on broken links.\n\nWhen this variable is non-nil, broken links are ignored, without\nstopping the export process.  If it is set to `mark', broken\nlinks are marked as such in the output, with a string like\n\n  [BROKEN LINK: path]\n\nwhere PATH is the un-resolvable reference.\n\nThis option can also be set with the OPTIONS keyword, e.g.,\n\"broken-links:mark\"." (Org . "9.0") (choice (const :tag "Ignore broken links" t) (const :tag "Mark broken links in output" mark) (const :tag "Raise an error" nil)) org-export-snippet-translation-alist #[0 "\300\207" [nil] 1] "Alist between export snippets back-ends and exporter back-ends.\n\nThis variable allows providing shortcuts for export snippets.\n\nFor example, with a value of \\='((\"h\" . \"html\")), the\nHTML back-end will recognize the contents of \"@@h:<b>@@\" as\nHTML code while every other back-end will ignore it." (Org . "8.0") (repeat (cons (string :tag "Shortcut") (string :tag "Back-end"))) #[257 "\211<\205\300\301\"\205\300\302\303\304\"\"\205\300\302\303\305\"\"\207" [cl-every consp stringp mapcar car cdr] 6 "\n\n(fn X)"] org-export-global-macros #[0 "\300\207" [nil] 1] "Alist between macro names and expansion templates.\n\nThis variable defines macro expansion templates available\nglobally.  Associations follow the pattern\n\n  (NAME . TEMPLATE)\n\nwhere NAME is a string beginning with a letter and consisting of\nalphanumeric characters only.\n\nTEMPLATE is the string to which the macro is going to be\nexpanded.  Inside, \"$1\", \"$2\"... are place-holders for\nmacro's arguments.  Moreover, if the template starts with\n\"(eval\", it will be parsed as an Elisp expression and evaluated\naccordingly." (Org . "9.1") (repeat (cons (string :tag "Name") (string :tag "Template"))) org-export-coding-system #[0 "\300\207" [nil] 1] "Coding system for the exported file." (Org . "8.0") coding-system org-export-copy-to-kill-ring #[0 "\300\207" [nil] 1] "Non-nil means pushing export output to the kill ring.\nThis variable is ignored during asynchronous export." (Org . "8.3") (choice (const :tag "Always" t) (const :tag "When export is done interactively" if-interactive) (const :tag "Never" nil)) org-export-initial-scope #[0 "\300\207" [buffer] 1] "The initial scope when exporting with `org-export-dispatch'.\nThis variable can be either set to `buffer' or `subtree'." (choice (const :tag "Export current buffer" buffer) (const :tag "Export current subtree" subtree)) org-export-show-temporary-export-buffer #[0 "\300\207" [t] 1] "Non-nil means show buffer after exporting to temp buffer.\nWhen Org exports to a file, the buffer visiting that file is never\nshown, but remains buried.  However, when exporting to\na temporary buffer, that buffer is popped up in a second window.\nWhen this variable is nil, the buffer remains buried also in\nthese cases." org-export-in-background #[0 "\300\207" [nil] 1] "Non-nil means export and publishing commands will run in background.\nResults from an asynchronous export are never displayed\nautomatically.  But you can retrieve them with `\\[org-export-stack]'." (Org . "8.0") org-export-async-init-file #[0 "\300\207" [nil] 1] "File used to initialize external export process.\n\nValue must be either nil or an absolute file name.  When nil, the\nexternal process is launched like a regular Emacs session,\nloading user's initialization file and any site specific\nconfiguration.  If a file is provided, it, and only it, is loaded\nat start-up.\n\nTherefore, using a specific configuration makes the process to\nload faster and the export more portable." (Org . "8.0") (choice (const :tag "Regular startup" nil) (file :tag "Specific start-up file" :must-match t)) org-export-dispatch-use-expert-ui #[0 "\300\207" [nil] 1] "Non-nil means using a non-intrusive `org-export-dispatch'.\nIn that case, no help buffer is displayed.  Though, an indicator\nfor current export scope is added to the prompt (\"b\" when\noutput is restricted to body only, \"s\" when it is restricted to\nthe current subtree, \"v\" when only visible elements are\nconsidered for export, \"f\" when publishing functions should be\npassed the FORCE argument and \"a\" when the export should be\nasynchronous).  Also, [?] allows switching back to standard\nmode." (Org . "8.0")] 14)
#@77 compiler-macro for inlining `org-export-backend-p'.
 
(fn CL-WHOLE-ARG CL-X)
(defalias 'org-export-backend-p--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block org-export-backend-p (and (memq (type-of cl-x) cl-struct-org-export-backend-tags) t)) nil] 9 (#$ . 34077)])
(put 'org-export-backend-p 'compiler-macro 'org-export-backend-p--cmacro)
#@13 
 
(fn CL-X)
(defalias 'org-export-backend-p #[257 "\301!>\205    \302\207" [cl-struct-org-export-backend-tags type-of t] 3 (#$ . 34460)])
(byte-code "\300\301\302\303#\304\305\306\301#\207" [function-put org-export-backend-p side-effect-free error-free put org-export-backend cl-deftype-satisfies] 5)
#@80 compiler-macro for inlining `org-export-backend-name'.
 
(fn CL-WHOLE-ARG CL-X)
(defalias 'org-export-backend-name--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block org-export-backend-name (or (org-export-backend-p cl-x) (signal 'wrong-type-argument (list 'org-export-backend cl-x))) (aref cl-x 1)) nil] 9 (#$ . 34767)])
(put 'org-export-backend-name 'compiler-macro 'org-export-backend-name--cmacro)
#@125 Access slot "name" of `(org-export-backend (:constructor org-export-create-backend) (:copier nil))' struct CL-X.
 
(fn CL-X)
(defalias 'org-export-backend-name #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-org-export-backend-tags type-of signal wrong-type-argument org-export-backend 1] 5 (#$ . 35211)])
(byte-code "\300\301\302\303#\300\207" [function-put org-export-backend-name side-effect-free t] 4)
#@82 compiler-macro for inlining `org-export-backend-parent'.
 
(fn CL-WHOLE-ARG CL-X)
(defalias 'org-export-backend-parent--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block org-export-backend-parent (or (org-export-backend-p cl-x) (signal 'wrong-type-argument (list 'org-export-backend cl-x))) (aref cl-x 2)) nil] 9 (#$ . 35641)])
(put 'org-export-backend-parent 'compiler-macro 'org-export-backend-parent--cmacro)
#@127 Access slot "parent" of `(org-export-backend (:constructor org-export-create-backend) (:copier nil))' struct CL-X.
 
(fn CL-X)
(defalias 'org-export-backend-parent #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-org-export-backend-tags type-of signal wrong-type-argument org-export-backend 2] 5 (#$ . 36095)])
(byte-code "\300\301\302\303#\300\207" [function-put org-export-backend-parent side-effect-free t] 4)
#@87 compiler-macro for inlining `org-export-backend-transcoders'.
 
(fn CL-WHOLE-ARG CL-X)
(defalias 'org-export-backend-transcoders--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block org-export-backend-transcoders (or (org-export-backend-p cl-x) (signal 'wrong-type-argument (list 'org-export-backend cl-x))) (aref cl-x 3)) nil] 9 (#$ . 36531)])
(put 'org-export-backend-transcoders 'compiler-macro 'org-export-backend-transcoders--cmacro)
#@132 Access slot "transcoders" of `(org-export-backend (:constructor org-export-create-backend) (:copier nil))' struct CL-X.
 
(fn CL-X)
(defalias 'org-export-backend-transcoders #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-org-export-backend-tags type-of signal wrong-type-argument org-export-backend 3] 5 (#$ . 37010)])
(byte-code "\300\301\302\303#\300\207" [function-put org-export-backend-transcoders side-effect-free t] 4)
#@83 compiler-macro for inlining `org-export-backend-options'.
 
(fn CL-WHOLE-ARG CL-X)
(defalias 'org-export-backend-options--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block org-export-backend-options (or (org-export-backend-p cl-x) (signal 'wrong-type-argument (list 'org-export-backend cl-x))) (aref cl-x 4)) nil] 9 (#$ . 37461)])
(put 'org-export-backend-options 'compiler-macro 'org-export-backend-options--cmacro)
#@128 Access slot "options" of `(org-export-backend (:constructor org-export-create-backend) (:copier nil))' struct CL-X.
 
(fn CL-X)
(defalias 'org-export-backend-options #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-org-export-backend-tags type-of signal wrong-type-argument org-export-backend 4] 5 (#$ . 37920)])
(byte-code "\300\301\302\303#\300\207" [function-put org-export-backend-options side-effect-free t] 4)
#@83 compiler-macro for inlining `org-export-backend-filters'.
 
(fn CL-WHOLE-ARG CL-X)
(defalias 'org-export-backend-filters--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block org-export-backend-filters (or (org-export-backend-p cl-x) (signal 'wrong-type-argument (list 'org-export-backend cl-x))) (aref cl-x 5)) nil] 9 (#$ . 38359)])
(put 'org-export-backend-filters 'compiler-macro 'org-export-backend-filters--cmacro)
#@128 Access slot "filters" of `(org-export-backend (:constructor org-export-create-backend) (:copier nil))' struct CL-X.
 
(fn CL-X)
(defalias 'org-export-backend-filters #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-org-export-backend-tags type-of signal wrong-type-argument org-export-backend 5] 5 (#$ . 38818)])
(byte-code "\300\301\302\303#\300\207" [function-put org-export-backend-filters side-effect-free t] 4)
#@82 compiler-macro for inlining `org-export-backend-blocks'.
 
(fn CL-WHOLE-ARG CL-X)
(defalias 'org-export-backend-blocks--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block org-export-backend-blocks (or (org-export-backend-p cl-x) (signal 'wrong-type-argument (list 'org-export-backend cl-x))) (aref cl-x 6)) nil] 9 (#$ . 39257)])
(put 'org-export-backend-blocks 'compiler-macro 'org-export-backend-blocks--cmacro)
#@127 Access slot "blocks" of `(org-export-backend (:constructor org-export-create-backend) (:copier nil))' struct CL-X.
 
(fn CL-X)
(defalias 'org-export-backend-blocks #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-org-export-backend-tags type-of signal wrong-type-argument org-export-backend 6] 5 (#$ . 39711)])
(byte-code "\300\301\302\303#\300\207" [function-put org-export-backend-blocks side-effect-free t] 4)
#@80 compiler-macro for inlining `org-export-backend-menu'.
 
(fn CL-WHOLE-ARG CL-X)
(defalias 'org-export-backend-menu--cmacro #[514 "\300\301\302\303\211\211&\207" [cl--defsubst-expand (cl-x) (cl-block org-export-backend-menu (or (org-export-backend-p cl-x) (signal 'wrong-type-argument (list 'org-export-backend cl-x))) (aref cl-x 7)) nil] 9 (#$ . 40147)])
(put 'org-export-backend-menu 'compiler-macro 'org-export-backend-menu--cmacro)
#@125 Access slot "menu" of `(org-export-backend (:constructor org-export-create-backend) (:copier nil))' struct CL-X.
 
(fn CL-X)
(defalias 'org-export-backend-menu #[257 "\301!>\204\302\303\304D\"\210\211\305H\207" [cl-struct-org-export-backend-tags type-of signal wrong-type-argument org-export-backend 7] 5 (#$ . 40591)])
(byte-code "\300\301\302\303#\300\207" [function-put org-export-backend-menu side-effect-free t] 4)
#@140 compiler-macro for inlining `org-export-create-backend'.
 
(fn CL-WHOLE &cl-quote &key NAME PARENT TRANSCODERS OPTIONS FILTERS BLOCKS MENU)
(defalias 'org-export-create-backend--cmacro #[385 "\300\301\"A@\300\302\"A@\300\303\"A@\300\304\"A@\300\305\"A@\300\306\"A@\300\307\"A@\211\203Y\211@\310>\203A\211AA\262\202.\311    >A@\203P\312\262\202.\313\314@\"\210\202.\210\315\316\317\312\f\312\f\f\f\f\f\f\f&\f\207" [plist-member :name :parent :transcoders :options :filters :blocks :menu (:name :parent :transcoders :options :filters :blocks :menu :allow-other-keys) :allow-other-keys nil error "Keyword argument %s not one of (:name :parent :transcoders :options :filters :blocks :menu)" cl--defsubst-expand (name parent transcoders options filters blocks menu) (cl-block org-export-create-backend (record 'org-export-backend name parent transcoders options filters blocks menu))] 22 (#$ . 41022)])
(put 'org-export-create-backend 'compiler-macro 'org-export-create-backend--cmacro)
#@118 Constructor for objects of type `org-export-backend'.
 
(fn &key NAME PARENT TRANSCODERS OPTIONS FILTERS BLOCKS MENU)
(defalias 'org-export-create-backend #[128 "\300\301\"A@\300\302\"A@\300\303\"A@\300\304\"A@\300\305\"A@\300\306\"A@\300\307\"A@\211\203Y\211@\310>\203A\211AA\262\202.\311    >A@\203P\312\262\202.\313\314@\"\210\202.\210\315\316&\207" [plist-member :name :parent :transcoders :options :filters :blocks :menu (:name :parent :transcoders :options :filters :blocks :menu :allow-other-keys) :allow-other-keys nil error "Keyword argument %s not one of (:name :parent :transcoders :options :filters :blocks :menu)" record org-export-backend] 17 (#$ . 42036)])
(byte-code "\300\301\302\303#\304\305\306\307\310\306\311\312\305\303&    \207" [function-put org-export-create-backend side-effect-free t cl-struct-define org-export-backend nil cl-structure-object record ((cl-tag-slot) (name) (parent) (transcoders) (options) (filters) (blocks) (menu)) cl-struct-org-export-backend-tags] 11)
#@113 Return export back-end named after NAME.
NAME is a symbol.  Return nil if no such back-end is found.
 
(fn NAME)
(defalias 'org-export-get-backend #[257 "\301\302\303\304\305\306!\307\"\310\311%\"\207" [org-export-registered-backends cl-find-if make-byte-code 257 "\300\302!    >\204\303\304\305D\"\210\306H=\207" vconcat vector [cl-struct-org-export-backend-tags type-of signal wrong-type-argument org-export-backend 1] 6 "\n\n(fn B)"] 8 (#$ . 43071)])
#@115 Register BACKEND as a known export back-end.
BACKEND is a structure with `org-export-backend' type.
 
(fn BACKEND)
(defalias 'org-export-register-backend #[257 "\302!>\204\303\304\305D\"\210\211\306H\204\307\310!\210\302!>\204(\303\304\305D\"\210\211\311H\211\203:\312!\204:\307\313\"\210\210\312\302!>\204K\303\304\305D\"\210\306H!\211\203[\211    >\240\202`    B\211\207" [cl-struct-org-export-backend-tags org-export-registered-backends type-of signal wrong-type-argument org-export-backend 1 error "Cannot register a unnamed export back-end" 2 org-export-get-backend "Cannot use unknown \"%s\" back-end as a parent"] 6 (#$ . 43536)])
#@57 Signal an error if BACKEND isn't defined.
 
(fn BACKEND)
(defalias 'org-export-barf-if-invalid-backend #[257 "\301!>\205    \302?\205\303\304\"\207" [cl-struct-org-export-backend-tags type-of t error "Unknown \"%s\" back-end: Aborting export"] 4 (#$ . 44198)])
#@249 Non-nil if BACKEND is derived from one of BACKENDS.
BACKEND is an export back-end, as returned by, e.g.,
`org-export-create-backend', or a symbol referring to
a registered back-end.  BACKENDS is constituted of symbols.
 
(fn BACKEND &rest BACKENDS)
(defalias 'org-export-derived-backend-p #[385 "9\203\n\301!\262\205q\3022q\303!>\204!\304\305\306D\"\210\307H\203\\\303!>\2046\304\305\306D\"\210\310H>\203C\311\302\312\"\210\301\303!>\204S\304\305\306D\"\210\307H!\262\202\303!>\204k\304\305\306D\"\210\310H>0\207" [cl-struct-org-export-backend-tags org-export-get-backend exit type-of signal wrong-type-argument org-export-backend 2 1 throw t] 7 (#$ . 44468)])
#@370 Return full translation table for BACKEND.
 
BACKEND is an export back-end, as return by, e.g,,
`org-export-create-backend'.  Return value is an alist where
keys are element or object types, as symbols, and values are
transcoders.
 
Unlike to `org-export-backend-transcoders', this function
also returns transcoders inherited from parent back-ends,
if any.
 
(fn BACKEND)
(defalias 'org-export-get-all-transcoders #[257 "\2119\203\n\301!\262\211\205\\\302!>\204\303\304\305D\"\210\211\306H\307\302!>\2040\303\304\305D\"\210\310H\211\262\203Y\301!\262\311\302!>\204P\303\304\305D\"\210\306H\"\262\202!\266\202\207" [cl-struct-org-export-backend-tags org-export-get-backend type-of signal wrong-type-argument org-export-backend 3 nil 2 append] 9 (#$ . 45169)])
#@350 Return export options for BACKEND.
 
BACKEND is an export back-end, as return by, e.g,,
`org-export-create-backend'.  See `org-export-options-alist'
for the shape of the return value.
 
Unlike to `org-export-backend-options', this function also
returns options inherited from parent back-ends, if any.
 
Return nil if BACKEND is unknown.
 
(fn BACKEND)
(defalias 'org-export-get-all-options #[257 "\2119\203\n\301!\262\211\205\\\302!>\204\303\304\305D\"\210\211\306H\307\302!>\2040\303\304\305D\"\210\310H\211\262\203Y\301!\262\311\302!>\204P\303\304\305D\"\210\306H\"\262\202!\266\202\207" [cl-struct-org-export-backend-tags org-export-get-backend type-of signal wrong-type-argument org-export-backend 4 nil 2 append] 9 (#$ . 45960)])
#@338 Return complete list of filters for BACKEND.
 
BACKEND is an export back-end, as return by, e.g,,
`org-export-create-backend'.  Return value is an alist where
keys are symbols and values lists of functions.
 
Unlike to `org-export-backend-filters', this function also
returns filters inherited from parent back-ends, if any.
 
(fn BACKEND)
(defalias 'org-export-get-all-filters #[257 "\2119\203\n\301!\262\211\205\\\302!>\204\303\304\305D\"\210\211\306H\307\302!>\2040\303\304\305D\"\210\310H\211\262\203Y\301!\262\311\302!>\204P\303\304\305D\"\210\306H\"\262\202!\266\202\207" [cl-struct-org-export-backend-tags org-export-get-backend type-of signal wrong-type-argument org-export-backend 5 nil 2 append] 9 (#$ . 46727)])
#@3974 Define a new back-end BACKEND.
 
TRANSCODERS is an alist between object or element types and
functions handling them.
 
These functions should return a string without any trailing
space, or nil.  They must accept three arguments: the object or
element itself, its contents or nil when it isn't recursive and
the property list used as a communication channel.
 
Contents, when not nil, are stripped from any global indentation
(although the relative one is preserved).  They also always end
with a single newline character.
 
If, for a given type, no function is found, that element or
object type will simply be ignored, along with any blank line or
white space at its end.  The same will happen if the function
returns the nil value.  If that function returns the empty
string, the type will be ignored, but the blank lines or white
spaces will be kept.
 
In addition to element and object types, one function can be
associated to the `template' (or `inner-template') symbol and
another one to the `plain-text' symbol.
 
The former returns the final transcoded string, and can be used
to add a preamble and a postamble to document's body.  It must
accept two arguments: the transcoded string and the property list
containing export options.  A function associated to `template'
will not be applied if export has option "body-only".
A function associated to `inner-template' is always applied.
 
The latter, when defined, is to be called on every text not
recognized as an element or an object.  It must accept two
arguments: the text string and the information channel.  It is an
appropriate place to protect special chars relative to the
back-end.
 
BODY can start with pre-defined keyword arguments.  The following
keywords are understood:
 
  :filters-alist
 
    Alist between filters and function, or list of functions,
    specific to the back-end.  See `org-export-filters-alist' for
    a list of all allowed filters.  Filters defined here
    shouldn't make a back-end test, as it may prevent back-ends
    derived from this one to behave properly.
 
  :menu-entry
 
    Menu entry for the export dispatcher.  It should be a list
    like:
 
      \='(KEY DESCRIPTION-OR-ORDINAL ACTION-OR-MENU)
 
    where :
 
      KEY is a free character selecting the back-end.
 
      DESCRIPTION-OR-ORDINAL is either a string or a number.
 
      If it is a string, is will be used to name the back-end in
      its menu entry.  If it is a number, the following menu will
      be displayed as a sub-menu of the back-end with the same
      KEY.  Also, the number will be used to determine in which
      order such sub-menus will appear (lowest first).
 
      ACTION-OR-MENU is either a function or an alist.
 
      If it is an action, it will be called with four
      arguments (booleans): ASYNC, SUBTREEP, VISIBLE-ONLY and
      BODY-ONLY.  See `org-export-as' for further explanations on
      some of them.
 
      If it is an alist, associations should follow the
      pattern:
 
        \='(KEY DESCRIPTION ACTION)
 
      where KEY, DESCRIPTION and ACTION are described above.
 
    Valid values include:
 
      \='(?m "My Special Back-end" my-special-export-function)
 
      or
 
      \='(?l "Export to LaTeX"
           (?p "As PDF file" org-latex-export-to-pdf)
           (?o "As PDF file and open"
               (lambda (a s v b)
                 (if a (org-latex-export-to-pdf t s v b)
                   (org-open-file
                    (org-latex-export-to-pdf nil s v b)))))))
 
      or the following, which will be added to the previous
      sub-menu,
 
      \='(?l 1
          ((?B "As TEX buffer (Beamer)" org-beamer-export-as-latex)
           (?P "As PDF file (Beamer)" org-beamer-export-to-pdf)))
 
  :options-alist
 
    Alist between back-end specific properties introduced in
    communication channel and how their value are acquired.  See
    `org-export-options-alist' for more information about
    structure of the values.
 
(fn BACKEND TRANSCODERS &rest BODY)
(defalias 'org-export-define-backend #[642 "\300\211\211\301@!\203@\211A\262\242\211\302\267\2027\211A\262\242\262\202<\211A\262\242\262\202<\211A\262\242\262\202<\303\304\"\210\210\202\305\306\307\300        \300\n&!\207" [nil keywordp #s(hash-table size 3 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (:filters-alist 22 :menu-entry 33 :options-alist 44)) error "Unknown keyword: %s" org-export-register-backend record org-export-backend] 16 (#$ . 47483)])
(byte-code "\300\301\302\303#\300\207" [function-put org-export-define-backend lisp-indent-function 1] 4)
#@1420 Create a new back-end as a variant of an existing one.
 
CHILD is the name of the derived back-end.  PARENT is the name of
the parent back-end.
 
BODY can start with pre-defined keyword arguments.  The following
keywords are understood:
 
  :filters-alist
 
    Alist of filters that will overwrite or complete filters
    defined in PARENT back-end.  See `org-export-filters-alist'
    for a list of allowed filters.
 
  :menu-entry
 
    Menu entry for the export dispatcher.  See
    `org-export-define-backend' for more information about the
    expected value.
 
  :options-alist
 
    Alist of back-end specific properties that will overwrite or
    complete those defined in PARENT back-end.  Refer to
    `org-export-options-alist' for more information about
    structure of the values.
 
  :translate-alist
 
    Alist of element and object types and transcoders that will
    overwrite or complete transcode table from PARENT back-end.
    Refer to `org-export-define-backend' for detailed information
    about transcoders.
 
As an example, here is how one could define "my-latex" back-end
as a variant of `latex' back-end with a custom template function:
 
  (org-export-define-derived-backend \='my-latex \='latex
     :translate-alist \='((template . my-latex-template-fun)))
 
The back-end could then be called with, for example:
 
  (org-export-to-buffer \='my-latex "*Test my-latex*")
 
(fn CHILD PARENT &rest BODY)
(defalias 'org-export-define-derived-backend #[642 "\300\211\211\211\301@!\203L\211A\262\242\211\302\267\202C\211A\262\242\262\202H\211A\262\242\262\202H\211A\262\242\262\202H\211A\262\242\262\202H\303\304\"\210\210\202\305\306\307        \n\300 &!\207" [nil keywordp #s(hash-table size 4 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (:filters-alist 23 :menu-entry 34 :options-alist 45 :translate-alist 56)) error "Unknown keyword: %s" org-export-register-backend record org-export-backend] 17 (#$ . 52069)])
(byte-code "\300\301\302\303#\300\207" [function-put org-export-define-derived-backend lisp-indent-function 2] 4)
#@442 Collect export options from the current buffer.
 
Optional argument BACKEND is an export back-end, as returned by
`org-export-create-backend'.
 
When optional argument SUBTREEP is non-nil, assume the export is
done against the current sub-tree.
 
Third optional argument EXT-PLIST is a property list with
external parameters overriding Org default settings, but still
inferior to file-local settings.
 
(fn &optional BACKEND SUBTREEP EXT-PLIST)
(defalias 'org-export-get-environment #[768 "\300 \211\203\211@\301@!A@L\210A\266\202\202\210\302\303!\304!\205*\305!$\207" [org-export--list-bound-variables make-local-variable org-combine-plists org-export--get-global-options org-export--get-inbuffer-options org-export--get-subtree-options] 9 (#$ . 54163)])
#@246 Parse an OPTIONS line and return values as a plist.
Optional argument BACKEND is an export back-end, as returned by,
e.g., `org-export-create-backend'.  It specifies which back-end
specific items to read, if any.
 
(fn OPTIONS &optional BACKEND)
(defalias 'org-export--parse-option-keyword #[513 "\301\302\303\304#\203!\301\225\262\305\306\"\307\305\310\"!BB\262\202\262\311\312!\"\302\205[\211\203X\211@\3108\211\203P\313\314#\211\203O\315@A#\262\210\210A\266\202\202/\262\207" [org-export-options-alist 0 nil string-match "\\(.+?\\):\\((.*?)\\|\\S-*\\)[     ]*" match-string 1 read 2 append org-export-get-all-options assoc-string t plist-put] 13 (#$ . 54937)])
#@233 Get export options in subtree at point.
Optional argument BACKEND is an export back-end, as returned by,
e.g., `org-export-create-backend'.  It specifies back-end used
for export.  Return options as a plist.
 
(fn &optional BACKEND)
(defalias 'org-export--get-subtree-options #[256 "\212\214~\210\304 \203\305 \210\202\306\307!\210\310`\311\312#\211\205 \313\"\262\314\310`\315\312#\2065\316\317    !\210\320\321!)BC\322\323!\n\"\211\211\203\276\211@\211@A@\211\203\265\324\"A\206h\310`\325P\312#BB\262\211\262\211\203\264\326\3218\211\327\267\202\256\330\331\2119\203\206\211\202\237\211\211:\204\225\211;\205\235\332\202\235\211@9\205\235\211@\262 \236A\262\"\202\257\333!\202\257\262#\262\210\266A\266\202\202>\262\266\203*\207" [case-fold-search org-complex-heading-regexp org-export-options-alist org-element-object-restrictions org-at-heading-p org-up-heading-safe org-back-to-heading t org-entry-get "EXPORT_OPTIONS" selective org-export--parse-option-keyword "TITLE" "EXPORT_TITLE" nil looking-at match-string-no-properties 4 append org-export-get-all-options assoc "EXPORT_" plist-put #s(hash-table size 2 test eql rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (parse 122 split 168)) org-element-parse-secondary-string keyword plain-text split-string] 18 (#$ . 55636)])
#@336 Return current buffer export options, as a plist.
 
Optional argument BACKEND, when non-nil, is an export back-end,
as returned by, e.g., `org-export-create-backend'.  It specifies
which back-end specific options should also be read in the
process.
 
Assume buffer is in Org mode.  Narrowing, if any, is ignored.
 
(fn &optional BACKEND)
(defalias 'org-export--get-inbuffer-options #[256 "\305\306\307!    \"\310\311\312\313\314\315\316\"\"\n\244!\"\314C\314C\314C\314C\317\320\321\322\323 !\324\"\325\326%\240\210\211\317\327\330\322\323\f\f\f\f\f\f\f&\331\"\332\333%\240\210\211\242 \205T C!\210\242\211\203\247\211@\334\335\242\"\336\2119\203o\211\202\210\211\211:\204~\211;\205\206\337\202\206\211@9\205\206\211@\262\f\236A\262\"\340\337\341#\210\342\242#\240\266A\266\202\202X\242\262\266\202)\207" [case-fold-search org-export-options-alist org-export-special-keywords buffer-file-name org-element-object-restrictions t append org-export-get-all-options format "^[     ]*#\\+%s:" regexp-opt delq nil mapcar cadr make-byte-code 257 "\301\300\211\203&\211@\211A@\232\203\211@\302\"\204\211B\262\210A\266\202\202\262\207" vconcat vector [nil memql] 8 "\n\n(fn KEYWORD)" 256 "\212\214~\210eb\210\307\302\310\311#\205\312 \211\211:\204 \211;\205(\313\202(\211@9\205(\211@\262\314=\203\315\211;\203>\316\317#\202D\320A@\"\266\202\321\211;\203U\316\317#\202[\320A@\"\266\202\322\267\202\370\323\324\211\310\325\203q\326\202r\327\330\325\331\330##\266\202#\332!\211\203\210\202\213\333!\211\235\204\305\334\335!r\211q\210\336\317\337\340\341!\342\"\343$\216\204\256\344!>\345\346\"c\210\311?\347 \210)\306\242    B!\210*\210\266\202\303\350\303\242\351\300\"\"\240\210\202\303\350\303\242\352\353\354\355\"\320\303\242\352\"\"\356!\357!\266\202D\"\240\210\202\305\242!\211\203\211@\303\360\303\242\361\301\2368\362\363\"\203F\304\242>\204\"\304\304\242B\240\210\320\303\242\"\364    !\2043\211\202A\211\203?\211\365\nQ\202A\262\202\362\366\"\203\222\320\303\242\"\204p\310\325\203b\326\202c\327\330\325\331\330##\266\202\202\320\303\242\"\367    \310\325\203\203\326\202\204\327\330\325\331\330##\266\202Q\202\362\370\"\203\320\320\303\242\"\365    \310\325\203\254\326\202\255\327\330\325\331\330##\266\202Q\310\325\203\302\326\202\303\327\330\325\331\330##\266\202\202\362\371\"\203\346\353\320\303\242\"\372\n!\"\202\373\374\"\203\362\202\375\303\242\"\204\202\320\303\242\"\262#\240\210A\266\202\202\374\210\266\210\202*\207" [re-search-forward nil t org-element-at-point plain-text keyword :key get-text-property 0 plist-get :value #s(hash-table size 3 test equal rehash-size 1.5 rehash-threshold 0.8125 purecopy t data ("SETUPFILE" 99 "OPTIONS" 202 "FILETAGS" 216)) org-unbracket-string "\"" replace-regexp-in-string "\\`\\([     ]*\n\\)+" "\\`[     \n ]+" "" "[     \n ]+\\'" org-file-url-p expand-file-name generate-new-buffer " *temp*" make-byte-code "\301\300!\205    \302\300!\207" vconcat vector [buffer-name kill-buffer] 2 file-name-directory org-file-contents noerror org-mode org-combine-plists org-export--parse-option-keyword :filetags append org-split-string ":" copy-sequence delete-dups plist-put 4 eql parse org-string-nw-p "\n" space " " newline split split-string memql (t) plist-member default-directory org-inhibit-startup] 22 "\n\n(fn &optional FILES)" org-element-parse-secondary-string plist-get keyword plain-text org-element-map #[257 "\300\301\302\303#\"\207" [org-element-set-element replace-regexp-in-string "\n" " "] 7 "\n\n(fn S)"] plist-put] 20 (#$ . 56980)])
#@251 Return properties related to export process, as a plist.
Optional arguments BACKEND, SUBTREEP, VISIBLE-ONLY and BODY-ONLY
are like the arguments with the same names of function
`org-export-as'.
 
(fn &optional BACKEND SUBTREEP VISIBLE-ONLY BODY-ONLY)
(defalias 'org-export--get-export-attributes #[1024 "\300\301\302\205\303\205 \304\205\305E\"\306\307\310    !\311\312\313\314\315\316$\257\207" [:export-options delq nil subtree visible-only body-only :back-end :translate-alist org-export-get-all-transcoders :exported-data make-hash-table :test eq :size 4001] 16 (#$ . 60660)])
#@61 Return properties related to buffer attributes, as a plist.
(defalias 'org-export--get-buffer-attributes #[0 "\300\301\302 !\303\304\302 !F\207" [:input-buffer buffer-name buffer-base-buffer :input-file buffer-file-name] 5 (#$ . 61255)])
#@268 Return global export options as a plist.
Optional argument BACKEND, if non-nil, is an export back-end, as
returned by, e.g., `org-export-create-backend'.  It specifies
which back-end specific export options should also be read in the
process.
 
(fn &optional BACKEND)
(defalias 'org-export--get-global-options #[256 "\302\303\304!\"\211\211\203e\211@\211@\305\"\204]\306\307\3108!\3118\312=\203W\313\314\2119\2035\211\202N\211\211:\204D\211;\205L\315\202L\211@9\205L\211@\262    \236A\262\"\202X\211\262#\262\210A\266\202\202\262\207" [org-export-options-alist org-element-object-restrictions nil append org-export-get-all-options plist-member plist-put eval 3 4 parse org-element-parse-secondary-string keyword plain-text] 15 (#$ . 61500)])
#@182 Return variables bound from BIND keywords in current buffer.
Also look for BIND keywords in setup files.  The return value is
an alist where associations are (VARIABLE-NAME VALUE).
(defalias 'org-export--list-bound-variables #[0 "\205\301C\211\302\303\304\305\306!\307\"\310\311%\240\210\211\242\301\211\"\237\262\207" [org-export-allow-bind-keywords nil make-byte-code 514 "\304\212\214~\210eb\210\305\306\307\304#\203\306\310 \211\211:\204\"\211;\205*\311\202*\211@9\205*\211@\262\312=\203\302\313\211;\203@\314\315#\202F\316A@\"\266\202\317\211;\203W\314\315#\202]\316A@\"\266\202\320\232\203q\321\322\323\"!B\262\202\301\324\325\211#\326!\211\203\201\202\204\327!\211\235\204\277\330\331!r\211q\210\332\315\333\334\335!\336\"\337$\216\204\246\340!\304\341 \210)\342\343\"c\210\300\242    B\"\262*\210\266\210\210\202    +\207" vconcat vector [case-fold-search default-directory org-inhibit-startup t re-search-forward "^[     ]*#\\+\\(BIND\\|SETUPFILE\\):" nil org-element-at-point plain-text keyword :value get-text-property 0 plist-get :key "BIND" read format "(%s)" org-unbracket-string "\"" org-file-url-p expand-file-name generate-new-buffer " *temp*" make-byte-code "\301\300!\205    \302\300!\207" vconcat vector [buffer-name kill-buffer] 2 file-name-directory org-mode org-file-contents noerror] 14 "\n\n(fn FILES ALIST)"] 8 (#$ . 62275)])
#@81 Return BLOB parent or nil.
BLOB is the element or object considered.
 
(fn BLOB)
(defalias 'org-export-get-parent #[257 "\300\211;\203\301\302#\202\303A@\"\207" [:parent get-text-property 0 plist-get] 7 (#$ . 63678)])
(put 'org-export-get-parent 'byte-optimizer 'byte-compile-inline-expand)
#@613 Extract tree properties from parse tree.
 
DATA is the parse tree from which information is retrieved.  INFO
is a list holding export options.
 
Following tree properties are set or updated:
 
`:headline-offset' Offset between true level of headlines and
           local level.  An offset of -1 means a headline
           of level 2 should be considered as a level
           1 headline in the context.
 
`:headline-numbering' Alist of all headlines as key and the
              associated numbering as value.
 
`:id-alist' Alist of all ID references as key and associated file
            as value.
 
Return updated plist.
 
(fn DATA INFO)
(defalias 'org-export--collect-tree-properties #[514 "\300\301#\262\300\302\303\304\"Z#\262\305\306\307\"\310\311\312\313#F\"\207" [plist-put :parse-tree :headline-offset 1 org-export--get-min-level org-combine-plists :headline-numbering org-export--collect-headline-numbering :id-alist org-element-map link #[257 "\300\211;\203\301\302#\202\303A@\"\266\202\304\230\205B\305\211;\203+\301\302#\2021\303A@\"\266\202\306!@\211\205@\307!B\266\202\207" [:type get-text-property 0 plist-get "id" :path org-id-find file-relative-name] 7 "\n\n(fn L)"]] 11 (#$ . 63984)])
#@178 Return minimum exportable headline's level in DATA.
DATA is parsed tree as returned by `org-element-parse-buffer'.
OPTIONS is a plist holding export options.
 
(fn DATA OPTIONS)
(defalias 'org-export--get-min-level #[514 "\3002\241\301\211:\204\302\202\211@9\203\211AA\202\211\262\211\203\222\211@\211\211:\2043\211;\205;\303\202;\211@9\205;\211@\262\304=\203\213\305\211;\203Q\306\307#\202W\310A@\"\266\202\204\213\211\310\311\">\204\213\312\211;\203t\306\307#\202z\310A@\"\266\202^\262\313U\203\213\314\300\313\"\210A\266\202\202\210\211\301U\203\235\313\202\236\211\2620\207" [exit 10000 nil plain-text headline :footnote-section-p get-text-property 0 plist-get :ignore-list :level 1 throw] 11 (#$ . 65202)])
#@310 Return numbering of all exportable, numbered headlines in a parse tree.
 
DATA is the parse tree.  OPTIONS is the plist holding export
options.
 
Return an alist whose key is a headline and value is its
associated numbering (in the shape of a list of numbers) or nil
for a footnotes section.
 
(fn DATA OPTIONS)
(defalias 'org-export--collect-headline-numbering #[514 "\301\302\"\303\304\305\306\307\310\311        \"\312\"\313\314%$\207" [org-export-max-depth make-vector 0 org-element-map headline make-byte-code 257 "\303\300\"\205{\304\211;\203\305\306#\202\307A@\"\266\202?\205{\310\300\"S\301\311\312\306\n\312T\211\262GW\203tH\262X\203tW\203QB\262U\203a\301TIB\262V\203m\301\306I\210T\262\202.\211\237\266\206B\262\207" vconcat vector [org-export-max-depth org-export-numbered-headline-p :footnote-section-p get-text-property 0 plist-get org-export-get-relative-level -1 nil] 12 "\n\n(fn HEADLINE)"] 13 (#$ . 65965)])
#@184 List headlines and inlinetasks with a select tag in their tree.
DATA is parsed data as returned by `org-element-parse-buffer'.
INFO is a plist holding export options.
 
(fn DATA INFO)
(defalias 'org-export--selected-trees #[514 "\300\301\302\303\"\"\304\305\306\307\310\311!\312\"\313\314%\302\315\"\"\203%\316\317\320#\202K\321C\321C\321\240\210\211\305\322\323\310\311#\324\"\325\326%\240\210\211\242\321\"\210\242\266\202\207" [cl-mapcan #[257 "\300\301\"\207" [org-tags-expand t] 4 "\n\n(fn TAG)"] plist-get :select-tags cl-some make-byte-code 257 "\211\300\235\207" vconcat vector #1=[] 3 "\n\n(fn TAG)" :filetags org-element-map (headline inlinetask) identity nil 514 "\211:\204\211;\205\304\202\211@9\205\211@\262\211\305>\203\225\306\211;\203.\307\310#\2024\311A@\"\266\202\312\313\314\315\316\317\300!\320\"\321\322%\"\203X\301\323\324\325\326#\301\242#\240\202\220\327=\205\220\211:\204h\330\202u\211@9\203t\211AA\202u\211\262\211\205\216\211@\302\242B\"\210A\266\202\202w\262\262\202\317\211\331=\204\241\211 >\205\317\211:\204\253\330\202\270\211@9\203\267\211AA\202\270\211\262\211\205\315\211@\302\242\"\210A\266\202\202\272\262\207" [org-element-greater-elements plain-text (headline inlinetask) :tags get-text-property 0 plist-get cl-some make-byte-code 257 "\211\300\235\207" vconcat vector #1# 3 "\n\n(fn TAG)" append org-element-map (headline inlinetask) identity headline nil org-data] 11 "\n\n(fn DATA GENEALOGY)"] 14 (#$ . 66942)])
#@367 Non-nil when element or object DATUM should be skipped during export.
OPTIONS is the plist holding export options.  SELECTED, when
non-nil, is a list of headlines or inlinetasks belonging to
a tree with a select tag.  EXCLUDED is a list of tags, as
strings.  Any headline or inlinetask marked with one of those is
not exported.
 
(fn DATUM OPTIONS SELECTED EXCLUDED)
(defalias 'org-export--skip-p #[1028 "\211:\204\211;\205\301\202\211@9\205\211@\262\302\303\"\203\210\304\"\305\211;\2033\306\307#\2029\310A@\"\266\202\206?\307\305\211;\203O\306\307#\202U\310A@\"\266\202\206[\307\203\202\305]\311];\203u\312\313$\210\202\200A\314A@#\240\210\266\266\315\202F\316\317\"\203\227\310\320\"?\202F\316\321\"\203\337\310\322\"\211?\206\332\211:\205\332\323\211;\203\274\306\307#\202\302\310A@\"\266\202@\324=\203\323\325A\"\202\330\325\"?\262\262\202F\316\326\"\203\356\310\327\"?\202F\302\330\"\203\375\310\331\"?\202F\302\332\"\203\354\310\333\"\334\211;\203\306\307#\202\310A@\"\266\202\335\211;\2030\306\307#\2026\310A@\"\266\202\310\336\"\337        \313\315$    \211:\204U\211;\205]\301\202]\211@9\205]\211@\262\340=\203m\310    \341\"?\206\347\342\343\344\345\346\347\f!\350\"\351\352%\"\206\347\203\216    >?\206\347\353\n\211;\203\236\306\307#\202\244\310A@\"\266\202\206\347\204\310\354\n\211;\203\275\306\307#\202\303\310A@\"\266\202\206\347\205\347?\206\347\355>\203\336=?\206\347:\205\347\235?\266\205\202F\302\356\"\203\373\310\357\"?\202F\316\360\"\2034\310\361\"\211\204\315\202/\211:\205/\325\362\211;\203$\306\307#\202*\310A@\"\266\202\"?\262\202F\316\363\"\203C\310\364\"?\202F\316\365\"\203R\310\361\"?\202F\316\366\"\203a\310\367\"?\202F\316\370\"\203p\310\371\"?\202F\316\372\"\203\207\373\374!!\205F\375\"\202F\316\376\"\203\225\377\"\202F\316\201@\"\205F\201A!\211\211:\204\262\211;\205\272\301\202\272\211@9\205\272\211@\262\201B>\205\331\201C\301\201D\201@\"B\201E\315%?\262\205F\310\201F\"\302\201G\"\203\361\315\202D\316\201H\"\203\201I\211;\203\f\306\307#\202\310A@\"\266\202\201J>?\202D\316\201K\"\205D\201I\211;\2037\306\307#\202=\310A@\"\266\202\201L>?\262\207" [org-element-all-objects plain-text memql (comment comment-block) org-export-get-previous-element :post-blank get-text-property 0 plist-get 1 org-add-props nil plist-put t eql clock :with-clocks drawer :with-drawers :drawer-name not member-ignore-case fixed-width :with-fixed-width (footnote-definition footnote-reference) :with-footnotes (headline inlinetask) :with-tasks :todo-keyword :todo-type :with-archived-trees org-export-get-tags inlinetask :with-inlinetasks cl-some make-byte-code 257 "\211\300\235\207" vconcat vector [] 3 "\n\n(fn TAG)" :commentedp :archivedp (todo done) (latex-environment latex-fragment) :with-latex node-property :with-properties :key planning :with-planning property-drawer statistics-cookie :with-statistics-cookies table :with-tables table-cell org-export-table-has-special-column-p org-export-get-parent-table org-export-first-sibling-p table-row org-export-table-row-is-special-p timestamp org-export-get-parent-element (paragraph verse-block) org-element-map remq #[257 "\211;?\206    \300!\207" [org-string-nw-p] 3 "\n\n(fn OBJ)"] :with-timestamps (nil) active :type (active active-range) inactive (inactive inactive-range)] 17 (#$ . 68476)])
#@103 Return appropriate transcoder for BLOB.
INFO is a plist containing export directives.
 
(fn BLOB INFO)
(defalias 'org-export-transcoder #[514 "\211:\204\211;\205\300\202\211@9\205\211@\262\211\301=\203#\302\2023\211\303\304\"\236A\305!\2051\211\262\207" [plain-text org-data #[771 "\207" [] 4 "\n\n(fn DATUM CONTENTS INFO)"] plist-get :translate-alist functionp] 7 (#$ . 72005)])
#@189 Convert DATA into current back-end format.
 
DATA is a parse tree, an element or an object or a secondary
string.  INFO is a plist holding export options.
 
Return a string.
 
(fn DATA INFO)
(defalias 'org-export-data #[514 "\305\306\307\"\"\206\377\211:\204\211;\205!\310\202!\211@9\205!\211@\262\311\211;\2033\312\313#\2029\306A@\"\266\203\306\314\">\203H\315\202\363\310=\203o\316\306\317\"\320\"\211\203f\211\"\202h\262#\202\363\204\207\321\322\323\324\325\326!\327\"\330\331%\332#\202\363\211:\204\221\315\202\236\211@9\203\235\211AA\202\236\211\262\203\314\333=\203\306\334\"\333=\203\335\211;\203\301\312\313#\202\307\306A@\"\266\202\203\320\"\336!\203\3371\344\211\315#0\202 \306\340\"\211\204\365\341\342A@\"\202    \211\343=\203\344\345\346A@\"\"\202    \315\262\262\206\347=\205\332\262\202\363\320\"\211\205\361>\211?\205/    >\321\322\323\324\325\326 !\350\"\330\351%\204E\203J\202\222\352    \353=\205\221\211:\204_\315\202l\211@9\203k\211AA\202l\211\262@ =\205\221\211:\204\205\211;\205\215\310\202\215\211@9\205\215\211@\262\354>\"\211:\204\233\315\202\250\211@9\203\247\211AA\202\250\211\262\332#\3551\305\204\273\202\276\356!    #0\202\357\306\340\"\211\204\327\341\342A@\"\202\353\211\343=\203\352\344\345\346A@\"\n\"\202\353\315\262\262\266\203\262\357\204\375\332\202\367\360>\203\202\367\316\306\361\345\362\n\"!\"\363    \211;\203#\312\313#\202)\306A@\"\266\202\206/\313    \211:\204B\211;\205J\310\202J\211@9\205J\211@\262\206g\311\211;\203_\312\313#\202e\306A@\"\266\202\n>\203q\364\202\327 >\203{\365\202\327\366=\203\205\365\202\327\310=\203\217\364\202\327\204\227\364\202\327\211\204\237\365\202\327\211\211:\204\256\211;\205\266\310\202\266\211@9\205\266\211@\262\211\204\300\364\202\325\211\f>\203\312\364\202\325\367!\203\324\364\202\325\365\262\266\202\266\202\364=\203\351\370\371\"P\202\362\356!\370\372\"P\262#\306\307\"#\266\203\207" [org-element-greater-elements org-element-recursive-objects org-element-all-objects org-element-all-elements org-element-object-containers gethash plist-get :exported-data plain-text :parent get-text-property 0 :ignore-list nil org-export-filter-apply-functions :filter-plain-text org-export-transcoder mapconcat make-byte-code 257 "\301\300\"\207" vconcat vector [org-export-data] 4 "\n\n(fn OBJ)" "" headline :with-archived-trees :archivedp functionp (org-link-broken) :with-broken-links user-error "Unable to resolve link: %S" mark org-export-data format "[BROKEN LINK: %s]" export-snippet [org-export-data] "\n\n(fn ELEMENT)" org-element-normalize-contents paragraph (footnote-definition item) (org-link-broken) org-element-normalize-string puthash (org-data plain-text nil) intern ":filter-%s" :post-blank object element org-data org-element-secondary-p make-string 32 10] 19 (#$ . 72408)])
#@309 Convert DATA into BACKEND format.
 
DATA is an element, an object, a secondary string or a string.
BACKEND is a symbol.  INFO is a plist used as a communication
channel.
 
Unlike to `org-export-with-backend', this function will
recursively convert DATA using BACKEND translation table.
 
(fn DATA BACKEND INFO)
(defalias 'org-export-data-with-backend #[771 "9\203\n\300!\262\301\302\303\304!\305\306\307\310\311\312$\257\"\313\"\314\315\316\315\"#\210\207" [org-export-get-backend org-combine-plists :back-end :translate-alist org-export-get-all-transcoders :exported-data make-hash-table :test eq :size 401 org-export-data plist-put :internal-references plist-get] 15 (#$ . 75399)])
#@283 Expand a parsed element or object to its original state.
 
BLOB is either an element or an object.  CONTENTS is its
contents, as a string or nil.
 
When optional argument WITH-AFFILIATED is non-nil, add affiliated
keywords before output.
 
(fn BLOB CONTENTS &optional WITH-AFFILIATED)
(defalias 'org-export-expand #[770 "\211:\204\211;\205\303\202\211@9\205\211@\262\205\317\304\211:\204.\211;\2056\303\2026\211@9\2056\211@\262\206S\305\211;\203K\306\307#\202Q\310A@\"\266\202>\203]\311\202\303    >\203g\312\202\303\313=\203q\312\202\303\303=\203{\311\202\303\204\203\311\202\303\211\204\213\312\202\303\211\211:\204\232\211;\205\242\303\202\242\211@9\205\242\211@\262\211\204\254\311\202\301\211\n>\203\266\311\202\301\314!\203\300\311\202\301\312\262\266\202\266\202\312=\205\317\315!\316\317\320\"!\"P\207" [org-element-all-objects org-element-all-elements org-element-object-containers plain-text nil :parent get-text-property 0 plist-get object element org-data org-element-secondary-p org-element--interpret-affiliated-keywords intern format "org-element-%s-interpreter"] 13 (#$ . 76100)])
#@380 Hook run at the beginning of the export process.
 
This is run before include keywords and macros are expanded and
Babel code blocks executed, on a copy of the original buffer
being exported.  Visibility and narrowing are preserved.  Point
is at the beginning of the buffer.
 
Every function in this hook will be called with one argument: the
back-end currently used, as a symbol.
(defvar org-export-before-processing-hook nil (#$ . 77262))
#@378 Hook run before parsing an export buffer.
 
This is run after include keywords and macros have been expanded
and Babel code blocks executed, on a copy of the original buffer
being exported.  Visibility and narrowing are preserved.  Point
is at the beginning of the buffer.
 
Every function in this hook will be called with one argument: the
back-end currently used, as a symbol.
(defvar org-export-before-parsing-hook nil (#$ . 77708))
#@214 List of functions applied to the export options.
Each filter is called with two arguments: the export options, as
a plist, and the back-end, as a symbol.  It must return
a property list containing export options.
(defvar org-export-filter-options-functions nil (#$ . 78149))
#@274 List of functions applied to the parsed tree.
Each filter is called with three arguments: the parse tree, as
returned by `org-element-parse-buffer', the back-end, as
a symbol, and the communication channel, as a plist.  It must
return the modified parse tree to transcode.
(defvar org-export-filter-parse-tree-functions nil (#$ . 78431))
#@228 List of functions applied to plain text.
Each filter is called with three arguments: a string which
contains no Org syntax, the back-end, as a symbol, and the
communication channel, as a plist.  It must return a string or
nil.
(defvar org-export-filter-plain-text-functions nil (#$ . 78776))
#@233 List of functions applied to transcoded body.
Each filter is called with three arguments: a string which
contains no Org syntax, the back-end, as a symbol, and the
communication channel, as a plist.  It must return a string or
nil.
(defvar org-export-filter-body-functions nil (#$ . 79075))
#@266 List of functions applied to the transcoded string.
Each filter is called with three arguments: the full transcoded
string, the back-end, as a symbol, and the communication channel,
as a plist.  It must return a string that will be used as the
final export output.
(defvar org-export-filter-final-output-functions nil (#$ . 79373))
#@236 List of functions applied to a transcoded babel-call.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-babel-call-functions nil (#$ . 79712))
#@238 List of functions applied to a transcoded center block.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-center-block-functions nil (#$ . 80019))
#@231 List of functions applied to a transcoded clock.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-clock-functions nil (#$ . 80330))
#@236 List of functions applied to a transcoded diary-sexp.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-diary-sexp-functions nil (#$ . 80627))
#@232 List of functions applied to a transcoded drawer.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-drawer-functions nil (#$ . 80934))
#@239 List of functions applied to a transcoded dynamic-block.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-dynamic-block-functions nil (#$ . 81233))
#@239 List of functions applied to a transcoded example-block.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-example-block-functions nil (#$ . 81546))
#@238 List of functions applied to a transcoded export-block.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-export-block-functions nil (#$ . 81859))
#@237 List of functions applied to a transcoded fixed-width.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-fixed-width-functions nil (#$ . 82170))
#@245 List of functions applied to a transcoded footnote-definition.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-footnote-definition-functions nil (#$ . 82479))
#@234 List of functions applied to a transcoded headline.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-headline-functions nil (#$ . 82804))
#@241 List of functions applied to a transcoded horizontal-rule.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-horizontal-rule-functions nil (#$ . 83107))
#@236 List of functions applied to a transcoded inlinetask.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-inlinetask-functions nil (#$ . 83424))
#@230 List of functions applied to a transcoded item.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-item-functions nil (#$ . 83731))
#@233 List of functions applied to a transcoded keyword.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-keyword-functions nil (#$ . 84026))
#@243 List of functions applied to a transcoded latex-environment.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-latex-environment-functions nil (#$ . 84327))
#@239 List of functions applied to a transcoded node-property.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-node-property-functions nil (#$ . 84648))
#@235 List of functions applied to a transcoded paragraph.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-paragraph-functions nil (#$ . 84961))
#@236 List of functions applied to a transcoded plain-list.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-plain-list-functions nil (#$ . 85266))
#@234 List of functions applied to a transcoded planning.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-planning-functions nil (#$ . 85573))
#@241 List of functions applied to a transcoded property-drawer.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-property-drawer-functions nil (#$ . 85876))
#@243 List of functions applied to a transcoded quote block.
Each filter is called with three arguments: the transcoded quote
data, as a string, the back-end, as a symbol, and the
communication channel, as a plist.  It must return a string or
nil.
(defvar org-export-filter-quote-block-functions nil (#$ . 86193))
#@233 List of functions applied to a transcoded section.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-section-functions nil (#$ . 86508))
#@239 List of functions applied to a transcoded special block.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-special-block-functions nil (#$ . 86809))
#@235 List of functions applied to a transcoded src-block.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-src-block-functions nil (#$ . 87122))
#@231 List of functions applied to a transcoded table.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-table-functions nil (#$ . 87427))
#@236 List of functions applied to a transcoded table-cell.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-table-cell-functions nil (#$ . 87724))
#@235 List of functions applied to a transcoded table-row.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-table-row-functions nil (#$ . 88031))
#@237 List of functions applied to a transcoded verse block.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-verse-block-functions nil (#$ . 88336))
#@233 List of functions applied to transcoded bold text.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-bold-functions nil (#$ . 88645))
#@233 List of functions applied to transcoded code text.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-code-functions nil (#$ . 88943))
#@232 List of functions applied to a transcoded entity.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-entity-functions nil (#$ . 89241))
#@240 List of functions applied to a transcoded export-snippet.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-export-snippet-functions nil (#$ . 89540))
#@244 List of functions applied to a transcoded footnote-reference.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-footnote-reference-functions nil (#$ . 89855))
#@243 List of functions applied to a transcoded inline-babel-call.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-inline-babel-call-functions nil (#$ . 90178))
#@242 List of functions applied to a transcoded inline-src-block.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-inline-src-block-functions nil (#$ . 90499))
#@235 List of functions applied to transcoded italic text.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-italic-functions nil (#$ . 90818))
#@240 List of functions applied to a transcoded latex-fragment.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-latex-fragment-functions nil (#$ . 91120))
#@236 List of functions applied to a transcoded line-break.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-line-break-functions nil (#$ . 91435))
#@230 List of functions applied to a transcoded link.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-link-functions nil (#$ . 91742))
#@238 List of functions applied to a transcoded radio-target.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-radio-target-functions nil (#$ . 92037))
#@243 List of functions applied to a transcoded statistics-cookie.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-statistics-cookie-functions nil (#$ . 92348))
#@243 List of functions applied to transcoded strike-through text.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-strike-through-functions nil (#$ . 92669))
#@235 List of functions applied to a transcoded subscript.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-subscript-functions nil (#$ . 92987))
#@237 List of functions applied to a transcoded superscript.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-superscript-functions nil (#$ . 93292))
#@232 List of functions applied to a transcoded target.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-target-functions nil (#$ . 93601))
#@235 List of functions applied to a transcoded timestamp.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-timestamp-functions nil (#$ . 93900))
#@238 List of functions applied to transcoded underline text.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-underline-functions nil (#$ . 94205))
#@237 List of functions applied to transcoded verbatim text.
Each filter is called with three arguments: the transcoded data,
as a string, the back-end, as a symbol, and the communication
channel, as a plist.  It must return a string or nil.
(defvar org-export-filter-verbatim-functions nil (#$ . 94513))
#@553 Call every function in FILTERS.
 
Functions are called with three arguments: a value, the export
back-end name and the communication channel.  First function in
FILTERS is called with VALUE as its first argument.  Second
function in FILTERS is called with the previous result as its
value, etc.
 
Functions returning nil are skipped.  Any function returning the
empty string ends the process, which returns the empty string.
 
Call is done in a LIFO fashion, to be sure that developer
specified filters, if any, are called first.
 
(fn FILTERS VALUE INFO)
(defalias 'org-export-filter-apply-functions #[771 "\3012O\302\303\"\211\205\304!>\204\305\306\307D\"\210\211\310H\211\203I\211@\211#\211\203A\211\311\267\202>\312\301\313\"\210\202A\211\262\210A\266\202\202\262\266\2020\207" [cl-struct-org-export-backend-tags :exit plist-get :back-end type-of signal wrong-type-argument org-export-backend 1 #s(hash-table size 1 test equal rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (#1="" 54)) throw #1#] 11 (#$ . 94819)])
#@169 Install filters properties in communication channel.
INFO is a plist containing the current communication channel.
Return the updated communication channel.
 
(fn INFO)
(defalias 'org-export-install-filters #[257 "\301\211\203/\211@\211@\302\"AJ\303\304<\203\202!C\"#\262\266A\266\202\202\210\305\302\306\"!\211\203l\211@\211@A\211\203c\303:\204W\302    \"B\202`\304\302\n\"\"#\262\266A\266\202\2026\210\307\"\207" [org-export-filters-alist nil plist-get plist-put append org-export-get-all-filters :back-end org-combine-plists] 14 (#$ . 95875)])
#@111 Return a copy of the current buffer.
The copy preserves Org buffer-local variables, visibility and
narrowing.
(defalias 'org-export-copy-buffer #[0 "\300p!\301\302 !r\211q\210 \210\303\304!\210)\207" [org-export--generate-copy-script generate-new-buffer buffer-name set-buffer-modified-p nil] 4 (#$ . 96468)])
#@209 Apply BODY in a copy of the current buffer.
The copy preserves local variables, visibility and contents of
the original buffer.  Point is at the beginning of the buffer
when BODY is applied.
 
(fn &rest BODY)
(defalias 'org-export-with-buffer-copy '(macro . #[128 "\300\301!\302\303BC\304\305\306\307BF\310\311D\307\305\312BB\313    DEEEE\207" [make-symbol "--buf-copy" let ((org-export-copy-buffer)) unwind-protect with-current-buffer (goto-char (point-min)) progn and buffer-live-p ((restore-buffer-modified-p nil)) kill-buffer] 12 (#$ . 96786)]))
(put 'org-export-with-buffer-copy 'edebug-form-spec t)
#@422 Generate a function duplicating BUFFER.
 
The copy will preserve local variables, visibility, contents and
narrowing of the original buffer.  If a region was active in
BUFFER, contents will be narrowed to that region instead.
 
The resulting function can be evaluated at a later time, from
another buffer, effectively cloning the original buffer there.
 
The function assumes BUFFER's major mode is `org-mode'.
 
(fn BUFFER)
(defalias 'org-export--generate-copy-script #[257 "r\211q\210\301\302\303\304\305\306\307 \302\310\311 !\211\203j\211@\211:\203c\211@A>\204a\312>\204<\236\204<\313\314\315!\"\203a\211\203S\3161N\317\320\321\"!0\202P\210\302\203a\322\323\324DD\324DEB\262\266A\266\202\202\262\266\202\325\212\214~\210\326ed\"*D\327 \203\210\330\331 \332 E\202\214\330edE\333`DE\302\334ed\"\211\203\275\211@\335\336\"\211\203\265\337\340\341!\342!E\343\324DFB\262\210A\266\202\202\225\262\262#BBBE)\207" [org-export-ignored-local-variables lambda nil let ((inhibit-modification-hooks t)) (let ((org-mode-hook nil) (org-inhibit-startup t)) (org-mode)) append org-export--list-bound-variables buffer-local-variables buffer-base-buffer (default-directory buffer-file-name buffer-file-coding-system) string-match "^\\(org-\\|orgtbl-\\)" symbol-name (error) read format "%S" set make-local-variable quote insert buffer-substring-no-properties org-region-active-p narrow-to-region region-beginning region-end goto-char overlays-in overlay-get invisible overlay-put make-overlay overlay-start overlay-end 'invisible] 18 (#$ . 97403)])
#@96 Delete commented trees and commented inlinetasks in the buffer.
Narrowing, if any, is ignored.
(defalias 'org-export--delete-comment-trees #[0 "\212\214~\210eb\210\303    \304\nQ\305\306\303#\205e\307 \310\211;\203&\311\312#\202,\313A@\"\266\202\203a\314\211;\203@\311\312#\202F\313A@\"\266\202\315\211;\203W\311\312#\202]\313A@\"\266\202|\210\210\202 )\262*\207" [case-fold-search org-outline-regexp-bol org-comment-string t ".*" re-search-forward nil org-element-at-point :commentedp get-text-property 0 plist-get :begin :end] 9 (#$ . 98983)])
#@254 Prune non exportable elements from DATA.
DATA is the parse tree to traverse.  INFO is the plist holding
export info.  Also set `:ignore-list' in INFO to a list of
objects which should be ignored during export, but not removed
from tree.
 
(fn DATA INFO)
(defalias 'org-export--prune-tree #[514 "\301C\301C\301C\301C\301\301\240\210\302\"\240\210\303\304\305    \306\"\"\240\210\307\310\311\312\313     %\314\"\315\316%\240\210\317\320\321#\262\242\203\204\211:\204Q\301\202^\211@9\203]\211AA\202^\211\262@\211\211:\204p\211;\205x\322\202x\211@9\205x\211@\262\323=\203\203\324!\210\210\242!\210\325\326\305\327\"!\"\211\203\263\211@\3308\331=\203\254\242\305    @\"!\210A\266\202\202\224\210\332\"\242!\210\333    \"\266\334\335\242#\207" [org-export-options-alist nil org-export--selected-trees cl-mapcan #[257 "\300\301\"\207" [org-tags-expand t] 4 "\n\n(fn TAG)"] plist-get :exclude-tags make-byte-code 257 "\211\205\330\211\211:\204\211;\205\306\202\211@9\205\211@\262\307\300\302\242\303\242$\203=\211\310>\2037\301\301\242B\240\202\326\311!\202\326\211\312=\203\210\313\300\314\"\312=\203\210\315\211;\203[\316\317#\202a\313A@\"\266\202\203\210\320\203\203@9\203\203A\203A\241\210\202\203\244\210\266\202\246\321\304\242\211:\204\225\320\202\242\211@9\203\241\211AA\202\242\211\262\"\210\211 \236A\211\205\324\211@\321\304\242\211;\203\303\316\317#\202\311\313A@\"\266\202\"\210A\266\202\202\252\262\262\207" vconcat vector [org-element-secondary-value-alist plain-text org-export--skip-p (table-cell table-row) org-element-extract-element headline plist-get :with-archived-trees :archivedp get-text-property 0 nil mapc] 12 "\n\n(fn DATA)" org-element-map (footnote-definition footnote-reference) #[257 "\211\211:\204\211;\205\300\202\211@9\205\211@\262\301=\203\207\302\211;\203.\303\304#\2024\305A@\"\266\202\306=\203V\307\211;\203J\303\304#\202P\305A@\"\266\202\203V\207\310\207" [plain-text footnote-definition :type get-text-property 0 plist-get inline :label nil] 7 "\n\n(fn F)"] plain-text section org-element-extract-element append org-export-get-all-options :back-end 4 parse org-export--missing-definitions org-export--install-footnote-definitions plist-put :ignore-list] 18 (#$ . 99560)])
#@188 List footnote definitions missing from TREE.
Missing definitions are searched within DEFINITIONS, which is
a list of footnote definitions or in the widened buffer.
 
(fn TREE DEFINITIONS)
(defalias 'org-export--missing-definitions #[514 "\300\301\211\211\302\303\304#\301!\211\2037\211@\211\235\2040\211\235\203*\211B\262\2020\211B\262A\266\202\202\266\203\211A\262\242\305\306\307\310\311\312!\313\"\314\315%\"\206\340\316!\211:\205\327\211A\211:\205\325\211@\211\212\214~\210\211b\210\317 \211\211:\204\201\211;\205\211\320\202\211\211@9\205\211\211@\262\321=\203\224\211\202\316\214\322\211;\203\244\323\324#\202\252\325A@\"\266\202\326\211;\203\273\323\324#\202\301\325A@\"\266\202}\210\302\327 \330\331\301\332%)\262*\262\262\262\262\206\340\333\334\"B\262\211B\262!\211\203\211@\211\235\204\211\235\204\211B\262A\266\202\202\355\266\2029\335\336\"\207" [#[257 "\300\301\302#\207" [org-element-map footnote-reference #[257 "\300\211;\203\301\302#\202\303A@\"\266\202\304=\2053\305\211;\203+\301\302#\2021\303A@\"\266\202\207" [:type get-text-property 0 plist-get standard :label] 7 "\n\n(fn REFERENCE)"]] 5 "\n\n(fn DATA)"] nil org-element-map (footnote-reference footnote-definition) #[257 "\211\211:\204\211;\205\300\202\211@9\205\211@\262\301=\204:\302\211;\203-\303\304#\2023\305A@\"\266\202\306=\205Q\307\211;\203I\303\304#\202O\305A@\"\266\202\207" [plain-text footnote-definition :type get-text-property 0 plist-get inline :label] 7 "\n\n(fn F)"] cl-some make-byte-code 257 "\301\211;\203\302\303#\202\304A@\"\266\202\300\232\205\211\207" vconcat vector [:label get-text-property 0 plist-get] 7 "\n\n(fn D)" org-footnote-get-definition org-element-context plain-text footnote-reference :begin get-text-property 0 plist-get :end org-element-parse-buffer footnote-definition identity t user-error "Definition not found for footnote %s" mapcar #[257 "\211\211:\204\211;\205\300\202\211@9\205\211@\262\301=\203\207\302\211;\203.\303\304#\2024\305A@\"\266\202\306\307\301\302\310BB\211:\204H\311\202U\211@9\203T\211AA\202U\211\262$\207" [plain-text footnote-definition :label get-text-property 0 plist-get apply org-element-create (:post-blank 1) nil] 8 "\n\n(fn D)"]] 19 (#$ . 101911)])
#@433 Install footnote definitions in tree.
 
DEFINITIONS is the list of footnote definitions to install.  TREE
is the parse tree.
 
If there is a footnote section in TREE, definitions found are
appended to it.  If `org-footnote-section' is non-nil, a new
footnote section containing all definitions is inserted in TREE.
Otherwise, definitions are appended at the end of the section
containing their first reference.
 
(fn DEFINITIONS TREE)
(defalias 'org-export--install-footnote-definitions #[514 "?\206\274\301\302\303\304\305%\211\205\306\307\237#\262\206\274\203\232\211\310\302\311\305\312\313\314\315\257\306\310\316\304    \237$#C\211\204>\202\231\211\211\203o\211@\211\317\206L;\203[\320\304$\210\202fA\321A@#\240\210\266A\266\202\202?\210\203\224\306\322\211\211:\204\201\304\202\216\211@9\203\215\211AA\202\216\211\262\244#\210\206\231\211\207\304C\304C\304\240\210\211\323\324\325\326\327    #\330\"\331\332%\240\210\211\242!\266\202\207" [org-footnote-section org-element-map headline #[257 "\300\211;\203\301\302#\202\303A@\"\266\202\205\211\207" [:footnote-section-p get-text-property 0 plist-get] 7 "\n\n(fn H)"] nil t apply org-element-adopt-elements org-element-create :footnote-section-p :level 1 :title :raw-value section :parent org-add-props plist-put org-element-set-contents make-byte-code 257 "\303\304\305\306\307\310\311\300\301\302#\312\"\313\314%#\207" vconcat vector [org-element-map footnote-reference make-byte-code 257 "\303\211;\203\304\305#\202\306A@\"\266\202\307=\205\274\310\211;\203+\304\305#\2021\306A@\"\266\202\211\301\242\235?\205\272\301\301\242B\240\210\311\312\313\314\315\316!\317\"\320\321%\300\"\322\323\"C\211\203\262\211\211\203\215\211@\211\324\206j;\203y\325\326$\210\202\204A\327A@#\240\210\266A\266\202\202]\210\203\262\330\331\211\211:\204\237\326\202\254\211@9\203\253\211AA\202\254\211\262\244#\210\266\302\242!\262\262\207" vconcat vector [:type get-text-property 0 plist-get standard :label cl-some make-byte-code 257 "\301\211;\203\302\303#\202\304A@\"\266\202\300\232\205\211\207" vconcat vector [:label get-text-property 0 plist-get] 7 "\n\n(fn D)" org-element-lineage (section) :parent org-add-props nil plist-put apply org-element-set-contents] 15 "\n\n(fn REFERENCE)"] 12 "\n\n(fn DATA)"] 14 (#$ . 104278)])
#@218 Change uninterpreted elements back into Org syntax.
DATA is a parse tree or a secondary string.  INFO is a plist
containing export options.  It is modified by side effect and
returned by the function.
 
(fn DATA INFO)
(defalias 'org-export--remove-uninterpreted-data #[514 "\300\301\302\303\304\305\306!\307\"\310\311%\312\211\313&\210\207" [org-element-map (entity bold italic latex-environment latex-fragment strike-through subscript superscript underline) make-byte-code 257 "\211\211:\204\211;\205\301\202\211@9\205\211@\262\302\303\"\203O\304\300\305\"?\205\241\306\307\"\310\311\211;\203<\312\313#\202B\304A@\"\266\202\206H\313\314\"PC\202\241\315\316\"\203\324\304\300\317\"?\205\241\211:\204m\211;\205u\301\202u\211@9\205u\211@\262\211\320\267\202\215\321\202\216\322\202\216\323\202\216\324\202\216\307\262\325C\211:\204\235\307\202\252\211@9\203\251\211AA\202\252\211\262\310\311\211;\203\276\312\313#\202\304\304A@\"\266\202\206\312\313\314\"PC#\262\202\241\315\326\"\203\354\304\300\327\"\330=\205\241\306\307\"C\202\241\315\331\"\205\241\304\300\332\"\333\211;\203\312\313#\202\f\304A@\"\266\202\203\334=\205\237\211?\205\237\325\211:\204-\211;\2055\301\2025\211@9\2055\211@\262\335=\203@\324\202A\336\205F\337PC\211:\204R\307\202_\211@9\203^\211AA\202_\211\262\205f\340\311\211;\203v\312\313#\202|\304A@\"\266\202\205\234\310\311    \211;\203\222\312\313#\202\230\304A@\"\266\202\314\"PC#\266\202\262\211\205\305\211\211\203\300\211@\211\341\232\204\271\342\"\210A\266\202\202\250\343!\262\207" vconcat vector [plain-text eql entity plist-get :with-entities org-export-expand nil make-string :post-blank get-text-property 0 32 memql (bold italic strike-through underline) :with-emphasize #s(hash-table size 4 test eql rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (bold 125 italic 129 strike-through 133 underline 137)) "*" "/" "+" "_" append (latex-environment latex-fragment) :with-latex verbatim (subscript superscript) :with-sub-superscript :use-brackets-p {} subscript "^" "{" "}" "" org-element-insert-before org-element-extract-element] 15 "\n\n(fn DATUM)" nil t] 11 (#$ . 106674)])
#@899 Transcode current Org buffer into BACKEND code.
 
BACKEND is either an export back-end, as returned by, e.g.,
`org-export-create-backend', or a symbol referring to
a registered back-end.
 
If narrowing is active in the current buffer, only transcode its
narrowed part.
 
If a region is active, transcode that region.
 
When optional argument SUBTREEP is non-nil, transcode the
sub-tree at point, extracting information from the headline
properties first.
 
When optional argument VISIBLE-ONLY is non-nil, don't export
contents of hidden elements.
 
When optional argument BODY-ONLY is non-nil, only return body
code, without surrounding template.
 
Optional argument EXT-PLIST, when provided, is a property list
with external parameters overriding Org default settings, but
still inferior to file-local settings.
 
Return code as a string.
 
(fn BACKEND &optional SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST)
(defalias 'org-export-as #[1281 "9\203\n\306!\262\307!\210\212\214\310 \203\311 \312 }\210\202/\203/\313 \210eb\210\314 \210`d}\210\315!>\204?\316\317\320D\"\210\321H\322\323$\324 \"\325\326\327\330\331\332 !\n\"\"\"\326\333 \334\335\336\337\340!\341\"\342$\216r\211q\210eb\210\343\344\315 !>\204\207\316\317\320 D\"\210\n\321H\"\210\345 \210\346 \210\347 \210\350\331 \f\"\326#\210\351 \210\352 \210 \203\262\353 \210\351 \210\352 \210eb\210\212\343\354\315 !>\204\311\316\317\320 D\"\210\n\321H\"\210)\351 \210\352 \210\322\355      #\"\262\331\332\n!\n\"\211\203B\211@\211:\203;\211@A\211:\2039\211A\211:\2038\211A\211:\2037\211A\211:\2036\211@\211\356=\2035A\211\2044\357\"\360\361\"#\266\210\210\210\210\210\266A\266\202\202\352\210\362!\262\315    !>\204Y\316\317\320 D\"\210\321H\357\363\"\211\203{\211@\211\"\211\203s\211\262\210A\266\202\202a\266\350\364\365\357\366\"!B\367\357\370\"\365!\206\224\371:\203\314A\204\314@\211:\204\256\211;\205\266\372\202\266\211@9\205\266\211@\262\373=\203\314\374\375\374\376\377@!\"#\202\315\211\266\202B\201A\365\357    \201B\"!B\201C\365\357\n\201D\"!B\201E\201FB\257\201G#\210\201H\326\"\262\201I\"\210\361\"\210\201J\357\201K\"#\262\201L\"\262\201M\201N\"\2063\371!\201O\357\201P\"\236A\201J\357\201Q\"\201R!\204V\202[    \"#\201S\357\201P\"\236A\201J\357    \201T\"\201R!\203\201 \203\205\202\212 \"\n#\326\211\203\240\201U\335G@$\210\202\252\201V\335G\326$\210\266\202\266\204*\262)\266\203*\207" [cl-struct-org-export-backend-tags org-export-current-backend org-export-options-alist org-macro-templates org-export-global-macros org-export-use-babel org-export-get-backend org-export-barf-if-invalid-backend org-region-active-p region-beginning region-end org-narrow-to-subtree org-end-of-meta-data type-of signal wrong-type-argument org-export-backend 1 org-combine-plists org-export--get-export-attributes org-export--get-buffer-attributes delq nil mapcar #[257 "\3008\301=\205 \211A@\207" [4 parse] 3 "\n\n(fn O)"] append org-export-get-all-options org-export-copy-buffer make-byte-code 0 "\301\300!\205r\300q\210\302\303!\210)\304\300!\207" vconcat vector [buffer-live-p restore-buffer-modified-p nil kill-buffer] 2 run-hook-with-args org-export-before-processing-hook org-export-expand-include-keyword org-export--delete-comment-trees org-macro-initialize-templates org-macro-replace-all org-set-regexps-and-options org-update-radio-target-regexp org-babel-exp-process-buffer org-export-before-parsing-hook org-export-get-environment parse plist-get plist-put org-export--remove-uninterpreted-data org-export-install-filters :filter-options "author" org-element-interpret-data :author "date" :date "" plain-text timestamp format "(eval (if (org-string-nw-p \"$1\") %s %S))" "(org-timestamp-format '%S \"$1\")" org-element-copy org-rm-props "email" :email "title" :title "results" "$1" finalize org-element-parse-buffer org-export--prune-tree org-export-filter-apply-functions :filter-parse-tree org-export--collect-tree-properties org-element-normalize-string org-export-data inner-template :translate-alist :filter-body functionp template :filter-final-output remove-text-properties set-text-properties] 26 (#$ . 108918)])
#@518 Transcode STRING into BACKEND code.
 
BACKEND is either an export back-end, as returned by, e.g.,
`org-export-create-backend', or a symbol referring to
a registered back-end.
 
When optional argument BODY-ONLY is non-nil, only return body
code, without preamble nor postamble.
 
Optional argument EXT-PLIST, when provided, is a property list
with external parameters overriding Org default settings, but
still inferior to file-local settings.
 
Return code as a string.
 
(fn STRING BACKEND &optional BODY-ONLY EXT-PLIST)
(defalias 'org-export-string-as #[1026 "\301\302!r\211q\210\303\304\305\306\307!\310\"\311$\216c\210\312\313 \210)\314\315\211%*\207" [org-inhibit-startup generate-new-buffer " *temp*" make-byte-code 0 "\301\300!\205    \302\300!\207" vconcat vector [buffer-name kill-buffer] 2 t org-mode org-export-as nil] 11 (#$ . 113185)])
#@204 Replace the active region by its export to BACKEND.
BACKEND is either an export back-end, as returned by, e.g.,
`org-export-create-backend', or a symbol referring to
a registered back-end.
 
(fn BACKEND)
(defalias 'org-export-replace-region-by #[257 "\300 \204    \301\302!\210\303\304\305 \306 \"\307#c\207" [org-region-active-p user-error "No active region to replace" org-export-string-as delete-and-extract-region region-beginning region-end t] 5 (#$ . 114042)])
#@450 Insert all export keywords with default values at beginning of line.
 
BACKEND is a symbol referring to the name of a registered export
back-end, for which specific export options should be added to
the template, or `default' for default template.  When it is nil,
the user will be prompted for a category.
 
If SUBTREEP is non-nil, export configuration will be set up
locally for the subtree through node properties.
 
(fn &optional BACKEND SUBTREEP)
(defalias 'org-export-insert-default-template #[512 "\304\305!\204\n\306\307!\210\211\203\310 \203\306\311!\210\211\205\"\212\312\313!\210`)\2063\314\315\316\317\320\321\"B\322\313$!\322\211\323=\203?    \202s\324!\n>\203\\\324!\n>\204V\325\326\327D\"\210\330H\202s\331!\324!\n>\204n\325\326\327D\"\210\211\330H\262\211\203\322\211@\211A@\3328\203\261\333\"\204\311\3308\334=\203\240\335\336\337\3408!\341#\202\245\337\3408!BB\262\210\202\311\211\203\311\333\"\204\311\211\337\3408!BB\262\266A\266\202\202s\210\204\332\342 \210\203+\320\343\344\345\"\"\203\366\346\347\335\336\341##\210\202*\211\203*\350c\210\351\203#\352@G\353# W\203#\211A\262\242\341\261\210GT\\\266\202\202\376\210\354c\210\202\366\210\211\237\211\205\265\211@\211@\355\232\203\\\211A\206~\356\357!r\211q\210\360\361\362\363\364!\365\"\332$\216\366\367 !*\262\202~\211@\370\232\203|\371\372 !\211\205p\373\374!!\262\206~\375\372 !\202~\211A\203\220\346\376@P#\210\202\255\377\201@@\201A!\203\247\377\201B\"\202\252\201C#c\210\210A\266\202\202-\262\207" [org-export-registered-backends org-export-options-alist cl-struct-org-export-backend-tags fill-column derived-mode-p org-mode user-error "Not in an Org mode buffer" org-before-first-heading-p "No subtree to set export options for" org-back-to-heading t intern org-completing-read "Options category: " "default" mapcar #[257 "\301\302!>\204\303\304\305D\"\210\306H!\207" [cl-struct-org-export-backend-tags symbol-name type-of signal wrong-type-argument org-export-backend 1] 6 "\n\n(fn B)"] nil default type-of signal wrong-type-argument org-export-backend 4 org-export-get-backend 2 assoc split mapconcat identity eval 3 " " beginning-of-line #[257 "\300\301@A#\207" [format "%s:%S"] 5 "\n\n(fn OPT)"] sort #[514 "@@\231\207" [] 4 "\n\n(fn K1 K2)"] org-entry-put "EXPORT_OPTIONS" "#+OPTIONS:" 10 + 1 "\n" "DATE" generate-new-buffer " *temp*" make-byte-code 0 "\301\300!\205    \302\300!\207" vconcat vector [buffer-name kill-buffer] org-insert-time-stamp current-time "TITLE" buffer-file-name buffer-base-buffer file-name-sans-extension file-name-nondirectory buffer-name "EXPORT_" format "#+%s:%s\n" org-string-nw-p " %s" ""] 15 (#$ . 114514) nil])
#@456 Expand every include keyword in buffer.
Optional argument INCLUDED is a list of included file names along
with their line restriction, when appropriate.  It is used to
avoid infinite recursion.  Optional argument DIR is the current
working directory.  It is used to properly resolve relative
paths.  Optional argument FOOTNOTES is a hash-table used for
storing and resolving footnotes.  It is created automatically.
 
(fn &optional INCLUDED DIR FOOTNOTES)
(defalias 'org-export-expand-include-keyword #[768 "\302\303\304\305\"\306\206\303\304\305\"\307eb\210\310\311\302#\2030\312\313 \314 \315\316\317 \206)\306!T$\210\202eb\210\310\311\302#\205\204\320 \2043\321 \322\306\323\324\325!\326\"\327$\216\330 )\262\211\211:\204b\211;\205j\331\202j\211@9\205j\211@\262\332=\203\200\333 \210\334\211;\203\203\335\306#\202\211\336A@\"\266\202\337 \311\340\341\"\205\324\321 \322\306\323\324\325!\342\"\327$\216\343\344\"\340\345\"\203\275\343\346\"\262\347\350\311\211\344%\262\351\352\353\211#\"\262)\262\347\350\311\211$\262\340\354\"\205\353\355\343\344\"!\347\350\311\211$\262\340\356\"\205\343\344\"\347\350\311\211    $\262\340\357\"\203 \360\202\"\340\361\"\203\360\202\"\340\362\"\205\"\360\211?\205F\340\363\"\203B\364\343\344    \"!\347\350\311\211 $\262\202F\335`\315\"\360=\205Q\343\344    \"\340\365\n\"\205^\343\344\n\"`\313\346!|\210\203~\366!\204y\367\370\"\210\202~D\235\203\214\367\371\"\210\202~\360=\203\302\372    \373\";\203\243\374\375\"\202\244\350\376\377\n    \"!\374\201@\n&\266\203c\210\202g\211;\203\346\372    \373\"\377\"\374\201A&\266\202c\210\202g\201B\201C!r\211q\210\322\306\201D\324\325!\201E\"\346$\216\302    \203\201F     \n\n$\202\201G \210\377\n    \201H\"\206@\201IT\211\262#&c\210)\266\201JDB\201K\n!#\210\201L *\262c\210\204~\212\214~\210db\210\201M\201N\"\210*\266\n\210\2023)\207" [case-fold-search org-inhibit-startup t make-hash-table :test equal 0 "^[     ]*#\\+INCLUDE:" re-search-forward nil put-text-property line-beginning-position line-end-position :org-include-induced-level org-reduced-level org-current-level org-in-commented-heading-p match-data make-byte-code "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 org-element-at-point plain-text keyword beginning-of-line :value get-text-property plist-get org-get-indentation string-match "^\\(\".+?\"\\|\\S-+\\)\\(?:\\s-+\\|$\\)" [set-match-data evaporate] match-string 1 "\\(::\\(.*?\\)\\)\"?\\'" 2 replace-match "" expand-file-name org-unbracket-string "\"" ":only-contents *\\([^:      \n]\\S-*\\)?" org-not-nil ":lines +\"\\(\\(?:[0-9]+\\)?-\\(?:[0-9]+\\)?\\)\"" "\\<example\\>" literal "\\<export\\(?: +\\(.*\\)\\)?" "\\<src\\(?: +\\(.*\\)\\)?" ":minlevel +\\([0-9]+\\)" string-to-number "\\<\\(\\S-+\\)\\>" file-readable-p error "Cannot include file %s" "Recursive file inclusion: %s" make-string 32 format " %s" org-escape-code-in-string org-export--prepare-file-contents "%s#+BEGIN_%s%s\n%s%s#+END_%s\n" "%s#+BEGIN_%s\n%s%s#+END_%s\n" generate-new-buffer " *temp*" "\301\300!\205    \302\300!\207" [buffer-name kill-buffer] org-export--inclusion-absolute-lines org-mode gethash puthash org-export-expand-include-keyword file-name-directory buffer-string maphash #[514 "\300\301#c\207" [format "\n[fn:%s] %s\n"] 6 "\n\n(fn K V)"]] 31 (#$ . 117262)])
#@507 Resolve absolute lines for an included file with file-link.
 
FILE is string file-name of the file to include.  LOCATION is a
string name within FILE to be included (located via
`org-link-search').  If ONLY-CONTENTS is non-nil only the
contents of the named element will be included, as determined
Org-Element.  If LINES is non-nil only those lines are included.
 
Return a string of lines to be included in the format expected by
`org-export--prepare-file-contents'.
 
(fn FILE LOCATION ONLY-CONTENTS LINES)
(defalias 'org-export--inclusion-absolute-lines #[1028 "\306\307!r\211q\210\310\311\312\313\314!\315\"\316$\216\317!\210\320=\204#\321\320 \210)\32211\323\324!)0\202=\325\326\327!$\262\210\330 \205[\331\211;\203S\332\311#\202Y\333A@\"\266\202\211\206v\334\211;\203n\332\311#\202t\333A@\"\266\202\203~\335\202\336\211;\203\215\332\311#\202\223\333A@\"\266\202}\210\203\340\211:\204\252\211;\205\262\337\202\262\211@9\205\262\211@\262\340>\203\340eb\210 \321\341!)\262\203\313\323y\210\341 !\203\325\311\225b\210n\204\334\323y\210`d}\210\266\203\"\342 \210\343 \210\344\345\"\346@!\346A@!\311U\203e\202 eb\210Sy\210`\311U\203d\202\211b\210Sy\210`}\266deb\210~\210\347 \350\351\212\311`W\203A\211T\262\323y\210\2020\211\262\\)#\262\262*\207" [major-mode org-inhibit-startup org-link-search-must-match-exact-headline org-planning-line-re inhibit-changing-match-data org-property-drawer-re generate-new-buffer " *temp*" make-byte-code 0 "\301\300!\205    \302\300!\207" vconcat vector [buffer-name kill-buffer] 2 insert-file-contents org-mode t (error) nil org-link-search error "%s for %s::%s" error-message-string org-element-at-point :contents-begin get-text-property plist-get :begin :contents-end :end plain-text (headline inlinetask) looking-at org-skip-whitespace beginning-of-line split-string "-" string-to-number line-number-at-pos format "%d-%d"] 14 (#$ . 120713)])
#@957 Prepare contents of FILE for inclusion and return it as a string.
 
When optional argument LINES is a string specifying a range of
lines, include only those lines.
 
Optional argument IND, when non-nil, is an integer specifying the
global indentation of returned contents.  Since its purpose is to
allow an included file to stay in the same environment it was
created (e.g., a list item), it doesn't apply past the first
headline encountered.
 
Optional argument MINLEVEL, when non-nil, is an integer
specifying the level that any top-level headline in the included
file should have.
 
Optional argument ID is an integer that will be inserted before
each footnote definition and reference if FILE is an Org file.
This is useful to avoid conflicts when more than one Org file
with footnotes is included in a document.
 
Optional argument FOOTNOTES is a hash-table to store footnotes in
the included document.
 
(fn FILE &optional LINES IND MINLEVEL ID FOOTNOTES)
(defalias 'org-export--prepare-file-contents #[1537 "\306\307!r\211q\210\310\311\312\313\314!\315\"\316$\216\317!\210\203S\320\321\"\322@!\322A@!\311U\2034e\202<eb\210Sy\210`\311U\203Fd\202Neb\210Sy\210`}\266eb\210\323 \210\324 \210e`|\210db\210\325\326x\210\326y\210`d|\210\203\304\311V\203\304\327=\204\204\330\327 \210)eb\210\331\332\"m\204\303\333\n!\204\303\333 !\203\272\334 \211:\204\253\211;\205\263\335\202\263\211@9\205\263\211@\262\336=\204\275\211c\210\326y\210\202\213\210\203\327=\204\324\330\327 \210)\330\337 \2118\340 P\341\342!\211\203\343\344\"ZC\211\242\311U\2049\203\211\242\316_\240\210\341\310\311\345\313\314!\346\"\347$!\210\210\210,\203\312\350 \351 \352\353\326eb\210\354:\326\330#\203\277\212\355u\210\356 )\211\211:\204@\211;\205H\335\202H\211@9\205H\211@\262\357>\203\273\360\211;\203^\361\311#\202d\362A@\"\266\202\211\203\272\363\"A\211\203|#\210\202\271 \"BB\262\212\214~\210\364!\211A@\203\257\211 W\204\244\211\nY\203\257\365\366\3478!#\210\266*#\266\210\210\210\202!\326\211\223\210\326\211\223\266\366\367 !*\207" [major-mode org-inhibit-startup org-outline-regexp-bol org-footnote-definition-re org-called-with-limited-levels org-outline-regexp generate-new-buffer " *temp*" make-byte-code 0 "\301\300!\205    \302\300!\207" vconcat vector [buffer-name kill-buffer] 2 insert-file-contents split-string "-" string-to-number org-skip-whitespace beginning-of-line "      \n" nil org-mode t make-string 32 looking-at org-element-at-point plain-text footnote-definition org-get-limited-outline-regexp "^" org-map-entries #[0 "\300\301 !\207" [org-reduced-level org-current-level] 2] apply min "\300\242\301W\203\302\303\300\242!!\207\304\300\242\305\"c\207" [0 delete-char abs make-string 42] 3 point-min-marker point-max-marker #[514 "\300\301#\207" [format "-%d-%s"] 6 "\n\n(fn ID LABEL)"] #[771 "\212\300\211;\203\301\302#\202\303A@\"\266\202\304\\b\210\305\306!!\210\307!)\207" [:begin get-text-property 0 plist-get 4 looking-at regexp-quote replace-match] 9 "\n\n(fn F OLD NEW)"] re-search-forward -1 org-element-context (footnote-definition footnote-reference) :label get-text-property plist-get assoc org-footnote-get-definition puthash org-element-normalize-string buffer-string outline-regexp org-odd-levels-only org-footnote-re] 24 (#$ . 122684)])
#@111 Return a non-nil value when output should be added to the kill ring.
See also `org-export-copy-to-kill-ring'.
(defalias 'org-export--copy-to-kill-ring-p #[0 "\303=\203     \206 \n?\207\304=\207" [org-export-copy-to-kill-ring executing-kbd-macro noninteractive if-interactive t] 2 (#$ . 126062)])
#@529 Turn ATTRIBUTE property from ELEMENT into a plist.
 
When optional argument PROPERTY is non-nil, return the value of
that property within attributes.
 
This function assumes attributes are defined as ":keyword
value" pairs.  It is appropriate for `:attr_html' like
properties.
 
All values will become strings except the empty string and
"nil", which will become nil.  Also, values containing only
double quotes will be read as-is, which means that "" value
will become the empty string.
 
(fn ATTRIBUTE ELEMENT &optional PROPERTY)
(defalias 'org-export-read-attribute #[770 "\300\211;\203\301\302#\202\303A@\"\266\202\211\205R\304\305\306#\307\310\311\"\203I\302\211\224O!B\266\202\312\313\314\"!B\262\302\225\307O\262\202\"!B\237A\266\202\262\203_\303\"\202`\211\207" [#[257 "\300 \301\302\303\304\305!\306\"\307$\216\310\235\203\311\202+\312\313\"\203*\314\315\"\206+\316\202+)\207" [match-data make-byte-code 0 "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 (nil #1="" "nil") nil string-match "^\"\\(\"+\\)?\"$" match-string 1 #1#] 8 "\n\n(fn STR)"] get-text-property 0 plist-get mapconcat identity " " nil string-match "\\(?:^\\|[     ]+\\)\\(:[-a-zA-Z0-9_]+\\)\\([     ]+\\|$\\)" intern match-string 1] 11 (#$ . 126366)])
#@227 Return caption from ELEMENT as a secondary string.
 
When optional argument SHORTP is non-nil, return short caption,
as a secondary string, instead.
 
Caption lines are separated by a white space.
 
(fn ELEMENT &optional SHORTP)
(defalias 'org-export-get-caption #[513 "\300\211;\203\301\302#\202\303A@\"\266\202\304\211\203@\211@\203'\305\202(\306!\211\2038\307C\310!\244\244\262\210A\266\202\202A\262\207" [:caption get-text-property 0 plist-get nil cdr car " " copy-sequence] 10 (#$ . 127653)])
#@436 Call a transcoder from BACKEND on DATA.
BACKEND is an export back-end, as returned by, e.g.,
`org-export-create-backend', or a symbol referring to
a registered back-end.  DATA is an Org element, object, secondary
string or string.  CONTENTS, when non-nil, is the transcoded
contents of DATA element, as a string.  INFO, when non-nil, is
the communication channel used for export, as a plist.
 
(fn BACKEND DATA &optional CONTENTS INFO)
(defalias 'org-export-with-backend #[1026 "9\203\n\300!\262\301!\210\211:\204\211;\205%\302\202%\211@9\205%\211@\262\211\303>\2031\304\305!\210\306!\236A\307!\204B\304\305!\210\310\311    \312\313\314\315\316\317\320$\257\"\302=\203b\"\202i#\321\322\323\322\"#\210\262\266\202\207" [org-export-get-backend org-export-barf-if-invalid-backend plain-text (nil org-data) error "No foreign transcoder available" org-export-get-all-transcoders functionp org-combine-plists :back-end :translate-alist :exported-data make-hash-table :test eq :size 401 plist-put :internal-references plist-get] 19 (#$ . 128179)])
#@145 Return EXPORT-SNIPPET targeted back-end as a symbol.
Translation, with `org-export-snippet-translation-alist', is
applied.
 
(fn EXPORT-SNIPPET)
(defalias 'org-export-snippet-backend #[257 "\301\211;\203\302\303#\202\304A@\"\266\202\305\306\"A\206!!\207" [org-export-snippet-translation-alist :back-end get-text-property 0 plist-get intern assoc] 7 (#$ . 129263)])
#@191 Return definition of FOOTNOTE-REFERENCE as parsed data.
INFO is the plist used as a communication channel.  If no such
definition can be found, raise an error.
 
(fn FOOTNOTE-REFERENCE INFO)
(defalias 'org-export-get-footnote-definition #[514 "\300\211;\203\301\302#\202\303A@\"\266\202\211\2047\211:\204%\304\2022\211@9\2031\211AA\2022\211\262\202w\303\305\"\206K\306\307\310\"\311\305#\210\211\262\312\"\206u\313\314\303\315\"\316\317\320\321\322\323 !\324\"\325\326%\327%#\206u\330\331\"\262\207" [:label get-text-property 0 plist-get nil :footnote-definition-cache make-hash-table :test equal plist-put gethash puthash org-element-map :parse-tree (footnote-definition footnote-reference) make-byte-code 257 "\301\211;\203\302\303#\202\304A@\"\266\202\300\232\204\305\207\306\211;\203-\302\303#\2023\304A@\"\266\202\307=\203<\305\207\211\211:\204F\305\202S\211@9\203R\211AA\202S\211\262\206Y\310\207" vconcat vector [:label get-text-property 0 plist-get nil :type standard ""] 7 "\n\n(fn F)" t error "Definition not found for footnote %s"] 15 (#$ . 129647)])
#@332 Apply FUNCTION on every footnote reference in DATA.
INFO is a plist containing export state.  By default, as soon as
a new footnote reference is encountered, FUNCTION is called onto
its definition.  However, if BODY-FIRST is non-nil, this step is
delayed until the end of the process.
 
(fn FUNCTION DATA INFO &optional BODY-FIRST)
(defalias 'org-export--footnote-reference-map #[1027 "\300C\300C\300C\300\240\210\300\240\210\211\301\302\303\304\305\f \n\n\n%\306\"\307\310%\240\210\211\242\"\210\211\242\242\237\300\"\207" [nil make-byte-code 514 "\305\306\307\310\311\312\313\300\301\302\303\304 &\314\"\315\316%\301\317\203!\320\202\"\321&\207" vconcat vector [org-element-map footnote-reference make-byte-code 257 "\300!\210\306\211;\203\307\310#\202\311A@\"\266\202\211\205#\211\303\242\235?\205f\211\2032\303\303\242B\240\210\305\203B\302\312\301\"\302\242B\240\202f\313\211;\203Q\307\310#\202W\311A@\"\266\202\314=\206f\304\242\312\301\"\315\"\207" vconcat vector [:label get-text-property 0 plist-get org-export-get-footnote-definition :type inline nil] 8 "\n\n(fn F)" nil (footnote-definition footnote-reference) footnote-definition] 16 "\n\n(fn DATA DELAYP)"] 18 (#$ . 130775)])
#@659 Return an alist between footnote numbers, labels and definitions.
 
INFO is the current export state, as a plist.
 
Definitions are collected throughout the whole parse tree, or
DATA when non-nil.
 
Sorting is done by order of references.  As soon as a new
reference is encountered, other references are searched within
its definition.  However, if BODY-FIRST is non-nil, this step is
delayed after the whole tree is checked.  This alters results
when references are found in footnote definitions.
 
Definitions either appear as Org data or as a secondary string
for inlined footnotes.  Unreferenced definitions are ignored.
 
(fn INFO &optional DATA BODY-FIRST)
(defalias 'org-export-collect-footnote-definitions #[769 "\300C\301C\301C\302\303\304\305\306\307             $\310\"\311\312%\206$\313\314\"$\210\211\242\237\207" [0 nil org-export--footnote-reference-map make-byte-code 257 "\304\211;\203\305\306#\202\307A@\"\266\202\211\203\"\211\302\242\235\2046\301\211\242T\240\210\303\301\242\310\300\"E\303\242B\240\210\211\205@\302\302\242B\240\207" vconcat vector [:label get-text-property 0 plist-get org-export-get-footnote-definition] 8 "\n\n(fn F)" plist-get :parse-tree] 16 (#$ . 132015)])
#@587 Non-nil when a footnote reference is the first one for its label.
 
FOOTNOTE-REFERENCE is the footnote reference being considered.
INFO is a plist containing current export state.
 
Search is done throughout the whole parse tree, or DATA when
non-nil.
 
By default, as soon as a new footnote reference is encountered,
other references are searched within its definition.  However, if
BODY-FIRST is non-nil, this step is delayed after the whole tree
is checked.  This alters results when references are found in
footnote definitions.
 
(fn FOOTNOTE-REFERENCE INFO &optional DATA BODY-FIRST)
(defalias 'org-export-footnote-first-reference-p #[1026 "\300\211;\203\301\302#\202\303A@\"\266\202\211?\206>\3042>\305\306\307\310\311\312\n\"\313\"\314\315%\2069\303\316\"$0\207" [:label get-text-property 0 plist-get exit org-export--footnote-reference-map make-byte-code 257 "\302\211;\203\303\304#\202\305A@\"\266\202\211\205+\301\205+\301\230\205+\306\307\300=\"\207" vconcat vector [:label get-text-property 0 plist-get throw exit] 7 "\n\n(fn F)" :parse-tree] 13 (#$ . 133237)])
#@523 Return number associated to a footnote.
 
FOOTNOTE is either a footnote reference or a footnote definition.
INFO is the plist containing export state.
 
Number is unique throughout the whole parse tree, or DATA, when
non-nil.
 
By default, as soon as a new footnote reference is encountered,
counting process moves into its definition.  However, if
BODY-FIRST is non-nil, this step is delayed until the end of the
process, leading to a different order when footnotes are nested.
 
(fn FOOTNOTE INFO &optional DATA BODY-FIRST)
(defalias 'org-export-get-footnote-number #[1026 "\300C\301C\302\211;\203\303\300#\202\304A@\"\266\202\3052D\306\307\310\311\312\313\f            $\314\"\315\316%\206>\304\317\"$0\207" [0 nil :label get-text-property plist-get exit org-export--footnote-reference-map make-byte-code 257 "\304\211;\203\305\306#\202\307A@\"\266\202\211\204.\303\204.\300=\203.\310\311\301\242T\"\202e\303\203E\211\203E\303\230\203E\310\311\301\242T\"\202e\211\204Q\301\211\242T\240\202e\211\302\242\235?\205e\302\302\242B\240\210\301\211\242T\240\207" vconcat vector [:label get-text-property 0 plist-get throw exit] 7 "\n\n(fn F)" :parse-tree] 17 (#$ . 134350)])
#@128 Return HEADLINE relative level within current parsed tree.
INFO is a plist holding contextual information.
 
(fn HEADLINE INFO)
(defalias 'org-export-get-relative-level #[514 "\300\211;\203\301\302#\202\303A@\"\266\202\303\304\"\206\302\\\207" [:level get-text-property 0 plist-get :headline-offset] 8 (#$ . 135562)])
#@337 Non-nil when HEADLINE is considered as low level.
 
INFO is a plist used as a communication channel.
 
A low level headlines has a relative level greater than
`:headline-levels' property value.
 
Return value is the difference between HEADLINE relative level
and the last level being considered as high enough, or nil.
 
(fn HEADLINE INFO)
(defalias 'org-export-low-level-p #[514 "\300\301\"\302!\205\303\"\211V\205\211Z\262\207" [plist-get :headline-levels wholenump org-export-get-relative-level] 6 (#$ . 135898)])
#@126 Return numbered HEADLINE numbering as a list of numbers.
INFO is a plist holding contextual information.
 
(fn HEADLINE INFO)
(defalias 'org-export-get-headline-number #[514 "\300\"\205\301\302\"\236A\207" [org-export-numbered-headline-p plist-get :headline-numbering] 6 (#$ . 136429)])
#@133 Return a non-nil value if HEADLINE element should be numbered.
INFO is a plist used as a communication channel.
 
(fn HEADLINE INFO)
(defalias 'org-export-numbered-headline-p #[514 "\300\301\302\303#!?\205\"\304\305\"\306\"\307!\203\211X\202 \266\202\207" [org-not-nil org-export-get-node-property :UNNUMBERED t plist-get :section-numbers org-export-get-relative-level wholenump] 7 (#$ . 136728)])
#@49 Convert integer N into a roman numeral.
 
(fn N)
(defalias 'org-export-number-to-roman #[257 "\300\301\302X\203\303!\2025\2034@@Y\203+@@Z\262\211@AP\262\202\211A\262\210\202\211\207" [((1000 . "M") (900 . "CM") (500 . "D") (400 . "CD") (100 . "C") (90 . "XC") (50 . "L") (40 . "XL") (10 . "X") (9 . "IX") (5 . "V") (4 . "IV") (1 . "I")) "" 0 number-to-string] 5 (#$ . 137142)])
#@435 Return list of tags associated to ELEMENT.
 
ELEMENT has either an `headline' or an `inlinetask' type.  INFO
is a plist used as a communication channel.
 
When non-nil, optional argument TAGS should be a list of strings.
Any tag belonging to this list will also be removed.
 
When optional argument INHERITED is non-nil, tags can also be
inherited from parent headlines and FILETAGS keywords.
 
(fn ELEMENT INFO &optional TAGS INHERITED)
(defalias 'org-export-get-tags #[1026 "\300\301\302\303\304\305!\306\"\307\310%\204-\311\211;\203\"\312\313#\202(\314A@\"\266\202\202\267\311\211;\203=\312\313#\202C\314A@\"\266\202\315!\211\203\244\211@\311\211;\203^\312\313#\202d\314A@\"\266\202\211\203\234\211@\211:\204{\211;\205\203\316\202\203\211@9\205\203\211@\262\317>\203\225\211\235\204\225\211B\262A\266\202\202f\210A\266\202\202I\210\320\314\321\"\"\322!\323!\266\202\262\"\207" [cl-remove-if make-byte-code 257 "\211\300\235\207" vconcat vector [] 3 "\n\n(fn TAG)" :tags get-text-property 0 plist-get org-element-lineage plain-text (headline inlinetask) append :filetags copy-sequence delete-dups] 15 (#$ . 137547)])
#@291 Return node PROPERTY value for BLOB.
 
PROPERTY is an upcase symbol (i.e. `:COOKIE_DATA').  BLOB is an
element or object.
 
If optional argument INHERITED is non-nil, the value can be
inherited from a parent headline.
 
Return value is a string or nil.
 
(fn PROPERTY BLOB &optional INHERITED)
(defalias 'org-export-get-node-property #[770 "\211:\204\211;\205\300\202\211@9\205\211@\262\301=\203\"\202%\302!\204C\211;\2038\303\304#\202>\305A@\"\266\202\202\221\211\3062\217\211\205\216\307A@\"\203r\310\306\211;\203h\303\304#\202n\305A@\"\266\202\"\210\311\211;\203\201\303\304#\202\207\305A@\"\266\202\262\202H0\262\207" [plain-text headline org-export-get-parent-headline get-text-property 0 plist-get found plist-member throw :parent] 13 (#$ . 138722)])
#@279 Return category for element or object BLOB.
 
INFO is a plist used as a communication channel.
 
CATEGORY is automatically inherited from a parent headline, from
#+CATEGORY: keyword or created out of original file name.  If all
fail, the fall-back value is "???".
 
(fn BLOB INFO)
(defalias 'org-export-get-category #[514 "\300\301\302#\206(\303\304\305\"\306\307\310%\206(\304\311\"\211\205\"\312\313!!\262\206(\314\207" [org-export-get-node-property :CATEGORY t org-element-map plist-get :parse-tree keyword #[257 "\300\211;\203\301\302#\202\303A@\"\266\202\304\232\2053\305\211;\203+\301\302#\2021\303A@\"\266\202\207" [:key get-text-property 0 plist-get "CATEGORY" :value] 7 "\n\n(fn KWD)"] first-match :input-file file-name-sans-extension file-name-nondirectory "???"] 8 (#$ . 139532)])
#@145 Return alternative title for HEADLINE, as a secondary string.
If no optional title is defined, fall-back to the regular title.
 
(fn HEADLINE _)
(defalias 'org-export-get-alt-title #[514 "\301\211;\203\302\303#\202\304A@\"\266\202\211\203J\305\306\2119\203'\211\202@\211\211:\2046\211;\205>\307\202>\211@9\205>\211@\262\236A\262#\202a\310\211;\203Y\302\303#\202_\304A@\"\266\202\207" [org-element-object-restrictions :ALT_TITLE get-text-property 0 plist-get org-element-parse-secondary-string headline plain-text :title] 9 (#$ . 140355)])
#@233 Non-nil when BLOB is the first sibling in its parent.
BLOB is an element or an object.  If BLOB is a headline, non-nil
means it is the first sibling in the sub-tree.  INFO is a plist
used as a communication channel.
 
(fn BLOB INFO)
(defalias 'org-export-first-sibling-p #[514 "\300\"\211:\204\211;\205\301\202\211@9\205\211@\262\302>\207" [org-export-get-previous-element plain-text (nil section)] 5 (#$ . 140929)])
#@156 Non-nil when DATUM is the last sibling in its parent.
DATUM is an element or an object.  INFO is a plist used as
a communication channel.
 
(fn DATUM INFO)
(defalias 'org-export-last-sibling-p #[514 "\300\"\211?\206V\211:\204\211;\205 \301\202 \211@9\205 \211@\262\302=\205V\303\211;\2036\304\305#\202<\306A@\"\266\202\303\211;\203M\304\305#\202S\306A@\"\266\202V\207" [org-export-get-next-element plain-text headline :level get-text-property 0 plist-get] 10 (#$ . 141363)])
#@425 Return date value for the current document.
 
INFO is a plist used as a communication channel.  FMT, when
non-nil, is a time format string that will be applied on the date
if it consists in a single timestamp object.  It defaults to
`org-export-date-timestamp-format' when nil.
 
A proper date can be a secondary string, a string or nil.  It is
meant to be translated with `org-export-data' or alike.
 
(fn INFO &optional FMT)
(defalias 'org-export-get-date #[513 "\301\302\"\206    \204\303\202B\211\203AA\204A@\211:\204*\211;\2052\304\2022\211@9\2052\211@\262\305=\203A\306@\"\202B\207" [org-export-date-timestamp-format plist-get :date nil plain-text timestamp org-timestamp-format] 7 (#$ . 141869)])
(org-define-error 'org-link-broken "Unable to resolve link; aborting")
#@371 Try exporting LINK with a dedicated function.
 
DESC is its description, as a string, or nil.  BACKEND is the
back-end used for export, as a symbol.
 
Return output as a string, or nil if no protocol handles LINK.
 
A custom protocol has precedence over regular back-end export.
The function ignores links with an implicit type (e.g.,
"custom-id").
 
(fn LINK DESC BACKEND)
(defalias 'org-export-custom-protocol-maybe #[771 "\300\211;\203\301\302#\202\303A@\"\266\202\211\304\235\206??\205M\305\306\"\307!\205K\211\310\311\211;\203?\301\302#\202E\303A@\"\266\202!#\262\207" [:type get-text-property 0 plist-get ("coderef" "custom-id" "fuzzy" "radio") org-link-get-parameter :export functionp org-link-unescape :path] 13 (#$ . 142667)])
#@112 Return format string for code reference link.
PATH is the link path.  DESC is its description.
 
(fn PATH DESC)
(defalias 'org-export-get-coderef-format #[514 "\300 \301\302\303\304\305!\306\"\307$\216\204\310\202,\311\312\313\314Q!\"\203+\315\310\316\211$\202,)\207" [match-data make-byte-code 0 "\301\300\302\"\207" vconcat vector [set-match-data evaporate] 3 "%s" string-match regexp-quote "(" ")" replace-match t] 9 (#$ . 143433)])
#@493 Non-nil if LINK object points to an inline image.
 
Optional argument is a set of RULES defining inline images.  It
is an alist where associations have the following shape:
 
  (TYPE . REGEXP)
 
Applying a rule means apply REGEXP against LINK's path when its
type is TYPE.  The function will return a non-nil value if any of
the provided rules is non-nil.  The default rule is
`org-export-default-inline-image-rule'.
 
This only applies to links without a description.
 
(fn LINK &optional RULES)
(defalias 'org-export-inline-image-p #[513 "\211:\204\n\302\202\211@9\203\211AA\202\211\262?\2054\303\304\305\306\307\310\311!\312\"\313\314%\2062    \")\207" [case-fold-search org-export-default-inline-image-rule nil t cl-some make-byte-code 257 "\302\300\211;\203\303\304#\202\305A@\"\266\202@\230\205A\211A\306\300\211;\203.\303\304#\2024\305A@\"\266\202\307\310\311#)\266\203\207" vconcat vector [inhibit-changing-match-data :type get-text-property 0 plist-get :path nil t string-match] 8 "\n\n(fn RULE)"] 9 (#$ . 143886)])
#@794 Insert image links in DATA.
 
Org syntax does not support nested links.  Nevertheless, some
export back-ends support images as descriptions of links.  Since
images are really links to image files, we need to make an
exception about links nesting.
 
This function recognizes links whose contents are really images
and turn them into proper nested links.  It is meant to be used
as a parse tree filter in back-ends supporting such constructs.
 
DATA is a parse tree.  INFO is the current state of the export
process, as a plist.
 
A description is a valid images if it matches any rule in RULES,
if non-nil, or `org-export-default-inline-image-rule' otherwise.
See `org-export-inline-image-p' for more information about the
structure of RULES.
 
Return modified DATA.
 
(fn DATA INFO &optional RULES)
(defalias 'org-export-insert-image-links #[770 "\303\304    #\305\306\307\310\311\312\313\314        \"\315\"\316\317%\320\211\305&\210)\210\207" [org-plain-link-re org-angle-link-re case-fold-search format "\\`\\(?:%s\\|%s\\)\\'" t org-element-map link make-byte-code 257 "\303\211:\204 \304\202\211@9\203\211AA\202\211\262!\305!\205\366\306\301\"\205\366\307\310\"\307\311\"\312\313\314\315\316\317\"\320\"\321\322%\300\206E\n\"\205\364\304C\204T\211\202o@9\204^\211\202oA\203lA\241\210\202o\244\266\202\323\324!r\211q\210\313\325\326\316\317!\327\"\311$\216\212c\210)\330 *\262C\211\204\227\202\362\211\211\203\310\211@\211\331\206\245;\203\264\332\304$\210\202\277A\333A@#\240\210\266A\266\202\202\230\210\203\355\334\335\211\211:\204\332\304\202\347\211@9\203\346\211AA\202\347\211\262\244#\210\206\362\211\266\202\266\202\207" vconcat vector [org-export-default-inline-image-rule org-element-interpret-data nil org-string-nw-p string-match match-string 1 2 cl-some make-byte-code 257 "\300@\230\205\211A\301\303\304\305#)\266\203\207" vconcat vector [inhibit-changing-match-data nil t string-match] 8 "\n\n(fn RULE)" generate-new-buffer " *temp*" 0 "\301\300!\205    \302\300!\207" [buffer-name kill-buffer] org-element-link-parser :parent org-add-props plist-put apply org-element-set-contents] 16 "\n\n(fn L)" nil] 14 (#$ . 144945)])
#@254 Resolve a code reference REF.
 
INFO is a plist used as a communication channel.
 
Return associated line number in source code, or REF itself,
depending on src-block or example element's switches.  Throw an
error if no block contains REF.
 
(fn REF INFO)
(defalias 'org-export-resolve-coderef #[514 "\300\301\302\"\303\304\305\306\307\310        \"\311\"\312\313%\314%\206 \315\316C\"\207" [org-element-map plist-get :parse-tree (example-block src-block) make-byte-code 257 "\303\304!r\211q\210\305\306\307\310\311!\312\"\313$\216\314\211;\203\"\315\306#\202(\316A@\"\266\202\317\320\2034\321\2025\322\323\320\324\323##\266\202c\210\325\211;\203P\315\306#\202V\316A@\"\266\202\206\\\n\326\300\"\327\317\330#\205\221\331\211;\203w\315\306#\202}\316A@\"\266\202\203\206\300\202\221\332\301\"\206\216\306\333 \\\266\202*\207" vconcat vector [org-coderef-label-format generate-new-buffer " *temp*" make-byte-code 0 "\301\300!\205    \302\300!\207" vconcat vector [buffer-name kill-buffer] 2 :value get-text-property plist-get nil replace-regexp-in-string "\\`\\([     ]*\n\\)+" "\\`[     \n ]+" "" "[     \n ]+\\'" :label-fmt org-src-coderef-regexp re-search-backward t :use-labels org-export-get-loc line-number-at-pos] 11 "\n\n(fn EL)" first-match signal org-link-broken] 12 (#$ . 147162)])
#@673 List search cells for element or object DATUM.
 
A search cell follows the pattern (TYPE . SEARCH) where
 
  TYPE is a symbol among `headline', `custom-id', `target' and
  `other'.
 
  SEARCH is the string a link is expected to match.  More
  accurately, it is
 
    - headline's title, as a list of strings, if TYPE is
      `headline'.
 
    - CUSTOM_ID value, as a string, if TYPE is `custom-id'.
 
    - target's or radio-target's name as a list of strings if
      TYPE is `target'.
 
    - NAME affiliated keyword if TYPE is `other'.
 
A search cell is the internal representation of a fuzzy link.  It
ignores white spaces and statistics cookies, if applicable.
 
(fn DATUM)
(defalias 'org-export-search-cells #[257 "\211\211:\204\211;\205\300\202\211@9\205\211@\262\211\301\267\202\214\302\303\304\305\306\211;\2033\307\310#\2029\311A@\"\266\202#!\312\313\314B\315B\316\211;\203U\307\310#\202[\311A@\"\266\202\211\205d\317B\262E\"\262\202\262\320\302\321\211;\203~\307\310#\202\204\311A@\"\266\202!BC\202\262\322\211;\203\233\307\310#\202\241\311A@\"\266\202\211\205\260\211\315\302!BC\262\262\207" [plain-text #s(hash-table size 2 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (headline 31 target 109)) split-string replace-regexp-in-string "\\[[0-9]*\\(?:%\\|/[0-9]*\\)\\]" "" :raw-value get-text-property 0 plist-get delq nil headline other :custom-id custom-id target :value :name] 13 (#$ . 148480)])
#@211 Return search cells associated to string S.
S is either the path of a fuzzy link or a search option, i.e., it
tries to match either a headline (through custom ID or title),
a target or a named element.
 
(fn S)
(defalias 'org-export-string-to-search-cell #[257 "\300!\211\301\267\202\302\303\304\305O!BC\202.\306\304\305OBC\202.\303!\211\307B\310BD\262\262\207" [string-to-char #s(hash-table size 2 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (42 9 35 21)) headline split-string 1 nil custom-id target other] 7 (#$ . 149960)])
#@173 Non-nil when DATUM matches search cells CELLS.
DATUM is an element or object.  CELLS is a list of search cells,
as returned by `org-export-search-cells'.
 
(fn DATUM CELLS)
(defalias 'org-export-match-search-cell-p #[514 "\300!\211\205\301\302\303\304\305\306!\307\"\310\311%\"\207" [org-export-search-cells cl-some make-byte-code 257 "\211\300\235\207" vconcat vector [] 3 "\n\n(fn CELL)"] 10 (#$ . 150525)])
#@491 Return LINK destination.
 
INFO is a plist holding contextual information.
 
Return value can be an object or an element:
 
- If LINK path matches a target object (i.e. <<path>>) return it.
 
- If LINK path exactly matches the name affiliated keyword
  (i.e. #+NAME: path) of an element, return that element.
 
- If LINK path exactly matches any headline name, return that
  element.
 
- Otherwise, throw an error.
 
Assume LINK type is "fuzzy".  White spaces are not
significant.
 
(fn LINK INFO)
(defalias 'org-export-resolve-fuzzy-link #[514 "\301\302\303\211;\203\304\305#\202\306A@\"\266\202!!\306\307\"\206/\310\311\312\"\313\307#\210\211\262\314\315#\211\315=\204>\211\202\204\316\306\317\"\320B\321\322\323\324\325\n!\326\"\327\330%#\211\204u\331\332\303\211;\203j\304\305#\202p\306A@\"\266\202C\"\210\333\334\335\"\206\200@#\262\207" [org-element-all-elements org-export-string-to-search-cell org-link-unescape :path get-text-property 0 plist-get :resolve-fuzzy-link-cache make-hash-table :test eq plist-put gethash not-found org-element-map :parse-tree target make-byte-code 257 "\301\300\"\205\211\207" vconcat vector [org-export-match-search-cell-p] 4 "\n\n(fn DATUM)" signal org-link-broken puthash cl-some #[257 "\211\211:\204\211;\205\300\202\211@9\205\211@\262\301=?\205 \211\207" [plain-text headline] 3 "\n\n(fn DATUM)"]] 14 (#$ . 150947)])
#@290 Return headline referenced as LINK destination.
 
INFO is a plist used as a communication channel.
 
Return value can be the headline element matched in current parse
tree or a file name.  Assume LINK type is either "id" or
"custom-id".  Throw an error if no match is found.
 
(fn LINK INFO)
(defalias 'org-export-resolve-id-link #[514 "\300\211;\203\301\302#\202\303A@\"\266\202\304\303\305\"\306\307\310\311\312\313!\314\"\315\316%\317%\206@\320\303\321\"\"A\206@\322\323C\"\207" [:path get-text-property 0 plist-get org-element-map :parse-tree headline make-byte-code 257 "\301\211;\203\302\303#\202\304A@\"\266\202\300\232\2048\305\211;\203+\302\303#\2021\304A@\"\266\202\300\232\2059\211\207" vconcat vector [:ID get-text-property 0 plist-get :CUSTOM_ID] 7 "\n\n(fn HEADLINE)" first-match assoc :id-alist signal org-link-broken] 12 (#$ . 152354)])
#@208 Return radio-target object referenced as LINK destination.
 
INFO is a plist used as a communication channel.
 
Return value can be a radio-target object or nil.  Assume LINK
has type "radio".
 
(fn LINK INFO)
(defalias 'org-export-resolve-radio-link #[514 "\300\301\302\303\211;\203\304\305#\202\306A@\"\266\202#\307\306\310\"\311\312\313\314\315\316!\317\"\320\321%\322%\207" [replace-regexp-in-string "[      \n]+" " " :path get-text-property 0 plist-get org-element-map :parse-tree radio-target make-byte-code 257 "\301\302\303\304\305\211;\203\306\307#\202\310A@\"\266\202#\311\211\300\311\211\312&\312=\205*\211\207" vconcat vector [compare-strings replace-regexp-in-string "[      \n]+" " " :value get-text-property 0 plist-get nil t] 11 "\n\n(fn RADIO)" first-match] 12 (#$ . 153247)])
#@56 Return file URI associated to FILENAME.
 
(fn FILENAME)
(defalias 'org-export-file-uri #[257 "\300\301\"\203 \302P\207\303!\204\207\304!\203\305P\207\306!\300\307\"\203*\310\202+\311P\207" [string-prefix-p "//" "file:" file-name-absolute-p org-file-remote-p "file:/" expand-file-name "/" "file://" "file:///"] 5 (#$ . 154062)])
#@247 Return a unique reference, among REFERENCES.
REFERENCES is an alist whose values are in-use references, as
numbers.  Returns a number, which is the internal representation
of a reference.  See also `org-export-format-reference'.
 
(fn REFERENCES)
(defalias 'org-export-new-reference #[257 "\300\301!\302\"\203\300\301!\262\202\211\207" [random 268435456 rassq] 5 (#$ . 154411)])
#@151 Format REFERENCE into a string.
REFERENCE is a number representing a reference, as returned by
`org-export-new-reference', which see.
 
(fn REFERENCE)
(defalias 'org-export-format-reference #[257 "\300\301\"\207" [format "org%07x"] 4 (#$ . 154803)])
#@336 Return a unique reference for DATUM, as a string.
 
DATUM is either an element or an object.  INFO is the current
export state, as a plist.
 
This function checks `:crossrefs' property in INFO for search
cells matching DATUM before creating a new reference.  Returned
reference consists of alphanumeric characters only.
 
(fn DATUM INFO)
(defalias 'org-export-get-reference #[514 "\300\301\"C\302\242\"@\206a\300\303\"\304!\305\306\307\310\311\312\"\313\"\314\315%\"\206.\316\242!\317!\211\203J\211@B\242B\240\210A\266\202\2022\210B\242B\240\210\320\301\242#\210\266\203\207" [plist-get :internal-references rassq :crossrefs org-export-search-cells cl-some make-byte-code 257 "\302\301\"A\211\205\303!\302\300\242\"?\205\262\207" vconcat vector [assoc org-export-format-reference] 6 "\n\n(fn CELL)" org-export-new-reference org-export-format-reference plist-put] 13 (#$ . 155060)])
#@1087 Return ordinal number of an element or object.
 
ELEMENT is the element or object considered.  INFO is the plist
used as a communication channel.
 
Optional argument TYPES, when non-nil, is a list of element or
object types, as symbols, that should also be counted in.
Otherwise, only provided element's type is considered.
 
Optional argument PREDICATE is a function returning a non-nil
value if the current element or object should be counted in.  It
accepts two arguments: the element or object being considered and
the plist used as a communication channel.  This allows counting
only a certain type of object (i.e. inline images).
 
Return value is a list of numbers if ELEMENT is a headline or an
item.  It is nil for keywords.  It represents the footnote number
for footnote definitions and footnote references.  If ELEMENT is
a target, return the same value as if ELEMENT was the closest
table, item or headline containing the target.  In any other
case, return the sequence number of ELEMENT among elements or
objects of the same type.
 
(fn ELEMENT INFO &optional TYPES PREDICATE)
(defalias 'org-export-get-ordinal #[1026 "C\211\242\211:\204\211;\205\300\202\211@9\205\211@\262\301=\203)\211\302\242\303\"\240\210\211\242\211:\2049\211;\205A\300\202A\211@9\205A\211@\262\304\305\"\203S\306\242\"\202\350\304\307\"\203\230\310\242\211;\203j\311\312#\202p\313A@\"\266\202\314\315\242\211;\203\203\311\312#\202\211\313A@\"\266\202\316!\317!$\262\202\350\320\321\"\203\250\322\242\"\202\350\312C\323\313\324\"\206\317\242\211:\204\305\211;\205\315\300\202\315\211@9\205\315\211@\262\325\326\327\330\331\n  $\332\"\333\334%    \335%\262\262\207" [plain-text target org-element-lineage (footnote-definition footnote-reference headline item table) eql headline org-export-get-headline-number item :structure get-text-property 0 plist-get org-list-get-item-number :begin org-list-prevs-alist org-list-parents-alist memql (footnote-definition footnote-reference) org-export-get-footnote-number org-element-map :parse-tree make-byte-code 257 "\300\242=\203 \303\242T\207\302\204\303\211\242T\240\210\304\207\302\301\"\205%\303\211\242T\240\210\304\207" vconcat vector [nil] 4 "\n\n(fn EL)" first-match] 19 (#$ . 155990)])
#@328 Return count of lines of code before ELEMENT.
 
ELEMENT is an example-block or src-block element.  INFO is the
plist used as a communication channel.
 
Count includes every line of code in example-block or src-block
with a "+n" or "-n" switch before block.  Return nil if
ELEMENT doesn't allow line numbering.
 
(fn ELEMENT INFO)
(defalias 'org-export-get-loc #[514 "\300\211;\203\301\302#\202\303A@\"\266\202\211:\205\\\211@\211\304\267\202YA\211\211\262\262\202ZA\211\302C\305\303\306\"\307\310\311\312\313\314\n\n#\315\"\316\317%    \320%\262\262\262\202Z\321\262\207" [:number-lines get-text-property 0 plist-get #s(hash-table size 2 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (new 36 continued 47)) org-element-map :parse-tree (src-block example-block) make-byte-code 257 "\211\300=\203 \302\242\301\\\207\303\211;\203\304\305#\202 \306A@\"\266\202\211\203i\307\310\211;\2036\304\305#\202<\306A@\"\266\202!:\203h@\211\311\267\202gA\211\302\\\240\266\202gA\211\302\211\242\\\\\240\266\210\210\210\312\207" vconcat vector [:number-lines get-text-property 0 plist-get org-count-lines :value #s(hash-table size 2 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (new 76 continued 89)) nil] 10 "\n\n(fn EL)" first-match nil] 18 (#$ . 158286)])
#@357 Clean source code and extract references out of it.
 
ELEMENT has either a `src-block' an `example-block' type.
 
Return a cons cell whose CAR is the source code, cleaned from any
reference, protective commas and spurious indentation, and CDR is
an alist between relative line number (integer) and name of code
reference on that line (string).
 
(fn ELEMENT)
(defalias 'org-export-unravel-code #[257 "\301C\302C\303\211;\203\304\301#\202\305A@\"\266\202\306\307\310\204=\311\211;\2032\304\301#\2028\305A@\"\266\202\203A\202D\312!#\313\314!!\315\316\317\320\321\322\n\n#\323\"\324\325%\326\327\"\327#\242B\207" [org-src-preserve-indentation 0 nil :value get-text-property plist-get replace-regexp-in-string "\n\\'" #1="" :preserve-indent org-remove-indentation org-src-coderef-regexp org-src-coderef-format mapconcat make-byte-code 257 "\300\211\242T\240\210\303\302\"\204\207\301\300\242\304\305\"B\301\242B\240\210\306\307\310\211\311%\207" vconcat vector [string-match match-string 3 replace-match #1# nil 1] 7 "\n\n(fn LOC)" split-string "\n"] 15 (#$ . 159626)])
#@906 Format CODE by applying FUN line-wise and return it.
 
CODE is a string representing the code to format.  FUN is
a function.  It must accept three arguments: a line of
code (string), the current line number (integer) or nil and the
reference associated to the current line (string) or nil.
 
Optional argument NUM-LINES can be an integer representing the
number of code lines accumulated until the current code.  Line
numbers passed to FUN will take it into account.  If it is nil,
FUN's second argument will always be nil.  This number can be
obtained with `org-export-get-loc' function.
 
Optional argument REF-ALIST can be an alist between relative line
number (i.e. ignoring NUM-LINES) and the name of the code
reference on it.  If it is nil, FUN's third argument will always
be nil.  It can be obtained through the use of
`org-export-unravel-code' function.
 
(fn CODE FUN &optional NUM-LINES REF-ALIST)
(defalias 'org-export-format-code #[1026 "\300\301\"\302C\303\304\305\306\307\310\n\n\n    $\311\"\312\313%\301#\301P\207" [split-string "\n" 0 mapconcat make-byte-code 257 "\303\211\242T\240\210\303\242\302\236A\300\301\205\301\303\242\\#\207" vconcat vector [] 6 "\n\n(fn --LOC)"] 16 (#$ . 160732)])
#@508 Return source code from ELEMENT, formatted in a standard way.
 
ELEMENT is either a `src-block' or `example-block' element.  INFO
is a plist used as a communication channel.
 
This function takes care of line numbering and code references
inclusion.  Line numbers, when applicable, appear at the
beginning of the line, separated from the code by two white
spaces.  Code references, on the other hand, appear flushed to
the right, separated by six white spaces from the widest line of
code.
 
(fn ELEMENT INFO)
(defalias 'org-export-format-code-default #[514 "\300!\211@\301\302\"\211\204\303\202o\304\211;\203 \305\306#\202&\307A@\"\266\202\205-A\310\"\211\205A\311\312\313G\\!G\"\314\315\316\317\"\"\204Q\306\202V\311\"G\\\320\321\322\323\324\325\"\326\"\327\330%$\266\204\207" [org-export-unravel-code split-string "\n" "" :retain-labels get-text-property 0 plist-get org-export-get-loc format "%%%ds  " number-to-string apply max mapcar length org-export-format-code make-byte-code 771 "\300\205\302\300\"\211\205!\303\304\301\\GG\\Z\305\"\302\306\"PQ\207" vconcat vector [format make-string 6 32 "(%s)"] 10 "\n\n(fn LOC LINE-NUM REF)"] 18 (#$ . 161953)])
#@105 Non-nil when TABLE has a special column.
All special columns will be ignored during export.
 
(fn TABLE)
(defalias 'org-export-table-has-special-column-p #[257 "\300\3012\224\211:\204\302\202\211@9\203\211AA\202\211\262\211\203\217\211@\303\211;\2033\304\305#\2029\306A@\"\266\202\307=\203\210\211\211:\204J\302\202W\211@9\203V\211AA\202W\211\262@\211:\204c\302\202p\211@9\203o\211AA\202p\211\262\211\310\235\203~\311\262\202\207\211\203\207\312\301\302\"\210\210A\266\202\202\210\211\311=0\207" [empty exit nil :type get-text-property 0 plist-get standard (("/") ("#") ("!") ("$") ("*") ("_") ("^")) special throw] 10 (#$ . 163164)])
#@165 Non-nil when TABLE has a header.
 
INFO is a plist used as a communication channel.
 
A table has a header when it contains at least two row groups.
 
(fn TABLE INFO)
(defalias 'org-export-table-has-header-p #[514 "\300\301\"\206\302\303\304\"\305\301#\210\211\262\306\307#\211\307=\204#\211\202F\310C\311C\312\313\314\315\316\317\320\321  \"\322\"\323\324%\n\325%#\266\202\207" [plist-get :table-header-cache make-hash-table :test eq plist-put gethash no-cache 1 nil puthash org-element-map table-row make-byte-code 257 "\300\242\302V\203    \303\207\301\242\2034\304\211;\203\305\306#\202#\307A@\"\266\202\310=\2034\300\211\242T\240\210\301\311\240\207\301\242?\205[\304\211;\203I\305\306#\202O\307A@\"\266\202\312=\205[\301\303\240\210\311\207" vconcat vector [1 t :type get-text-property 0 plist-get rule nil standard] 7 "\n\n(fn ROW)" first-match] 18 (#$ . 163842)])
#@111 Non-nil if TABLE-ROW is considered special.
All special rows will be ignored during export.
 
(fn TABLE-ROW _)
(defalias 'org-export-table-row-is-special-p #[514 "\300\211;\203\301\302#\202\303A@\"\266\202\304=\205\347\211:\204&\305\2023\211@9\2032\211AA\2023\211\262@\211:\204?\305\202L\211@9\203K\211AA\202L\211\262\211\306\232\206\345\307\310\211;\203e\301\302#\202k\303A@\"\266\203!\203w\211\311\235\206\345\312\3132\343\211:\204\206\305\202\223\211@9\203\222\211AA\202\223\211\262\211\203\336\211@\211\211:\204\245\305\202\262\211@9\203\261\211AA\202\262\211\262\211\203\326\211A\204\321\211@;\203\321\314\315@\"\203\321\316\262\202\326\317\313\305\"\210\210A\266\202\202\225\210\211\316=0\262\262\207" [:type get-text-property 0 plist-get standard nil ("/") org-export-table-has-special-column-p :parent (("^") ("_") ("$") ("!")) empty exit string-match "\\`<[lrc]?\\([0-9]+\\)?>\\'" cookie throw] 11 (#$ . 164754)])
#@254 Return TABLE-ROW's group number, as an integer.
 
INFO is a plist used as the communication channel.
 
Return value is the group number, as an integer, or nil for
special rows and rows separators.  First group is also table's
header.
 
(fn TABLE-ROW INFO)
(defalias 'org-export-table-row-group #[514 "\300\211;\203\301\302#\202\303A@\"\266\202\304=\205z\303\305\"\2060\306\307\310\"\311\305#\210\211\262\312\313#\211\313=\204?\211\202x\302C\314C\315\316\211;\203U\301\302#\202[\303A@\"\266\203\317\320\321\322\323\324 \n\n#\325\"\326\327%$\266\312\"\266\202\207" [:type get-text-property 0 plist-get standard :table-row-group-cache make-hash-table :test eq plist-put gethash no-cache nil org-element-map :parent table-row make-byte-code 257 "\303\211;\203\304\305#\202\306A@\"\266\202\307=\203 \302\310\240\207\302\242\204/\301\211\242T\240\210\302\311\240\210\312\301\242\300#\207" vconcat vector [:type get-text-property 0 plist-get rule nil t puthash] 7 "\n\n(fn ROW)"] 17 (#$ . 165739)])
#@209 Return TABLE-CELL contents width.
 
INFO is a plist used as the communication channel.
 
Return value is the width given by the last width cookie in the
same column as TABLE-CELL, or nil.
 
(fn TABLE-CELL INFO)
(defalias 'org-export-table-cell-width #[514 "\300\211;\203\301\302#\202\303A@\"\266\203\211\300\211;\203(\301\302#\202.\303A@\"\266\203\211:\204:\304\202G\211@9\203F\211AA\202G\211\262\211G\211>GZ\303\305\"\206h\306\307\310\"\311\305#\210\211\262\312\"\206w\313\314\315\"#\211H\211\315=\204\204\211\202\304\211:\204\220\304\202\235\211@9\203\234\211AA\202\235\211\262\211\203\211@\316 \"\203    \211\211:\204\267\304\202\304\211@9\203\303\211AA\202\304\211\262\234\211:\204\322\304\202\337\211@9\203\336\211AA\202\337\211\262\211@\203A\204\211;\203\317\320\"\203\321\322\"\203\323\321\322\"!\262\266A\266\202\202\237I\262\262\207" [:parent get-text-property 0 plist-get nil :table-cell-width-cache make-hash-table :test eq plist-put gethash puthash make-vector empty org-export-table-row-is-special-p string-match "\\`<[lrc]?\\([0-9]+\\)?>\\'" match-string 1 string-to-number] 19 (#$ . 166783)])
#@423 Return TABLE-CELL contents alignment.
 
INFO is a plist used as the communication channel.
 
Return alignment as specified by the last alignment cookie in the
same column as TABLE-CELL.  If no such cookie is found, a default
alignment value will be deduced from fraction of numbers in the
column (see `org-table-number-fraction' for more information).
Possible values are `left', `right' and `center'.
 
(fn TABLE-CELL INFO)
(defalias 'org-export-table-cell-alignment #[514 "\302\303!\210\304\211;\203\305\306#\202\307A@\"\266\203\211\304\211;\203,\305\306#\2022\307A@\"\266\203\211:\204>\310\202K\211@9\203J\211AA\202K\211\262\211G\211>GZ\307\311\"\206l\312\313\314\"\315\311#\210\211\262\316\"\206{\317\320\310\"#\211H\206\332\306\211\310\211\n\304\211;\203\226\305\306#\202\234\307A@\"\266\203\211:\204\247\310\202\264\211@9\203\263\211AA\202\264\211\262\211\203\245\211@\321\"\203\"\211\211:\204\316\310\202\333\211@9\203\332\211AA\202\333\211\262    \234\211:\204\351\310\202\366\211@9\203\365\211AA\202\366\211\262\211\203\211A\204\211@;\203\322\323@\"\203\324\325@\"\203\324\325@\"\262\210\202\236\326\211;\2031\305\306#\2027\307A@\"\266\202\327=\204\236\204\236\330\211:\204M\310\202Z\211@9\203Y\211AA\202Z\211\262\n\234\211:\204h\310\202u\211@9\203t\211AA\202u\211\262\"T\262\322\"\204\225\211\331\230\203\217\204\225\310\262\202\235\332\262T\262\210A\266\202\202\266\210\333\232\203\263\334\202\327\335\232\203\275\336\202\327\337\232\203\307\340\202\327\341!\245    Y\203\326\336\202\327\334I\266\204\207" [org-table-number-regexp org-table-number-fraction require org-table :parent get-text-property 0 plist-get nil :table-cell-alignment-cache make-hash-table :test eq plist-put gethash puthash make-vector org-export-table-row-is-special-p string-match "\\`<\\([lrc]\\)?\\([0-9]+\\)?>\\'" match-string 1 :type rule org-export-data "" t "l" left "r" right "c" center float] 21 (#$ . 167984)])
#@391 Return TABLE-CELL borders.
 
INFO is a plist used as a communication channel.
 
Return value is a list of symbols, or nil.  Possible values are:
`top', `bottom', `above', `below', `left' and `right'.  Note:
`top' (resp. `bottom') only happen for a cell in the first
row (resp. last row) of the table, ignoring table rules, if any.
 
Returned borders ignore special rows.
 
(fn TABLE-CELL INFO)
(defalias 'org-export-table-cell-borders #[514 "\300\211;\203\301\302#\202\303A@\"\266\203\304!\305\211\3062\236\307\211:\204-\305\202:\211@9\2039\211AA\202:\211\262!>A\211\203\215\211@\310\211;\203T\301\302#\202Z\303A@\"\266\202\311=\203g\312\262\202\206\313\"\204\206\203\201\314\306\315B\211\262\"\210\202\206\314\306\305\"\210A\266\202\202?\210\211\203\227\315B\262\316B\211\2620\266\305\3062 \211:\204\260\305\202\275\211@9\203\274\211AA\202\275\211\262>A\211\203\211@\310\211;\203\326\301\302#\202\334\303A@\"\266\202\311=\203\351\312\262\202\313\"\204\203\314\306\317B\211\262\"\210\202\314\306\305\"\210A\266\202\202\301\210\211\203\317B\262\320B\211\2620\266\3062%\211:\2040\305\202=\211@9\203<\211AA\202=\211\262\211G>GZ\262\307\211:\204T\305\202a\211@9\203`\211AA\202a\211\262!\211\205 \211@\310\211;\203y\301\302#\202\303A@\"\266\202\311=\204\211\211:\204\220\305\202\235\211@9\203\234\211AA\202\235\211\262@\211:\204\251\305\202\266\211@9\203\265\211AA\202\266\211\262\321\232\203\322\323\211:\204\311\305\202\326\211@9\203\325\211AA\202\326\211\262\"\302U\204\350\211S\234\324\235\204\360\211\234\325\235\203\365\326B\262TGU\204\211T\234\327\235\204\211\234\330\235\203\331B\262\314\306\305\"\266A\266\202\202d\262\2620\210\207" [:parent get-text-property 0 plist-get org-export-get-parent-table nil exit reverse :type rule t org-export-table-row-is-special-p throw above top below bottom ("/") mapcar #[257 "\211\211:\204\n\300\202\211@9\203\211AA\202\211\262\211\301\235\205!\211@\207" [nil (("<") ("<>") (">") nil)] 4 "\n\n(fn CELL)"] (">" "<>") ("<" "<>") left ("<" "<>") (">" "<>") right] 14 (#$ . 170029)])
#@135 Non-nil when TABLE-CELL is at the beginning of a column group.
INFO is a plist used as a communication channel.
 
(fn TABLE-CELL INFO)
(defalias 'org-export-table-cell-starts-colgroup-p #[514 "\300\301\211;\203\302\303#\202\304A@\"\266\203\305\306\307%=\206)\310\311\">\207" [org-element-map :parent get-text-property 0 plist-get table-cell identity first-match left org-export-table-cell-borders] 10 (#$ . 172224)])
#@129 Non-nil when TABLE-CELL is at the end of a column group.
INFO is a plist used as a communication channel.
 
(fn TABLE-CELL INFO)
(defalias 'org-export-table-cell-ends-colgroup-p #[514 "\300\301\211;\203\302\303#\202\304A@\"\266\203\211:\204\"\305\202/\211@9\203.\211AA\202/\211\262!@=\206>\306\307\">\207" [last :parent get-text-property 0 plist-get nil right org-export-table-cell-borders] 10 (#$ . 172662)])
#@130 Non-nil when TABLE-ROW is at the beginning of a row group.
INFO is a plist used as a communication channel.
 
(fn TABLE-ROW INFO)
(defalias 'org-export-table-row-starts-rowgroup-p #[514 "\300\211;\203\301\302#\202\303A@\"\266\202\304=\206 \305\"?\205L\306\211:\204/\307\202<\211@9\203;\211AA\202<\211\262@\"\310>\206J\311>\262\207" [:type get-text-property 0 plist-get rule org-export-table-row-is-special-p org-export-table-cell-borders nil top above] 8 (#$ . 173097)])
#@124 Non-nil when TABLE-ROW is at the end of a row group.
INFO is a plist used as a communication channel.
 
(fn TABLE-ROW INFO)
(defalias 'org-export-table-row-ends-rowgroup-p #[514 "\300\211;\203\301\302#\202\303A@\"\266\202\304=\206 \305\"?\205L\306\211:\204/\307\202<\211@9\203;\211AA\202<\211\262@\"\310>\206J\311>\262\207" [:type get-text-property 0 plist-get rule org-export-table-row-is-special-p org-export-table-cell-borders nil bottom below] 8 (#$ . 173598)])
#@185 Non-nil when TABLE-ROW is located within table's header.
INFO is a plist used as a communication channel.  Always return
nil for special rows and rows separators.
 
(fn TABLE-ROW INFO)
(defalias 'org-export-table-row-in-header-p #[514 "\300\301!\"\205\302\303\"\304\"\207" [org-export-table-has-header-p org-export-get-parent-table eql org-export-table-row-group 1] 6 (#$ . 174094)])
#@127 Non-nil when TABLE-ROW is the first table header's row.
INFO is a plist used as a communication channel.
 
(fn TABLE-ROW INFO)
(defalias 'org-export-table-row-starts-header-p #[514 "\300\"\205 \301\"\207" [org-export-table-row-in-header-p org-export-table-row-starts-rowgroup-p] 5 (#$ . 174490)])
#@126 Non-nil when TABLE-ROW is the last table header's row.
INFO is a plist used as a communication channel.
 
(fn TABLE-ROW INFO)
(defalias 'org-export-table-row-ends-header-p #[514 "\300\"\205 \301\"\207" [org-export-table-row-in-header-p org-export-table-row-ends-rowgroup-p] 5 (#$ . 174798)])
#@209 Return TABLE-ROW number.
INFO is a plist used as a communication channel.  Return value is
zero-indexed and ignores separators.  The function returns nil
for special rows and separators.
 
(fn TABLE-ROW INFO)
(defalias 'org-export-table-row-number #[514 "\300\211;\203\301\302#\202\303A@\"\266\202\304=\205a\303\305\"\2060\306\307\310\"\311\305#\210\211\262\312\313#\211\313=\204?\211\202_\314C\315\316!\317\320\321\322\323\324\n    \"\325\"\326\327%$\266\312\"\266\202\207" [:type get-text-property 0 plist-get standard :table-row-number-cache make-hash-table :test eq plist-put gethash no-cache -1 org-element-map org-export-get-parent-table table-row make-byte-code 257 "\302\211;\203\303\304#\202\305A@\"\266\202\306=\205%\307\301\211\242T\240\300#\207" vconcat vector [:type get-text-property 0 plist-get standard puthash] 7 "\n\n(fn ROW)"] 15 (#$ . 175101)])
#@216 Return TABLE dimensions.
 
INFO is a plist used as a communication channel.
 
Return value is a CONS like (ROWS . COLUMNS) where
ROWS (resp. COLUMNS) is the number of exportable
rows (resp. columns).
 
(fn TABLE INFO)
(defalias 'org-export-table-dimensions #[514 "\300C\301C\301C\302\303\304\305\306\307\310\n    \"\311\"\312\313%$\210\302\242\314\304\305\315\307\310    !\316\"\317\320%$\210\211\242\242B\207" [nil 0 org-element-map table-row make-byte-code 257 "\302\211;\203\303\304#\202\305A@\"\266\202\306=\205+\301\211\242T\240\210\300\242?\205+\300\240\207" vconcat vector [:type get-text-property 0 plist-get standard] 7 "\n\n(fn ROW)" table-cell "\300\211\242T\240\207" [] 3 "\n\n(fn _)"] 15 (#$ . 176008)])
#@321 Return address of a regular TABLE-CELL object.
 
TABLE-CELL is the cell considered.  INFO is a plist used as
a communication channel.
 
Address is a CONS cell (ROW . COLUMN), where ROW and COLUMN are
zero-based index.  Only exportable cells are considered.  The
function returns nil for other cells.
 
(fn TABLE-CELL INFO)
(defalias 'org-export-table-cell-address #[514 "\300\211;\203\301\302#\202\303A@\"\266\203\304\"\211\205<\211\302C\305\306\307\310\311\312\313     \"\314\"\315\316%\317%\262B\207" [:parent get-text-property 0 plist-get org-export-table-row-number org-element-map table-cell make-byte-code 257 "\211\300=\203    \301\242\207\301\211\242T\240\210\302\207" vconcat vector [nil] 3 "\n\n(fn CELL)" first-match] 16 (#$ . 176745)])
#@321 Return regular table-cell object at ADDRESS in TABLE.
 
Address is a CONS cell (ROW . COLUMN), where ROW and COLUMN are
zero-based index.  TABLE is a table type element.  INFO is
a plist used as a communication channel.
 
If no table-cell, among exportable cells, is found at ADDRESS,
return nil.
 
(fn ADDRESS TABLE INFO)
(defalias 'org-export-get-table-cell-at #[771 "A\300C\301@\300C\301\302\303\304\305\306\307        \"\310\"\311\312%    \313%\266\202\314\303\304\315\306\307        \"\316\"\317\320%\313%\207" [0 org-element-map table-row make-byte-code 257 "\302\211;\203\303\304#\202\305A@\"\266\202\306=\203\307\207\301\242\300U\203&\207\301\211\242T\240\210\307\207" vconcat vector [:type get-text-property 0 plist-get rule nil] 7 "\n\n(fn ROW)" first-match table-cell "\301\242\300U\203\207\301\211\242T\240\210\302\207" [nil] 3 "\n\n(fn CELL)"] 18 (#$ . 177511)])
#@756 Collect headlines in order to build a table of contents.
 
INFO is a plist used as a communication channel.
 
When optional argument N is an integer, it specifies the depth of
the table of contents.  Otherwise, it is set to the value of the
last headline level.  See `org-export-headline-levels' for more
information.
 
Optional argument SCOPE, when non-nil, is an element.  If it is
a headline, only children of SCOPE are collected.  Otherwise,
collect children of the headline containing provided element.  If
there is no such headline, collect all headlines.  In any case,
argument N becomes relative to the level of that headline.
 
Return a list of all exportable headlines as parsed elements.
Footnote sections are ignored.
 
(fn INFO &optional N SCOPE)
(defalias 'org-export-collect-headlines #[769 "\211\204 \300\301\"\2027\211\211:\204\211;\205\"\302\202\"\211@9\205\"\211@\262\303=\203-\211\2027\304!\2067\300\301\"\300\305\"\306!\204E\211\202p\211:\204T\211;\205\\\302\202\\\211@9\205\\\211@\262\307=\203g\202n\310\"\\^\311\211:\204{\312\202\210\211@9\203\207\211AA\202\210\211\262\303\313\314\315\316\317     \"\320\"\321\322%    $\207" [plist-get :parse-tree plain-text headline org-export-get-parent-headline :headline-levels wholenump org-data org-export-get-relative-level org-element-map nil make-byte-code 257 "\302\211;\203\303\304#\202\305A@\"\266\202?\205(\306\300\"\211\301X\205&\262\207" vconcat vector [:footnote-section-p get-text-property 0 plist-get org-export-get-relative-level] 7 "\n\n(fn HEADLINE)"] 16 (#$ . 178401)])
#@499 Collect referenceable elements of a determined type.
 
TYPE can be a symbol or a list of symbols specifying element
types to search.  Only elements with a caption are collected.
 
INFO is a plist used as a communication channel.
 
When non-nil, optional argument PREDICATE is a function accepting
one argument, an element of type TYPE.  It returns a non-nil
value when that element should be collected.
 
Return a list of all elements found, in order of appearance.
 
(fn TYPE INFO &optional PREDICATE)
(defalias 'org-export-collect-elements #[770 "\300\301\302\"\303\304\305\306\307!\310\"\311\312%$\207" [org-element-map plist-get :parse-tree make-byte-code 257 "\301\211;\203\302\303#\202\304A@\"\266\202\205%\300\203$\300!\205%\211\207" vconcat vector [:caption get-text-property 0 plist-get] 7 "\n\n(fn ELEMENT)"] 12 (#$ . 180002)])
#@134 Build a list of tables.
INFO is a plist used as a communication channel.
 
Return a list of table elements with a caption.
 
(fn INFO)
(defalias 'org-export-collect-tables #[257 "\300\301\"\207" [org-export-collect-elements table] 4 (#$ . 180860)])
#@465 Build a list of figures.
 
INFO is a plist used as a communication channel.  PREDICATE is
a function which accepts one argument: a paragraph element and
whose return value is non-nil when that element should be
collected.
 
A figure is a paragraph type element, with a caption, verifying
PREDICATE.  The latter has to be provided since a "figure" is
a vague concept that may depend on back-end.
 
Return a list of elements recognized as figures.
 
(fn INFO PREDICATE)
(defalias 'org-export-collect-figures #[514 "\300\301#\207" [org-export-collect-elements paragraph] 6 (#$ . 181115)])
#@143 Build a list of src blocks.
 
INFO is a plist used as a communication channel.
 
Return a list of src-block elements with a caption.
 
(fn INFO)
(defalias 'org-export-collect-listings #[257 "\300\301\"\207" [org-export-collect-elements src-block] 4 (#$ . 181706)])
#@513 Return an export back-end appropriate for table of contents entries.
 
PARENT is an export back-end the returned back-end should inherit
from.
 
By default, the back-end removes footnote references and targets.
It also changes links and radio targets into regular text.
TRANSCODERS optional argument, when non-nil, specifies additional
transcoders.  A transcoder follows the pattern (TYPE . FUNCTION)
where type is an element or object type and FUNCTION the function
transcoding it.
 
(fn PARENT &rest TRANSCODERS)
(defalias 'org-export-toc-entry-backend #[385 "\300\301\302B\303\304B\305\306B\307\302BF\"\310\311\312\312\211\211\211&\207" [append footnote-reference ignore link #[771 "\206\300\301\211;\203\302\303#\202\304A@\"\266\202\"\207" [org-export-data :raw-link get-text-property 0 plist-get] 10 "\n\n(fn L C I)"] radio-target #[771 "\207" [] 4 "\n\n(fn R C _)"] target record org-export-backend nil] 13 (#$ . 181976)])
(byte-code "\300\301\302\303#\300\207" [function-put org-export-toc-entry-backend lisp-indent-function 1] 4)
#@450 Smart quotes translations.
 
Alist whose CAR is a language string and CDR is an alist with
quote type as key and a plist associating various encodings to
their translation as value.
 
A quote type can be any symbol among `primary-opening',
`primary-closing', `secondary-opening', `secondary-closing' and
`apostrophe'.
 
Valid encodings include `:utf-8', `:html', `:latex' and
`:texinfo'.
 
If no translation is found, the quote character is left as-is.
(defconst org-export-smart-quotes-alist '(("ar" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "‹" :html "&lsaquo;" :latex "\\guilsinglleft{}" :texinfo "@guilsinglleft{}") (secondary-closing :utf-8 "›" :html "&rsaquo;" :latex "\\guilsinglright{}" :texinfo "@guilsinglright{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("da" (primary-opening :utf-8 "»" :html "&raquo;" :latex ">>" :texinfo "@guillemetright{}") (primary-closing :utf-8 "«" :html "&laquo;" :latex "<<" :texinfo "@guillemetleft{}") (secondary-opening :utf-8 "›" :html "&rsaquo;" :latex "\\frq{}" :texinfo "@guilsinglright{}") (secondary-closing :utf-8 "‹" :html "&lsaquo;" :latex "\\flq{}" :texinfo "@guilsingleft{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("de" (primary-opening :utf-8 "„" :html "&bdquo;" :latex "\"`" :texinfo "@quotedblbase{}") (primary-closing :utf-8 "“" :html "&ldquo;" :latex "\"'" :texinfo "@quotedblleft{}") (secondary-opening :utf-8 "‚" :html "&sbquo;" :latex "\\glq{}" :texinfo "@quotesinglbase{}") (secondary-closing :utf-8 "‘" :html "&lsquo;" :latex "\\grq{}" :texinfo "@quoteleft{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("en" (primary-opening :utf-8 "“" :html "&ldquo;" :latex "``" :texinfo "``") (primary-closing :utf-8 "”" :html "&rdquo;" :latex "''" :texinfo "''") (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;")) ("es" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "“" :html "&ldquo;" :latex "``" :texinfo "``") (secondary-closing :utf-8 "”" :html "&rdquo;" :latex "''" :texinfo "''") (apostrophe :utf-8 "’" :html "&rsquo;")) ("fr" (primary-opening :utf-8 "« " :html "&laquo;&nbsp;" :latex "\\og " :texinfo "@guillemetleft{}@tie{}") (primary-closing :utf-8 " »" :html "&nbsp;&raquo;" :latex "\\fg{}" :texinfo "@tie{}@guillemetright{}") (secondary-opening :utf-8 "« " :html "&laquo;&nbsp;" :latex "\\og " :texinfo "@guillemetleft{}@tie{}") (secondary-closing :utf-8 " »" :html "&nbsp;&raquo;" :latex "\\fg{}" :texinfo "@tie{}@guillemetright{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("is" (primary-opening :utf-8 "„" :html "&bdquo;" :latex "\"`" :texinfo "@quotedblbase{}") (primary-closing :utf-8 "“" :html "&ldquo;" :latex "\"'" :texinfo "@quotedblleft{}") (secondary-opening :utf-8 "‚" :html "&sbquo;" :latex "\\glq{}" :texinfo "@quotesinglbase{}") (secondary-closing :utf-8 "‘" :html "&lsquo;" :latex "\\grq{}" :texinfo "@quoteleft{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("no" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;")) ("nb" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;")) ("nn" (primary-opening :utf-8 "«" :html "&laquo;" :latex "\\guillemotleft{}" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex "\\guillemotright{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "‘" :html "&lsquo;" :latex "`" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "'" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;")) ("ru" (primary-opening :utf-8 "«" :html "&laquo;" :latex "{}<<" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex ">>{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "„" :html "&bdquo;" :latex "\\glqq{}" :texinfo "@quotedblbase{}") (secondary-closing :utf-8 "“" :html "&ldquo;" :latex "\\grqq{}" :texinfo "@quotedblleft{}") (apostrophe :utf-8 "’" :html: "&#39;")) ("sl" (primary-opening :utf-8 "«" :html "&laquo;" :latex "{}<<" :texinfo "@guillemetleft{}") (primary-closing :utf-8 "»" :html "&raquo;" :latex ">>{}" :texinfo "@guillemetright{}") (secondary-opening :utf-8 "„" :html "&bdquo;" :latex "\\glqq{}" :texinfo "@quotedblbase{}") (secondary-closing :utf-8 "“" :html "&ldquo;" :latex "\\grqq{}" :texinfo "@quotedblleft{}") (apostrophe :utf-8 "’" :html "&rsquo;")) ("sv" (primary-opening :utf-8 "”" :html "&rdquo;" :latex "’’" :texinfo "’’") (primary-closing :utf-8 "”" :html "&rdquo;" :latex "’’" :texinfo "’’") (secondary-opening :utf-8 "’" :html "&rsquo;" :latex "’" :texinfo "`") (secondary-closing :utf-8 "’" :html "&rsquo;" :latex "’" :texinfo "'") (apostrophe :utf-8 "’" :html "&rsquo;"))) (#$ . 183037))
#@116 Return smart quote status at the beginning of string S.
INFO is the current export state, as a plist.
 
(fn S INFO)
(defalias 'org-export--smart-quote-status #[514 "\301\211;\203\302\303#\202\304A@\"\266\202\304\305\"\206+\306\307\310\"\311\305#\210\211\262\312\313#\211\313=\204=\236A\202\252\314C\314C\315\316!\211\203e\211\211;\203Z\302\303#\202`\304A@\"\266\202\202\211:\204p\314\202}\211@9\203|\211AA\202}\211\262\262\317\320\321\322\323\324 \n\n#\325\"\326\327%    \314&\210\330\242#\210\242\236A\266\202\207" [org-element-recursive-objects :parent get-text-property 0 plist-get :smart-quote-cache make-hash-table :test eq plist-put gethash missing-data nil org-element-map org-element-secondary-p plain-text make-byte-code 257 "\303\304\305\306#\211\262\203\307\303\"\310\232\203)\301\211\242?\240\210\301\242\203%\311\202 \312\202 \301\242\2042\313\202 \303V\203@SO\202{\314\300\"\211\204L\304\202y\211;\203X\211\315\304O\202y\316\211;\203g\317\303#\202m\320A@\"\266\202\321>\203x\322\202y\323\262TGW\203\215T\324\\O\202\250\325\300\"\211\204\231\304\202\246\211;\203\245\211\303\326O\202\246\322\262;\203\264\305\327\"\202\267\330>\205\311\211;\203\306\305\331\"\202\311\211\322=;\203\325\305\331\"\202\330\322=\205\352;\203\347\305\332\"\202\352\333>\203\370\211\203\370\334\335!\202    \203\336\202    \211\203\337\202    \313\266\204B\262T\262\202\211\205#\302\237B\302\242B\240\207" vconcat vector [0 nil string-match "['\"]" match-string "\"" primary-opening primary-closing apostrophe org-export-get-previous-element -1 :post-blank get-text-property plist-get (0 nil) no-blank blank 2 org-export-get-next-element 1 "\\s\"\\|\\s-\\|\\s(" (blank nil) "\\w\\|\\s.\\|\\s_" "\\s-\\|\\s)\\|\\s.\\|\\s\"" (blank nil) error "Should not happen" secondary-opening secondary-closing] 10 "\n\n(fn TEXT)" puthash] 18 (#$ . 188842)])
#@500 Replace regular quotes with "smart" quotes in string S.
 
ENCODING is a symbol among `:html', `:latex', `:texinfo' and
`:utf-8'.  INFO is a plist used as a communication channel.
 
The function has to retrieve information about string
surroundings in parse tree.  It can only happen with an
unmodified string.  Thus, if S has already been through another
process, a non-nil ORIGINAL optional argument will provide that
original string.
 
Return the new string.
 
(fn S ENCODING INFO &optional ORIGINAL)
(defalias 'org-export-activate-smart-quotes #[1027 "\300\301\206\"!C\302\303\304\305\306\307\310\n\n    #\311\"\312\313%\314\315%\207" [copy-sequence org-export--smart-quote-status replace-regexp-in-string "['\"]" make-byte-code 257 "\304\302\242\302\211\242A\240\210\242\305\304\301\306\" \"A\236A\300\"\206\211\207" vconcat vector [org-export-smart-quotes-alist plist-get assoc :language] 7 "\n\n(fn MATCH)" nil t] 15 (#$ . 190811)])
#@96 Return BLOB parent headline or nil.
BLOB is the element or object being considered.
 
(fn BLOB)
(defalias 'org-export-get-parent-headline #[257 "\300\301\"\207" [org-element-lineage (headline)] 4 (#$ . 191761)])
#@95 Return first element containing OBJECT or nil.
OBJECT is the object to consider.
 
(fn OBJECT)
(defalias 'org-export-get-parent-element #[257 "\301\"\207" [org-element-all-elements org-element-lineage] 4 (#$ . 191979)])
#@113 Return OBJECT parent table or nil.
OBJECT is either a `table-cell' or `table-element' type object.
 
(fn OBJECT)
(defalias 'org-export-get-parent-table #[257 "\300\301\"\207" [org-element-lineage (table)] 4 (#$ . 192207)])
#@409 Return previous element or object.
 
BLOB is an element or object.  INFO is a plist used as
a communication channel.  Return previous exportable element or
object, a string, or nil.
 
When optional argument N is a positive integer, return a list
containing up to N siblings before BLOB, from farthest to
closest.  With any other non-nil value, return a list containing
all of them.
 
(fn BLOB INFO &optional N)
(defalias 'org-export-get-previous-element #[770 "\300!\301\211;\203\302\303#\202\304A@\"\266\203\2039\211;\203.\302\303#\2024\304A@\"\266\202\202R\211\211:\204C\305\202P\211@9\203O\211AA\202P\211\262\305\3062\256\307!>A\211\203\252\211@\211\304    \310\">\204\243\204{\311\306\"\210\202\243\312!\204\212\211B\262\202\243\303U\203\231\311\306\"\210\202\243S\262\211B\262A\266\202\202^\2620\207" [org-element-secondary-p :parent get-text-property 0 plist-get nil exit reverse :ignore-list throw wholenump] 13 (#$ . 192437)])
#@399 Return next element or object.
 
BLOB is an element or object.  INFO is a plist used as
a communication channel.  Return next exportable element or
object, a string, or nil.
 
When optional argument N is a positive integer, return a list
containing up to N siblings after BLOB, from closest to farthest.
With any other non-nil value, return a list containing all of
them.
 
(fn BLOB INFO &optional N)
(defalias 'org-export-get-next-element #[770 "\300!\301\211;\203\302\303#\202\304A@\"\266\203\203:\211;\203/\302\303#\2025\304A@\"\266\202\202S\211:\204D\305\202Q\211@9\203P\211AA\202Q\211\262>A\305\3062\255\211\203\250\211@\211\304    \307\">\204\241\204x\310\306\"\210\202\241\311!\204\207\211B\262\202\241\303U\203\227\310\306\237\"\210\202\241S\262\211B\262A\266\202\202[\237\2620\207" [org-element-secondary-p :parent get-text-property 0 plist-get nil exit :ignore-list throw wholenump] 13 (#$ . 193432)])
#@411 Dictionary for export engine.
 
Alist whose car is the string to translate and cdr is an alist
whose car is the language string and cdr is a plist whose
properties are possible charsets and values translated terms.
 
It is used as a database for `org-export-translate'.  Since this
function returns the string as-is if no translation was found,
the variable only needs to record values different from the
entry.
(defconst org-export-dictionary '(("%e %n: %c" ("fr" :default "%e %n : %c" :html "%e&nbsp;%n&nbsp;: %c")) ("Author" ("ar" :default "تأليف") ("ca" :default "Autor") ("cs" :default "Autor") ("da" :default "Forfatter") ("de" :default "Autor") ("eo" :html "A&#365;toro") ("es" :default "Autor") ("et" :default "Autor") ("fi" :html "Tekij&auml;") ("fr" :default "Auteur") ("hu" :default "Szerz&otilde;") ("is" :html "H&ouml;fundur") ("it" :default "Autore") ("ja" :default "著者" :html "&#33879;&#32773;") ("nl" :default "Auteur") ("no" :default "Forfatter") ("nb" :default "Forfatter") ("nn" :default "Forfattar") ("pl" :default "Autor") ("pt_BR" :default "Autor") ("ru" :html "&#1040;&#1074;&#1090;&#1086;&#1088;" :utf-8 "Автор") ("sl" :default "Avtor") ("sv" :html "F&ouml;rfattare") ("uk" :html "&#1040;&#1074;&#1090;&#1086;&#1088;" :utf-8 "Автор") ("zh-CN" :html "&#20316;&#32773;" :utf-8 "作者") ("zh-TW" :html "&#20316;&#32773;" :utf-8 "作者")) ("Continued from previous page" ("ar" :default "تتمة الصفحة السابقة") ("cs" :default "Pokračování z předchozí strany") ("de" :default "Fortsetzung von vorheriger Seite") ("es" :html "Contin&uacute;a de la p&aacute;gina anterior" :ascii "Continua de la pagina anterior" :default "Continúa de la página anterior") ("fr" :default "Suite de la page précédente") ("it" :default "Continua da pagina precedente") ("ja" :default "前ページからの続き") ("nl" :default "Vervolg van vorige pagina") ("pt" :default "Continuação da página anterior") ("ru" :html "(&#1055;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1080;&#1077;)" :utf-8 "(Продолжение)") ("sl" :default "Nadaljevanje s prejšnje strani")) ("Continued on next page" ("ar" :default "التتمة في الصفحة التالية") ("cs" :default "Pokračuje na další stránce") ("de" :default "Fortsetzung nächste Seite") ("es" :html "Contin&uacute;a en la siguiente p&aacute;gina" :ascii "Continua en la siguiente pagina" :default "Continúa en la siguiente página") ("fr" :default "Suite page suivante") ("it" :default "Continua alla pagina successiva") ("ja" :default "次ページに続く") ("nl" :default "Vervolg op volgende pagina") ("pt" :default "Continua na página seguinte") ("ru" :html "(&#1055;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1077;&#1085;&#1080;&#1077; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090;)" :utf-8 "(Продолжение следует)") ("sl" :default "Nadaljevanje na naslednji strani")) ("Created" ("cs" :default "Vytvořeno") ("sl" :default "Ustvarjeno")) ("Date" ("ar" :default "بتاريخ") ("ca" :default "Data") ("cs" :default "Datum") ("da" :default "Dato") ("de" :default "Datum") ("eo" :default "Dato") ("es" :default "Fecha") ("et" :html "Kuup&#228;ev" :utf-8 "Kuupäev") ("fi" :html "P&auml;iv&auml;m&auml;&auml;r&auml;") ("hu" :html "D&aacute;tum") ("is" :default "Dagsetning") ("it" :default "Data") ("ja" :default "日付" :html "&#26085;&#20184;") ("nl" :default "Datum") ("no" :default "Dato") ("nb" :default "Dato") ("nn" :default "Dato") ("pl" :default "Data") ("pt_BR" :default "Data") ("ru" :html "&#1044;&#1072;&#1090;&#1072;" :utf-8 "Дата") ("sl" :default "Datum") ("sv" :default "Datum") ("uk" :html "&#1044;&#1072;&#1090;&#1072;" :utf-8 "Дата") ("zh-CN" :html "&#26085;&#26399;" :utf-8 "日期") ("zh-TW" :html "&#26085;&#26399;" :utf-8 "日期")) ("Equation" ("ar" :default "معادلة") ("cs" :default "Rovnice") ("da" :default "Ligning") ("de" :default "Gleichung") ("es" :ascii "Ecuacion" :html "Ecuaci&oacute;n" :default "Ecuación") ("et" :html "V&#245;rrand" :utf-8 "Võrrand") ("fr" :ascii "Equation" :default "Équation") ("is" :default "Jafna") ("ja" :default "方程式") ("no" :default "Ligning") ("nb" :default "Ligning") ("nn" :default "Likning") ("pt_BR" :html "Equa&ccedil;&atilde;o" :default "Equação" :ascii "Equacao") ("ru" :html "&#1059;&#1088;&#1072;&#1074;&#1085;&#1077;&#1085;&#1080;&#1077;" :utf-8 "Уравнение") ("sl" :default "Enačba") ("sv" :default "Ekvation") ("zh-CN" :html "&#26041;&#31243;" :utf-8 "方程")) ("Figure" ("ar" :default "شكل") ("cs" :default "Obrázek") ("da" :default "Figur") ("de" :default "Abbildung") ("es" :default "Figura") ("et" :default "Joonis") ("is" :default "Mynd") ("ja" :default "図" :html "&#22259;") ("no" :default "Illustrasjon") ("nb" :default "Illustrasjon") ("nn" :default "Illustrasjon") ("pt_BR" :default "Figura") ("ru" :html "&#1056;&#1080;&#1089;&#1091;&#1085;&#1086;&#1082;" :utf-8 "Рисунок") ("sv" :default "Illustration") ("zh-CN" :html "&#22270;" :utf-8 "图")) ("Figure %d:" ("ar" :default "شكل %d:") ("cs" :default "Obrázek %d:") ("da" :default "Figur %d") ("de" :default "Abbildung %d:") ("es" :default "Figura %d:") ("et" :default "Joonis %d:") ("fr" :default "Figure %d :" :html "Figure&nbsp;%d&nbsp;:") ("is" :default "Mynd %d") ("ja" :default "図%d: " :html "&#22259;%d: ") ("no" :default "Illustrasjon %d") ("nb" :default "Illustrasjon %d") ("nn" :default "Illustrasjon %d") ("pt_BR" :default "Figura %d:") ("ru" :html "&#1056;&#1080;&#1089;. %d.:" :utf-8 "Рис. %d.:") ("sl" :default "Slika %d") ("sv" :default "Illustration %d") ("zh-CN" :html "&#22270;%d&nbsp;" :utf-8 "图%d ")) ("Footnotes" ("ar" :default "الهوامش") ("ca" :html "Peus de p&agrave;gina") ("cs" :default "Poznámky pod čarou") ("da" :default "Fodnoter") ("de" :html "Fu&szlig;noten" :default "Fußnoten") ("eo" :default "Piednotoj") ("es" :ascii "Nota al pie de pagina" :html "Nota al pie de p&aacute;gina" :default "Nota al pie de página") ("et" :html "Allm&#228;rkused" :utf-8 "Allmärkused") ("fi" :default "Alaviitteet") ("fr" :default "Notes de bas de page") ("hu" :html "L&aacute;bjegyzet") ("is" :html "Aftanm&aacute;lsgreinar") ("it" :html "Note a pi&egrave; di pagina") ("ja" :default "脚注" :html "&#33050;&#27880;") ("nl" :default "Voetnoten") ("no" :default "Fotnoter") ("nb" :default "Fotnoter") ("nn" :default "Fotnotar") ("pl" :default "Przypis") ("pt_BR" :html "Notas de Rodap&eacute;" :default "Notas de Rodapé" :ascii "Notas de Rodape") ("ru" :html "&#1057;&#1085;&#1086;&#1089;&#1082;&#1080;" :utf-8 "Сноски") ("sl" :default "Opombe") ("sv" :default "Fotnoter") ("uk" :html "&#1055;&#1088;&#1080;&#1084;&#1110;&#1090;&#1082;&#1080;" :utf-8 "Примітки") ("zh-CN" :html "&#33050;&#27880;" :utf-8 "脚注") ("zh-TW" :html "&#33139;&#35387;" :utf-8 "腳註")) ("List of Listings" ("ar" :default "قائمة بالبرامج") ("cs" :default "Seznam programů") ("da" :default "Programmer") ("de" :default "Programmauflistungsverzeichnis") ("es" :ascii "Indice de Listados de programas" :html "&Iacute;ndice de Listados de programas" :default "Índice de Listados de programas") ("et" :default "Loendite nimekiri") ("fr" :default "Liste des programmes") ("ja" :default "ソースコード目次") ("no" :default "Dataprogrammer") ("nb" :default "Dataprogrammer") ("ru" :html "&#1057;&#1087;&#1080;&#1089;&#1086;&#1082; &#1088;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1086;&#1082;" :utf-8 "Список распечаток") ("sl" :default "Seznam programskih izpisov") ("zh-CN" :html "&#20195;&#30721;&#30446;&#24405;" :utf-8 "代码目录")) ("List of Tables" ("ar" :default "قائمة بالجداول") ("cs" :default "Seznam tabulek") ("da" :default "Tabeller") ("de" :default "Tabellenverzeichnis") ("es" :ascii "Indice de tablas" :html "&Iacute;ndice de tablas" :default "Índice de tablas") ("et" :default "Tabelite nimekiri") ("fr" :default "Liste des tableaux") ("is" :default "Töfluskrá" :html "T&ouml;fluskr&aacute;") ("ja" :default "表目次") ("no" :default "Tabeller") ("nb" :default "Tabeller") ("nn" :default "Tabeller") ("pt_BR" :default "Índice de Tabelas" :ascii "Indice de Tabelas") ("ru" :html "&#1057;&#1087;&#1080;&#1089;&#1086;&#1082; &#1090;&#1072;&#1073;&#1083;&#1080;&#1094;" :utf-8 "Список таблиц") ("sl" :default "Seznam tabel") ("sv" :default "Tabeller") ("zh-CN" :html "&#34920;&#26684;&#30446;&#24405;" :utf-8 "表格目录")) ("Listing" ("ar" :default "برنامج") ("cs" :default "Program") ("da" :default "Program") ("de" :default "Programmlisting") ("es" :default "Listado de programa") ("et" :default "Loend") ("fr" :default "Programme" :html "Programme") ("ja" :default "ソースコード") ("no" :default "Dataprogram") ("nb" :default "Dataprogram") ("pt_BR" :default "Listagem") ("ru" :html "&#1056;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1082;&#1072;" :utf-8 "Распечатка") ("sl" :default "Izpis programa") ("zh-CN" :html "&#20195;&#30721;" :utf-8 "代码")) ("Listing %d:" ("ar" :default "برنامج %d:") ("cs" :default "Program %d:") ("da" :default "Program %d") ("de" :default "Programmlisting %d") ("es" :default "Listado de programa %d") ("et" :default "Loend %d") ("fr" :default "Programme %d :" :html "Programme&nbsp;%d&nbsp;:") ("ja" :default "ソースコード%d:") ("no" :default "Dataprogram %d") ("nb" :default "Dataprogram %d") ("pt_BR" :default "Listagem %d") ("ru" :html "&#1056;&#1072;&#1089;&#1087;&#1077;&#1095;&#1072;&#1090;&#1082;&#1072; %d.:" :utf-8 "Распечатка %d.:") ("sl" :default "Izpis programa %d") ("zh-CN" :html "&#20195;&#30721;%d&nbsp;" :utf-8 "代码%d ")) ("References" ("ar" :default "المراجع") ("cs" :default "Reference") ("fr" :ascii "References" :default "Références") ("de" :default "Quellen") ("es" :default "Referencias") ("sl" :default "Reference")) ("See figure %s" ("cs" :default "Viz obrázek %s") ("fr" :default "cf. figure %s" :html "cf.&nbsp;figure&nbsp;%s" :latex "cf.~figure~%s") ("sl" :default "Glej sliko %s")) ("See listing %s" ("cs" :default "Viz program %s") ("fr" :default "cf. programme %s" :html "cf.&nbsp;programme&nbsp;%s" :latex "cf.~programme~%s") ("sl" :default "Glej izpis programa %s")) ("See section %s" ("ar" :default "انظر قسم %s") ("cs" :default "Viz sekce %s") ("da" :default "jævnfør afsnit %s") ("de" :default "siehe Abschnitt %s") ("es" :ascii "Vea seccion %s" :html "Vea secci&oacute;n %s" :default "Vea sección %s") ("et" :html "Vaata peat&#252;kki %s" :utf-8 "Vaata peatükki %s") ("fr" :default "cf. section %s") ("ja" :default "セクション %s を参照") ("pt_BR" :html "Veja a se&ccedil;&atilde;o %s" :default "Veja a seção %s" :ascii "Veja a secao %s") ("ru" :html "&#1057;&#1084;. &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; %s" :utf-8 "См. раздел %s") ("sl" :default "Glej poglavje %d") ("zh-CN" :html "&#21442;&#35265;&#31532;%s&#33410;" :utf-8 "参见第%s节")) ("See table %s" ("cs" :default "Viz tabulka %s") ("fr" :default "cf. tableau %s" :html "cf.&nbsp;tableau&nbsp;%s" :latex "cf.~tableau~%s") ("sl" :default "Glej tabelo %s")) ("Table" ("ar" :default "جدول") ("cs" :default "Tabulka") ("de" :default "Tabelle") ("es" :default "Tabla") ("et" :default "Tabel") ("fr" :default "Tableau") ("is" :default "Tafla") ("ja" :default "表" :html "&#34920;") ("pt_BR" :default "Tabela") ("ru" :html "&#1058;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072;" :utf-8 "Таблица") ("zh-CN" :html "&#34920;" :utf-8 "表")) ("Table %d:" ("ar" :default "جدول %d:") ("cs" :default "Tabulka %d:") ("da" :default "Tabel %d") ("de" :default "Tabelle %d") ("es" :default "Tabla %d") ("et" :default "Tabel %d") ("fr" :default "Tableau %d :") ("is" :default "Tafla %d") ("ja" :default "表%d:" :html "&#34920;%d:") ("no" :default "Tabell %d") ("nb" :default "Tabell %d") ("nn" :default "Tabell %d") ("pt_BR" :default "Tabela %d") ("ru" :html "&#1058;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072; %d.:" :utf-8 "Таблица %d.:") ("sl" :default "Tabela %d") ("sv" :default "Tabell %d") ("zh-CN" :html "&#34920;%d&nbsp;" :utf-8 "表%d ")) ("Table of Contents" ("ar" :default "قائمة المحتويات") ("ca" :html "&Iacute;ndex") ("cs" :default "Obsah") ("da" :default "Indhold") ("de" :default "Inhaltsverzeichnis") ("eo" :default "Enhavo") ("es" :ascii "Indice" :html "&Iacute;ndice" :default "Índice") ("et" :default "Sisukord") ("fi" :html "Sis&auml;llysluettelo") ("fr" :ascii "Sommaire" :default "Table des matières") ("hu" :html "Tartalomjegyz&eacute;k") ("is" :default "Efnisyfirlit") ("it" :default "Indice") ("ja" :default "目次" :html "&#30446;&#27425;") ("nl" :default "Inhoudsopgave") ("no" :default "Innhold") ("nb" :default "Innhold") ("nn" :default "Innhald") ("pl" :html "Spis tre&#x015b;ci") ("pt_BR" :html "&Iacute;ndice" :utf8 "Índice" :ascii "Indice") ("ru" :html "&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1077;" :utf-8 "Содержание") ("sl" :default "Kazalo") ("sv" :html "Inneh&aring;ll") ("uk" :html "&#1047;&#1084;&#1110;&#1089;&#1090;" :utf-8 "Зміст") ("zh-CN" :html "&#30446;&#24405;" :utf-8 "目录") ("zh-TW" :html "&#30446;&#37636;" :utf-8 "目錄")) ("Unknown reference" ("ar" :default "مرجع غير معرّف") ("da" :default "ukendt reference") ("de" :default "Unbekannter Verweis") ("es" :default "Referencia desconocida") ("et" :default "Tundmatu viide") ("fr" :ascii "Destination inconnue" :default "Référence inconnue") ("ja" :default "不明な参照先") ("pt_BR" :default "Referência desconhecida" :ascii "Referencia desconhecida") ("ru" :html "&#1053;&#1077;&#1080;&#1079;&#1074;&#1077;&#1089;&#1090;&#1085;&#1072;&#1103; &#1089;&#1089;&#1099;&#1083;&#1082;&#1072;" :utf-8 "Неизвестная ссылка") ("sl" :default "Neznana referenca") ("zh-CN" :html "&#26410;&#30693;&#24341;&#29992;" :utf-8 "未知引用"))) (#$ . 194404))
#@381 Translate string S according to language specification.
 
ENCODING is a symbol among `:ascii', `:html', `:latex', `:latin1'
and `:utf-8'.  INFO is a plist used as a communication channel.
 
Translation depends on `:language' property.  Return the
translated string.  If no translation is found, try to fall back
to `:default' encoding.  If it fails, return S.
 
(fn S ENCODING INFO)
(defalias 'org-export-translate #[771 "\301\302\"\303\303\"A\"A\301\"\206\301\304\"\206\207" [org-export-dictionary plist-get :language assoc :default] 9 (#$ . 208353)])
#@443 Call function FUN on the results returned by BODY evaluation.
 
FUN is an anonymous function of one argument.  BODY evaluation
happens in an asynchronous process, from a buffer which is an
exact copy of the current one.
 
Use `org-export-add-to-stack' in FUN in order to register results
in the stack.
 
This is a low level function.  See also `org-export-to-buffer'
and `org-export-to-file' for more specialized functions.
 
(fn FUN &rest BODY)
(defalias 'org-export-async-start '(macro . #[385 "\300\301!\300\302!\300\303!\300\304!\300\305!\306\307\310\311B\312B\313BE\314\315\316\317    \320\321\322\323\324\325\326CBD\327\330\331\326BDD\257CBFDE\332\333\334B\f\335\336\337\340\341\342BBB\343\340\344EFEDE\345\346\nD\347F\310\350DC\351\320\352\353\310\354\355\356\357\360\361\362\363\326CBDEEEEECBEEFFE\207" [make-symbol "--process" "--temp-file" "--copy-fun" "--proc-buffer" "--coding" with-temp-message "Initializing asynchronous export process" let ((org-export--generate-copy-script (current-buffer))) ((make-temp-file "org-export-process")) (buffer-file-coding-system) with-temp-file insert format ";; -*- coding: %s; -*-\n%S" \` with-temp-buffer (when org-export-async-debug '(setq debug-on-error t)) (setq kill-emacs-hook nil org-babel-confirm-evaluate-answer-no t) (require 'ox) funcall \, (restore-buffer-modified-p nil) print progn let* (process-connection-type nil) ((generate-new-buffer-name "*Org Export Process*")) apply #'start-process append list "org-export-process" ((expand-file-name invocation-name invocation-directory) "--batch") (if org-export-async-init-file (list "-Q" "-l" org-export-async-init-file) (list "-l" user-init-file)) "-l" org-export-add-to-stack get-buffer nil handler set-process-sentinel lambda (p status) ((proc-buffer (process-buffer p))) when (eq (process-status p) 'exit) unwind-protect (if (zerop (process-exit-status p)) (unwind-protect (let ((results (with-current-buffer proc-buffer (goto-char (point-max)) (backward-sexp) (read (current-buffer))))) (funcall (\, handler) results)) (unless org-export-async-debug (and (get-buffer proc-buffer) (kill-buffer proc-buffer)))) (org-export-add-to-stack proc-buffer nil p) (ding) (message "Process `%s' exited abnormally" p)) unless org-export-async-debug delete-file] 33 (#$ . 208923)]))
(byte-code "\300\301\302\303#\304\301\305\306#\207" [function-put org-export-async-start lisp-indent-function 1 put edebug-form-spec t] 5)
#@1324 Call `org-export-as' with output to a specified buffer.
 
BACKEND is either an export back-end, as returned by, e.g.,
`org-export-create-backend', or a symbol referring to
a registered back-end.
 
BUFFER is the name of the output buffer.  If it already exists,
it will be erased first, otherwise, it will be created.
 
A non-nil optional argument ASYNC means the process should happen
asynchronously.  The resulting buffer should then be accessible
through the `org-export-stack' interface.  When ASYNC is nil, the
buffer is displayed if `org-export-show-temporary-export-buffer'
is non-nil.
 
Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY and
EXT-PLIST are similar to those used in `org-export-as', which
see.
 
Optional argument POST-PROCESS is a function which should accept
no argument.  It is always called within the current process,
from BUFFER, with point at its beginning.  Export back-ends can
use it to set a major mode there, e.g,
 
  (defun org-latex-export-as-latex
    (&optional async subtreep visible-only body-only ext-plist)
    (interactive)
    (org-export-to-buffer \='latex "*Org LATEX Export*"
      async subtreep visible-only body-only ext-plist (lambda () (LaTeX-mode))))
 
This function returns BUFFER.
 
(fn BACKEND BUFFER &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST POST-PROCESS)
(defalias 'org-export-to-buffer #[2050 "\203\f\306\307C\310\311\312\313\314\"\315\"\316$\216\203$\211\317 \240\210\320\321\"\210\322p!\323\324!\325\326\327!!\310\311\330\313\314!\331\"\332$\216r\211q\210\333\334\335\336\337\340\341\fD\342\343\344\345\346D\346D\257DD\257#c\210)r\211q\210\347\307\211\307\311%\210*\266\307\326\350!\351\352\353\324\354\n \"\355F\f\203\222\356\357\fE\202\225\357 D\357D#\"\360\361!\307#\210\362\363\364\325D\365\366\300\346DE\367\370\360\371\346DE\372\341DD\257E\373\362\374\375\376\377\201A\201B\201C\201D\201B\375\201E\341\201FBBE\201GBB\201HBBB\201I\201J\201KDEEEEE\"\262)\266\202\266\203)\207\345%\325!\201L!\2032\201M \2032\201N!\210rq\210\201O \210\211c\210eb\210\201P!\203N \210)@\203Z\201Q!\210\207" [buffer-file-coding-system process-connection-type invocation-name invocation-directory org-export-async-init-file user-init-file "Initializing asynchronous export process" nil make-byte-code 0 "\300\205\301\242\203\302\303\301\242\"\207\302\304!\207" vconcat vector [message #1="%s" nil] 3 current-message message #1# org-export--generate-copy-script make-temp-file "org-export-process" get-buffer-create generate-new-buffer-name " *temp file*" "\301\300!\205    \302\300!\207" [buffer-name kill-buffer] 2 format ";; -*- coding: %s; -*-\n%S" with-temp-buffer (when org-export-async-debug '(setq debug-on-error t)) (setq kill-emacs-hook nil org-babel-confirm-evaluate-answer-no t) (require 'ox) funcall (restore-buffer-modified-p nil) print progn org-export-as quote write-region "*Org Export Process*" apply start-process append expand-file-name "--batch" "-Q" "-l" org-export-add-to-stack get-buffer lambda (output) with-current-buffer (erase-buffer) setq (insert output) (goto-char (point-min)) (current-buffer) ignore-errors set-process-sentinel (p status) let ((proc-buffer (process-buffer p))) when org-export-show-temporary-export-buffer (eq (process-status p) 'exit) unwind-protect if (zerop (process-exit-status p)) ((results (with-current-buffer proc-buffer (goto-char (point-max)) (backward-sexp) (read (current-buffer))))) (results) ((unless org-export-async-debug (and (get-buffer proc-buffer) (kill-buffer proc-buffer)))) ((org-export-add-to-stack proc-buffer nil p) (ding) (message "Process `%s' exited abnormally" p)) unless org-export-async-debug delete-file org-string-nw-p org-export--copy-to-kill-ring-p org-kill-new erase-buffer functionp switch-to-buffer-other-window] 33 (#$ . 211374)])
(byte-code "\300\301\302\303#\300\207" [function-put org-export-to-buffer lisp-indent-function 2] 4)
#@1288 Call `org-export-as' with output to a specified file.
 
BACKEND is either an export back-end, as returned by, e.g.,
`org-export-create-backend', or a symbol referring to
a registered back-end.  FILE is the name of the output file, as
a string.
 
A non-nil optional argument ASYNC means the process should happen
asynchronously.  The resulting buffer will then be accessible
through the `org-export-stack' interface.
 
Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY and
EXT-PLIST are similar to those used in `org-export-as', which
see.
 
Optional argument POST-PROCESS is called with FILE as its
argument and happens asynchronously when ASYNC is non-nil.  It
has to return a file name, or nil.  Export back-ends can use this
to send the output file through additional processing, e.g,
 
  (defun org-latex-export-to-latex
    (&optional async subtreep visible-only body-only ext-plist)
    (interactive)
    (let ((outfile (org-export-output-file-name ".tex" subtreep)))
      (org-export-to-file \='latex outfile
        async subtreep visible-only body-only ext-plist
        (lambda (file) (org-latex-compile file)))
 
The function returns either a file name returned by POST-PROCESS,
or FILE.
 
(fn BACKEND FILE &optional ASYNC SUBTREEP VISIBLE-ONLY BODY-ONLY EXT-PLIST POST-PROCESS)
(defalias 'org-export-to-file #[2050 "\306!\204 \307\310!\207\311\312D\"\206    \203@\313\314C\315\316\317\320\321\"\322\"\323$\216\203<\211\324 \240\210\325\326\"\210\327p!\330\331!    \332\333\334!!\315\316\335\320\321!\336\"\337$\216r\211q\210\340\341\342\343\344\345\346\fD\347\350\351\352\353\354\355D\355D\257DC\342\356\352\357\355DDC\360!DEE\361\362\346\355D!EDEFDD\257#c\210)r\211q\210\363\314\211\314\316%\210*\266\314\333\364!\365\366\367\331\370 \f\"\371F \203\315\372\373 E\202\321\373@D\373D#\"\374\375!\314#\210\376\377\374\201A\355DEE\201B\376\201C\352\201D\201E\201F\201G\201H\201I\201G\352\201J\346\201KBBE\201LBB\201MBBB\201N\201O\201PDEEEEE\"\262)\266\202\266\203)\266\202\202\232\354\n%\201Q\201R!r\211q\210\315\316\335\320\321!\201S\"\337$\216c\210/\360 !\210+\210\201T \203\207\201U!\203\207\201V!\210\201W!\203\226\n!\206\230    \262\207" [org-export-coding-system buffer-file-coding-system process-connection-type invocation-name invocation-directory org-export-async-init-file file-writable-p error "Output file not writable" org-combine-plists :output-file "Initializing asynchronous export process" nil make-byte-code 0 "\300\205\301\242\203\302\303\301\242\"\207\302\304!\207" vconcat vector [message #1="%s" nil] 3 current-message message #1# org-export--generate-copy-script make-temp-file "org-export-process" get-buffer-create generate-new-buffer-name " *temp file*" "\301\300!\205    \302\300!\207" [buffer-name kill-buffer] 2 format ";; -*- coding: %s; -*-\n%S" with-temp-buffer (when org-export-async-debug '(setq debug-on-error t)) (setq kill-emacs-hook nil org-babel-confirm-evaluate-answer-no t) (require 'ox) funcall (restore-buffer-modified-p nil) print progn let output org-export-as quote (insert output) coding-system-for-write write-file or ignore-errors write-region "*Org Export Process*" apply start-process append expand-file-name "--batch" "-Q" "-l" org-export-add-to-stack get-buffer lambda (file) user-init-file (expand-file-name file) set-process-sentinel (p status) ((proc-buffer (process-buffer p))) when (eq (process-status p) 'exit) unwind-protect if (zerop (process-exit-status p)) ((results (with-current-buffer proc-buffer (goto-char (point-max)) (backward-sexp) (read (current-buffer))))) (results) ((unless org-export-async-debug (and (get-buffer proc-buffer) (kill-buffer proc-buffer)))) ((org-export-add-to-stack proc-buffer nil p) (ding) (message "Process `%s' exited abnormally" p)) unless org-export-async-debug delete-file generate-new-buffer " *temp*" [buffer-name kill-buffer] org-export--copy-to-kill-ring-p org-string-nw-p org-kill-new functionp] 37 (#$ . 215352)])
(byte-code "\300\301\302\303#\300\207" [function-put org-export-to-file lisp-indent-function 2] 4)
#@442 Return output file's name according to buffer specifications.
 
EXTENSION is a string representing the output file extension,
with the leading dot.
 
With a non-nil optional argument SUBTREEP, try to determine
output file's name by looking for "EXPORT_FILE_NAME" property
of subtree at point.
 
When optional argument PUB-DIR is set, use it as the publishing
directory.
 
Return file name as a string.
 
(fn EXTENSION &optional SUBTREEP PUB-DIR)
(defalias 'org-export-output-file-name #[769 "\301\302 !\303\203\304\305\306\307#\206\235e\212\310!\203\311!q\210\212\214~\210\211\206'`b\210\3122x\313\314\315\305\313#\205v\316 \211\211:\204H\211;\205P\317\202P\211@9\205P\211@\262\320=\203r\321\312\322\211;\203h\323\324#\202n\325A@\"\266\202\"\210\210\202/)0+\262\206\235\203\210\326!\206\235\327\330\305\211\211\331\332\333\334\335!\336\"\337\340%&!P\203\256\341!\326!P\202\271\342!\203\270\211\202\271\211\203\313\343\"\203\313\211P\202\314\211\207" [case-fold-search buffer-file-name buffer-base-buffer file-name-sans-extension org-entry-get nil "EXPORT_FILE_NAME" selective markerp marker-buffer :found t re-search-forward "^[     ]*#\\+EXPORT_FILE_NAME:[     ]+\\S-" org-element-at-point plain-text keyword throw :value get-text-property 0 plist-get file-name-nondirectory read-file-name "Output file: " make-byte-code 257 "\300\301\302\"\230\207" vconcat vector [file-name-extension t] 5 "\n\n(fn N)" file-name-as-directory file-name-absolute-p file-equal-p] 17 (#$ . 219487)])
#@336 Add a new result to export stack if not present already.
 
SOURCE is a buffer or a file name containing export results.
BACKEND is a symbol representing export back-end used to generate
it.
 
Entries already pointing to SOURCE and unavailable entries are
removed beforehand.  Return the new stack.
 
(fn SOURCE BACKEND &optional PROCESS)
(defalias 'org-export-add-to-stack #[770 "\206\301 E\302!B\211\207" [org-export-stack-contents current-time org-export-stack-remove] 6 (#$ . 221019)])
#@61 Menu for asynchronous export results and running processes.
(defalias 'org-export-stack #[0 "\300\301!r\211q\210\302 \210\303\304!\210)\305!\266\306\307!\207" [get-buffer-create "*Org Export Stack*" org-export-stack-mode tabulated-list-print t pop-to-buffer message "Type \"q\" to quit, \"?\" for help"] 3 (#$ . 221518) nil])
#@39 Remove all entries from export stack.
(defalias 'org-export-stack-clear #[0 "\301\211\207" [org-export-stack-contents nil] 2 (#$ . 221852) nil])
#@27 Refresh the export stack.
(defalias 'org-export-stack-refresh #[0 "\300\301!\207" [tabulated-list-print t] 2 (#$ . 222004) nil])
#@126 Remove export results at point from stack.
If optional argument SOURCE is non-nil, remove it instead.
 
(fn &optional SOURCE)
(defalias 'org-export-stack-remove #[256 "\211\206\301 \302\303\304\305\306\307!\310\"\311\312%\"\211\207" [org-export-stack-contents org-export--stack-source-at-point cl-remove-if make-byte-code 257 "\211@\300\232\207" vconcat vector [] 3 "\n\n(fn EL)"] 9 (#$ . 222140) nil])
#@142 View export results at point in stack.
With an optional prefix argument IN-EMACS, force viewing files
within Emacs.
 
(fn &optional IN-EMACS)
(defalias 'org-export-stack-view #[256 "\300 \301!\203\302\303!!\202 \304!\203\302!\202 \305\"\207" [org-export--stack-source-at-point processp org-switch-to-buffer-other-window process-buffer bufferp org-open-file] 5 (#$ . 222555) "P"])
#@30 Keymap for Org Export Stack.
(defvar org-export-stack-mode-map (byte-code "\301 \302\"\210\303\304\305#\210\303\306\305#\210\303\307\305#\210\303\310\311#\210\303\312\311#\210\303\313\311#\210\303\314\315#\210\303\316\317#\210\303\320\317#\210\303\321\322#\210\211\207" [tabulated-list-mode-map make-sparse-keymap set-keymap-parent define-key " " next-line "" [down] "" previous-line "" [up] "C" org-export-stack-clear "v" org-export-stack-view " " "d" org-export-stack-remove] 5) (#$ . 222952))
(defvar org-export-stack-mode-hook nil)
(byte-code "\300\301N\204\f\302\300\301\303#\210\304\305!\204\302\305\306\307#\210\300\207" [org-export-stack-mode-hook variable-documentation put "Hook run after entering Org-Stack mode.\nNo problems result if this variable is not bound.\n`add-hook' automatically binds it.  (This is true for all hook variables.)" boundp org-export-stack-mode-map definition-name org-export-stack-mode] 4)
(defvar org-export-stack-mode-map (make-sparse-keymap))
(byte-code "\301\302N\204\303\301\302\304\305!#\210\306\307!\204\303\307\310\311#\210\312\313 !\210\307\302N\204-\303\307\302\304\314!#\210\306\300!\204B\303\300\310\311#\210\315\316\300\317\"\210!\210\300\302N\204P\303\300\302\304\320!#\210\303\311\321\322#\207" [org-export-stack-mode-abbrev-table org-export-stack-mode-map variable-documentation put purecopy "Keymap for `org-export-stack-mode'." boundp org-export-stack-mode-syntax-table definition-name org-export-stack-mode (lambda (#1=#:def-tmp-var) (defvar org-export-stack-mode-syntax-table #1#)) make-syntax-table "Syntax table for `org-export-stack-mode'." (lambda (#1#) (defvar org-export-stack-mode-abbrev-table #1#)) define-abbrev-table nil "Abbrev table for `org-export-stack-mode'." derived-mode-parent tabulated-list-mode] 5)
#@670 Mode for displaying asynchronous export stack.
 
Type `\[org-export-stack]' to visualize the asynchronous export
stack.
 
In an Org Export Stack buffer, use \<org-export-stack-mode-map>`\[org-export-stack-view]' to view export output
on current line, `\[org-export-stack-remove]' to remove it from the stack and `\[org-export-stack-clear]' to clear
stack completely.
 
Removing entries in a stack buffer does not affect files
or buffers, only display.
 
\{org-export-stack-mode-map}
 
In addition to any hooks its parent mode `tabulated-list-mode' might have run,
this mode runs the hook `org-export-stack-mode-hook', as the final or penultimate step
during initialization.
(defalias 'org-export-stack-mode #[0 "\306\300!\210\307\310 \210\311\312\310\313N\203\314\311\313\310\313N#\210\315 !\204'\316 \317 \"\210\320\f!\211\2035\211\321 =\203;\322\f\323 \"\210\210\324 \325\"\204R ,=\204R\326 \325,C#\210\327 !\210\330\f!\210 ,\331\332\333\334E\335\336\307E\337\340\341E\342\343\341E$-\332\341B.\344/\345\346\344\341\307$\210\345\347\350\341\307$\210\351 \210)\352\353!\207" [delay-mode-hooks major-mode mode-name org-export-stack-mode-map org-export-stack-mode-syntax-table org-export-stack-mode-abbrev-table make-local-variable t tabulated-list-mode org-export-stack-mode "Org-Stack" mode-class put keymap-parent set-keymap-parent current-local-map char-table-parent standard-syntax-table set-char-table-parent syntax-table abbrev-table-get :parents abbrev-table-put use-local-map set-syntax-table vector "#" 4 org-export--stack-num-predicate "Back-End" 12 "Age" 6 nil "Source" 0 org-export--stack-generate add-hook tabulated-list-revert-hook post-command-hook org-export-stack-refresh tabulated-list-init-header run-mode-hooks org-export-stack-mode-hook local-abbrev-table tabulated-list-format tabulated-list-sort-key tabulated-list-entries] 7 (#$ . 224761) nil])
#@155 Generate the asynchronous export stack for display.
Unavailable sources are removed from the list.  Return a list
appropriate for `tabulated-list-print'.
(defalias 'org-export--stack-generate #[0 "\301\302\"\303C\304\305\306\307\310\311!\312\"\313\314%\"\207" [org-export-stack-contents cl-remove-if-not #[257 "\300\3018!\203\302\303\3018!!\207\211@\304!\203\302!\202!\305!\207" [processp 2 buffer-live-p process-buffer bufferp file-exists-p] 5 "\n\n(fn EL)"] 0 mapcar make-byte-code 257 "\211@\211\301\302\300\211\242T\240!A@\203\303A@!\202\304\3058\306!\203,\303\307!!\2024\310\311\312\313!!\"\262;\203?\202C\314!$D\207" vconcat vector [vector number-to-string symbol-name "" 2 processp process-status format-seconds "%h:%.2m" float-time time-since buffer-name] 12 "\n\n(fn ENTRY)"] 8 (#$ . 226647)])
#@12 
 
(fn A B)
(defalias 'org-export--stack-num-predicate #[514 "\300A@\301H!\300A@\301H!W\207" [string-to-number 0] 6 (#$ . 227491)])
#@54 Return source from export results at point in stack.
(defalias 'org-export--stack-source-at-point #[0 "\302\212\211\203    \211b\210n\203\303\202\304\305\303`\"\\)\262S8@\211\204(\306\307!\202U\211;\2031\211\2024\310!\212\311 \210\312\313!\314Q\315\316!)\262)\203N\202S\306\317\320!!\262\207" [org-export-stack-contents inhibit-changing-match-data nil 1 0 count-lines error "Source unavailable, please refresh buffer" buffer-name beginning-of-line ".* +" regexp-quote "$" t looking-at substitute-command-keys "Source unavailable; type `\\[org-export-stack-refresh]' to refresh buffer"] 5 (#$ . 227630)])
#@722 Export dispatcher for Org mode.
 
It provides an access to common export related tasks in a buffer.
Its interface comes in two flavors: standard and expert.
 
While both share the same set of bindings, only the former
displays the valid keys associations in a dedicated buffer.
Scrolling (resp. line-wise motion) in this buffer is done with
SPC and DEL (resp. C-n and C-p) keys.
 
Set variable `org-export-dispatch-use-expert-ui' to switch to one
flavor or the other.
 
When ARG is `\[universal-argument]', repeat the last export action, with the same
set of options used back then, on the current buffer.
 
When ARG is `\[universal-argument] \[universal-argument]', display the asynchronous export stack.
 
(fn &optional ARG)
(defalias 'org-export-dispatch #[256 "\211\306\232\203\n\307\2029\211\203\2069\310 \311\312\313\314\315!\316\"\317$\216\320\216    `\321p!\223\210\322\n \2050\323D\324\f#\211*\262\211@A\325>\204H    \324\211\223\210\326\267\202\217\327\324\"\202\310\330 \202\310\331\332>\323>\"\202\310\333\332>\323>\"\202\310\334\335\336\337 \324\340$ \"\332>\323>#\202\310\341\332>\323>\"\202\310\212\203\251\342    !\321p!=\203\244    b\210\202\251    \324\211\223\210\323>\205\261\340\325>\205\270\340\343>\205\277\340\344>\205\306\340$)\207" [org-export-dispatch-last-action org-export-dispatch-last-position org-export-initial-scope org-export-in-background org-export-dispatch-use-expert-ui org-publish-project-alist (16) (stack) current-window-configuration make-byte-code 0 "\301\300!\207" vconcat vector [set-window-configuration] 2 #[0 "\300\301!\205    \302\301!\207" [get-buffer "*Org Export Dispatcher*" kill-buffer] 2] org-base-buffer org-export--dispatch-ui async nil subtree #s(hash-table size 6 test eql rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (template 78 stack 85 publish-current-file 90 publish-current-project 101 publish-choose-project 112 publish-all 132)) org-export-insert-default-template org-export-stack org-publish-current-file force org-publish-current-project org-publish assoc completing-read "Publish project: " t org-publish-all marker-buffer visible body] 11 (#$ . 228258) "P"])
#@743 Handle interface for `org-export-dispatch'.
 
OPTIONS is a list containing current interactive options set for
export.  It can contain any of the following symbols:
`body'    toggles a body-only export
`subtree' restricts export to current subtree
`visible' restricts export to visible part of buffer.
`force'   force publishing files.
`async'   use asynchronous export process
 
FIRST-KEY is the key pressed to select the first level menu.  It
is nil when this menu hasn't been selected yet.
 
EXPERTP, when non-nil, triggers expert UI.  In that case, no help
buffer is provided, but indications about currently active
options are given in the prompt.  Moreover, [?] allows switching
back to standard interface.
 
(fn OPTIONS FIRST-KEY EXPERTP)
(defalias 'org-export--dispatch-ui #[771 "\303\304\305\306\307!\310\"\311\312%\313\314\211\315\316\317\320\"\"\321\"\322\"\323\324\325\311\326\257\2045\317\327\"\330!\331!\266\202\202_\316\211\203T\211@\211@    =\203M\332\3238\"\262A\266\202\2027\314\317\327\"\333\"\262\262\244\334=\203n\335\336\337\340F\202u?\205u\334C\244\341\342D\244\205\200\343C\244\344C\244?\205W\345\346\347\350\"\351 >\203\233\352\202\234\353!\354\350\"\355 >\203\257\352\202\260\353!    \356\350\"    \357>\203\303\360\202\304\361! \362\350\" \363>\203\327\352\202\330\353! \364\350\" \365>\203\353\352\202\354\353!& \316C\366\303\367\370\306\307 \"\371\"\372\373%\374#\262\345\375\376!\377\334\"    \201@\334\"\n\201A\334\" \201B\334\"&\345\201C\201D\350\"    \201E\350\"#\345\201F    \201G\350\"\f\203Q\201H\202T\201I#\260?\205_\201J\205\322\345\201K\351 >\203y\201L\350\"\202|\201L\355\f>\203\215\201M\350\"\202\220\201M\357 >\203\241    \201N\350\"\202\244\201N\363>\203\263\n\377\350\"\202\264\377\365>\203\305 \201B\350\"\202\310\201B\366\201O \374#&\203\351\201P   &\202M\201Q\201R!\204\201S \210\201T\201U\201R!!\210\316\201V\201W\201X !\210\201Y\201Z\201[\"\210r\201Rq\210\201\\ \201] \210c\210\201^\316\"\266)\201_ \210\201P   &\207" [org-export-registered-backends cursor-type header-line-format make-byte-code 513 "\211\301=\204\f\211\300=\203\302\303\304#\207\207" vconcat vector [t propertize face org-warning] 6 "\n\n(fn KEY &optional ACCESS-KEY)" #[257 "\300\301\302#\207" [propertize face font-lock-variable-name-face] 5 "\n\n(fn VALUE)"] sort delq nil mapcar org-export-backend-menu #[514 "A@A@\247\203\211\247\203W\202\211\247\205\300\207" [t] 6 "\n\n(fn A B)"] car-less-than-car 2 22 19 1 car copy-sequence delete-dups append < 80 102 112 120 97 38 35 63 113 format "[%s] Body only:    %s           [%s] Visible only:     %s\n[%s] Export scope: %s       [%s] Force publishing: %s\n[%s] Async export: %s\n\n" "C-b" t body "On " "Off" "C-v" visible "C-s" subtree "Subtree" "Buffer " "C-f" force "C-a" async mapconcat 257 "\211@\211\301\242=?\205\301\240\210\302\303\300\304!!A@#\3058\306!?\205G\307C\310\311\312\313\314\315\300\n#\316\"\317\320%\321#\322\242\305\"\323U\205D\324P\262\262P\207" [format "\n[%s] %s\n" char-to-string 2 functionp -1 mapconcat make-byte-code 257 "\302\211\242T\240\210\303\304\302\242\305\"\306U\203\307\202\310\300\311@!\301\"A@#\207" vconcat vector [format mod 2 0 "    [%s] %-26s" "[%s] %s\n" char-to-string] 6 "\n\n(fn SUB-ENTRY)" #1="" mod 0 "\n"] 14 "\n\n(fn ENTRY)" #1# "\n[%s] Publish\n    [%s] Current file              [%s] Current project\n    [%s] Choose project            [%s] All projects\n\n\n" "P" "f" "p" "x" "a" "[%s] Export stack                  [%s] Insert template\n" "&" "#" "[%s] %s" "q" "Main menu" "Exit" "Export command: " "Export command (C-%s%s%s%s%s) [%s]: " "b" "v" "s" #[257 "\211\300W?\205\n\301!\207" [27 char-to-string] 3 "\n\n(fn K)"] org-export--dispatch-action get-buffer "*Org Export Dispatcher*" delete-other-windows org-switch-to-buffer-other-window get-buffer-create "Use SPC, DEL, C-n or C-p to navigate." set-syntax-table copy-syntax-table modify-syntax-entry 91 "w" window-start erase-buffer set-window-start org-fit-window-to-buffer] 21 (#$ . 230427)])
#@517 Read a character from command input and act accordingly.
 
PROMPT is the displayed prompt, as a string.  ALLOWED-KEYS is
a list of characters available at a given step in the process.
ENTRIES is a list of menu entries.  OPTIONS, FIRST-KEY and
EXPERTP are the same as defined in `org-export--dispatch-ui',
which see.
 
Toggle export options when required.  Otherwise, return value is
a list with action as CAR and a list of interactive export
options as CDR.
 
(fn PROMPT ALLOWED-KEYS ENTRIES OPTIONS FIRST-KEY EXPERTP)
(defalias 'org-export--dispatch-action #[1542 "\300\301!\211\262\203\226\204\226\211\302>\203\226\211\303\267\202\304d!\2044\3051,\306\307!0\2020\210\202\210\202\310\311!\210\312\307!\210\202\304e!\204X\3131P\314\307!0\202T\210\202\210\202\310\315!\210\312\307!\210\202\304d!\204p\306\300!\210\202\310\311!\210\312\307!\210\202\304e!\204\210\314\300!\210\202\310\315!\210\312\307!\210\202\202\211>\204\264\316 \210\204\254\310\317!\210\312\307!\210\320#\202\237\211\321=\203\314\204\304\322\323!\202\237\320\300#\202\237\211\324=\203\332\320\300#\202\237\211\325=\203\350\326\327>B\202\237\211\330=\203\362\331\202\237\211\332>\203/\320\333\267\202\334\202\335\202\327\202\336\202\337\202\300\211>\203#\340\"\202'\211B\262#\202\237\204>\341\342\2368!\203\232\204K\342\2368\202\225\343=\203k\211\344\267\202g\345\202\225\346\202\225\347\202\225\350\202\225\300\202\225\3512\225\236\235\211\205\222\211@\3428\236\211\203\212\352\351\3428\"\210\210A\266\202\202t\2620B\202\237\320#\207" [nil read-char-exclusive (14 16 32 127) #s(hash-table size 4 test eql rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (14 27 16 63 32 99 127 123)) pos-visible-in-window-p (error) scroll-up 1 message "End of buffer" sit-for (error) scroll-down "Beginning of buffer" ding "Invalid key" org-export--dispatch-ui 113 error "Export aborted" 63 35 template subtree 38 (stack) (2 22 19 6 1) #s(hash-table size 5 test eql rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (2 255 22 259 19 263 6 267 1 271)) body visible force async remq functionp 2 80 #s(hash-table size 4 test eql rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (102 343 112 347 120 351 97 355)) publish-current-file publish-current-project publish-choose-project publish-all found throw] 14 (#$ . 234602)])
(provide 'ox)