org-export.el 163 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314
  1. ;;; org-export.el --- Generic Export Engine For Org
  2. ;; Copyright (C) 2012 Free Software Foundation, Inc.
  3. ;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; This program is free software; you can redistribute it and/or modify
  6. ;; it under the terms of the GNU General Public License as published by
  7. ;; the Free Software Foundation, either version 3 of the License, or
  8. ;; (at your option) any later version.
  9. ;; This program is distributed in the hope that it will be useful,
  10. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. ;; GNU General Public License for more details.
  13. ;; You should have received a copy of the GNU General Public License
  14. ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. ;;; Commentary:
  16. ;;
  17. ;; This library implements a generic export engine for Org, built on
  18. ;; its syntactical parser: Org Elements.
  19. ;;
  20. ;; Besides that parser, the generic exporter is made of three distinct
  21. ;; parts:
  22. ;;
  23. ;; - The communication channel consists in a property list, which is
  24. ;; created and updated during the process. Its use is to offer
  25. ;; every piece of information, would it be about initial environment
  26. ;; or contextual data, all in a single place. The exhaustive list
  27. ;; of properties is given in "The Communication Channel" section of
  28. ;; this file.
  29. ;;
  30. ;; - The transcoder walks the parse tree, ignores or treat as plain
  31. ;; text elements and objects according to export options, and
  32. ;; eventually calls back-end specific functions to do the real
  33. ;; transcoding, concatenating their return value along the way.
  34. ;;
  35. ;; - The filter system is activated at the very beginning and the very
  36. ;; end of the export process, and each time an element or an object
  37. ;; has been converted. It is the entry point to fine-tune standard
  38. ;; output from back-end transcoders. See "The Filter System"
  39. ;; section for more information.
  40. ;;
  41. ;; The core function is `org-export-as'. It returns the transcoded
  42. ;; buffer as a string.
  43. ;;
  44. ;; A back-end is defined through one mandatory variable: his
  45. ;; translation table. Its name is always
  46. ;; `org-BACKEND-translate-alist' where BACKEND stands for the name
  47. ;; chosen for the back-end. Its value is an alist whose keys are
  48. ;; elements and objects types and values translator functions.
  49. ;;
  50. ;; These functions should return a string without any trailing space,
  51. ;; or nil. They must accept three arguments: the object or element
  52. ;; itself, its contents or nil when it isn't recursive and the
  53. ;; property list used as a communication channel.
  54. ;;
  55. ;; Contents, when not nil, are stripped from any global indentation
  56. ;; (although the relative one is preserved). They also always end
  57. ;; with a single newline character.
  58. ;;
  59. ;; If, for a given type, no function is found, that element or object
  60. ;; type will simply be ignored, along with any blank line or white
  61. ;; space at its end. The same will happen if the function returns the
  62. ;; nil value. If that function returns the empty string, the type
  63. ;; will be ignored, but the blank lines or white spaces will be kept.
  64. ;;
  65. ;; In addition to element and object types, one function can be
  66. ;; associated to the `template' symbol and another one to the
  67. ;; `plain-text' symbol.
  68. ;;
  69. ;; The former returns the final transcoded string, and can be used to
  70. ;; add a preamble and a postamble to document's body. It must accept
  71. ;; two arguments: the transcoded string and the property list
  72. ;; containing export options.
  73. ;;
  74. ;; The latter, when defined, is to be called on every text not
  75. ;; recognized as an element or an object. It must accept two
  76. ;; arguments: the text string and the information channel. It is an
  77. ;; appropriate place to protect special chars relative to the
  78. ;; back-end.
  79. ;;
  80. ;; Optionally, a back-end can support specific buffer keywords and
  81. ;; OPTION keyword's items by setting `org-BACKEND-filters-alist'
  82. ;; variable. Refer to `org-export-options-alist' documentation for
  83. ;; more information about its value.
  84. ;;
  85. ;; If the new back-end shares most properties with another one,
  86. ;; `org-export-define-derived-backend' can be used to simplify the
  87. ;; process.
  88. ;;
  89. ;; Any back-end can define its own variables. Among them, those
  90. ;; customizables should belong to the `org-export-BACKEND' group.
  91. ;;
  92. ;; Tools for common tasks across back-ends are implemented in the
  93. ;; penultimate part of this file. A dispatcher for standard back-ends
  94. ;; is provided in the last one.
  95. ;;; Code:
  96. (eval-when-compile (require 'cl))
  97. (require 'org-element)
  98. (declare-function org-e-ascii-export-to-ascii "org-e-ascii"
  99. (&optional subtreep visible-only body-only ext-plist pub-dir))
  100. (declare-function org-e-html-export-to-html "org-e-html"
  101. (&optional subtreep visible-only body-only ext-plist pub-dir))
  102. (declare-function org-e-latex-export-to-latex "org-e-latex"
  103. (&optional subtreep visible-only body-only ext-plist pub-dir))
  104. (declare-function org-e-latex-export-to-pdf "org-e-latex"
  105. (&optional subtreep visible-only body-only ext-plist pub-dir))
  106. (declare-function org-e-odt-export-to-odt "org-e-odt"
  107. (&optional subtreep visible-only body-only ext-plist pub-dir))
  108. (declare-function org-e-publish "org-e-publish" (project &optional force))
  109. (declare-function org-e-publish-all "org-e-publish" (&optional force))
  110. (declare-function org-e-publish-current-file "org-e-publish" (&optional force))
  111. (declare-function org-e-publish-current-project "org-e-publish"
  112. (&optional force))
  113. (declare-function org-export-blocks-preprocess "org-exp-blocks")
  114. (defvar org-e-publish-project-alist)
  115. (defvar org-table-number-fraction)
  116. (defvar org-table-number-regexp)
  117. ;;; Internal Variables
  118. ;;
  119. ;; Among internal variables, the most important is
  120. ;; `org-export-options-alist'. This variable define the global export
  121. ;; options, shared between every exporter, and how they are acquired.
  122. (defconst org-export-max-depth 19
  123. "Maximum nesting depth for headlines, counting from 0.")
  124. (defconst org-export-options-alist
  125. '((:author "AUTHOR" nil user-full-name t)
  126. (:creator "CREATOR" nil org-export-creator-string)
  127. (:date "DATE" nil nil t)
  128. (:description "DESCRIPTION" nil nil newline)
  129. (:email "EMAIL" nil user-mail-address t)
  130. (:exclude-tags "EXCLUDE_TAGS" nil org-export-exclude-tags split)
  131. (:headline-levels nil "H" org-export-headline-levels)
  132. (:keywords "KEYWORDS" nil nil space)
  133. (:language "LANGUAGE" nil org-export-default-language t)
  134. (:preserve-breaks nil "\\n" org-export-preserve-breaks)
  135. (:section-numbers nil "num" org-export-with-section-numbers)
  136. (:select-tags "SELECT_TAGS" nil org-export-select-tags split)
  137. (:time-stamp-file nil "timestamp" org-export-time-stamp-file)
  138. (:title "TITLE" nil nil space)
  139. (:with-archived-trees nil "arch" org-export-with-archived-trees)
  140. (:with-author nil "author" org-export-with-author)
  141. (:with-clocks nil "c" org-export-with-clocks)
  142. (:with-creator nil "creator" org-export-with-creator)
  143. (:with-drawers nil "d" org-export-with-drawers)
  144. (:with-email nil "email" org-export-with-email)
  145. (:with-emphasize nil "*" org-export-with-emphasize)
  146. (:with-entities nil "e" org-export-with-entities)
  147. (:with-fixed-width nil ":" org-export-with-fixed-width)
  148. (:with-footnotes nil "f" org-export-with-footnotes)
  149. (:with-plannings nil "p" org-export-with-planning)
  150. (:with-priority nil "pri" org-export-with-priority)
  151. (:with-special-strings nil "-" org-export-with-special-strings)
  152. (:with-sub-superscript nil "^" org-export-with-sub-superscripts)
  153. (:with-toc nil "toc" org-export-with-toc)
  154. (:with-tables nil "|" org-export-with-tables)
  155. (:with-tags nil "tags" org-export-with-tags)
  156. (:with-tasks nil "tasks" org-export-with-tasks)
  157. (:with-timestamps nil "<" org-export-with-timestamps)
  158. (:with-todo-keywords nil "todo" org-export-with-todo-keywords))
  159. "Alist between export properties and ways to set them.
  160. The CAR of the alist is the property name, and the CDR is a list
  161. like (KEYWORD OPTION DEFAULT BEHAVIOUR) where:
  162. KEYWORD is a string representing a buffer keyword, or nil. Each
  163. property defined this way can also be set, during subtree
  164. export, through an headline property named after the keyword
  165. with the \"EXPORT_\" prefix (i.e. DATE keyword and EXPORT_DATE
  166. property).
  167. OPTION is a string that could be found in an #+OPTIONS: line.
  168. DEFAULT is the default value for the property.
  169. BEHAVIOUR determine how Org should handle multiple keywords for
  170. the same property. It is a symbol among:
  171. nil Keep old value and discard the new one.
  172. t Replace old value with the new one.
  173. `space' Concatenate the values, separating them with a space.
  174. `newline' Concatenate the values, separating them with
  175. a newline.
  176. `split' Split values at white spaces, and cons them to the
  177. previous list.
  178. KEYWORD and OPTION have precedence over DEFAULT.
  179. All these properties should be back-end agnostic. For back-end
  180. specific properties, define a similar variable named
  181. `org-BACKEND-options-alist', replacing BACKEND with the name of
  182. the appropriate back-end. You can also redefine properties
  183. there, as they have precedence over these.")
  184. (defconst org-export-special-keywords
  185. '("SETUP_FILE" "OPTIONS" "MACRO")
  186. "List of in-buffer keywords that require special treatment.
  187. These keywords are not directly associated to a property. The
  188. way they are handled must be hard-coded into
  189. `org-export-get-inbuffer-options' function.")
  190. (defconst org-export-filters-alist
  191. '((:filter-bold . org-export-filter-bold-functions)
  192. (:filter-babel-call . org-export-filter-babel-call-functions)
  193. (:filter-center-block . org-export-filter-center-block-functions)
  194. (:filter-clock . org-export-filter-clock-functions)
  195. (:filter-code . org-export-filter-code-functions)
  196. (:filter-comment . org-export-filter-comment-functions)
  197. (:filter-comment-block . org-export-filter-comment-block-functions)
  198. (:filter-drawer . org-export-filter-drawer-functions)
  199. (:filter-dynamic-block . org-export-filter-dynamic-block-functions)
  200. (:filter-entity . org-export-filter-entity-functions)
  201. (:filter-example-block . org-export-filter-example-block-functions)
  202. (:filter-export-block . org-export-filter-export-block-functions)
  203. (:filter-export-snippet . org-export-filter-export-snippet-functions)
  204. (:filter-final-output . org-export-filter-final-output-functions)
  205. (:filter-fixed-width . org-export-filter-fixed-width-functions)
  206. (:filter-footnote-definition . org-export-filter-footnote-definition-functions)
  207. (:filter-footnote-reference . org-export-filter-footnote-reference-functions)
  208. (:filter-headline . org-export-filter-headline-functions)
  209. (:filter-horizontal-rule . org-export-filter-horizontal-rule-functions)
  210. (:filter-inline-babel-call . org-export-filter-inline-babel-call-functions)
  211. (:filter-inline-src-block . org-export-filter-inline-src-block-functions)
  212. (:filter-inlinetask . org-export-filter-inlinetask-functions)
  213. (:filter-italic . org-export-filter-italic-functions)
  214. (:filter-item . org-export-filter-item-functions)
  215. (:filter-keyword . org-export-filter-keyword-functions)
  216. (:filter-latex-environment . org-export-filter-latex-environment-functions)
  217. (:filter-latex-fragment . org-export-filter-latex-fragment-functions)
  218. (:filter-line-break . org-export-filter-line-break-functions)
  219. (:filter-link . org-export-filter-link-functions)
  220. (:filter-macro . org-export-filter-macro-functions)
  221. (:filter-paragraph . org-export-filter-paragraph-functions)
  222. (:filter-parse-tree . org-export-filter-parse-tree-functions)
  223. (:filter-plain-list . org-export-filter-plain-list-functions)
  224. (:filter-plain-text . org-export-filter-plain-text-functions)
  225. (:filter-planning . org-export-filter-planning-functions)
  226. (:filter-property-drawer . org-export-filter-property-drawer-functions)
  227. (:filter-quote-block . org-export-filter-quote-block-functions)
  228. (:filter-quote-section . org-export-filter-quote-section-functions)
  229. (:filter-radio-target . org-export-filter-radio-target-functions)
  230. (:filter-section . org-export-filter-section-functions)
  231. (:filter-special-block . org-export-filter-special-block-functions)
  232. (:filter-src-block . org-export-filter-src-block-functions)
  233. (:filter-statistics-cookie . org-export-filter-statistics-cookie-functions)
  234. (:filter-strike-through . org-export-filter-strike-through-functions)
  235. (:filter-subscript . org-export-filter-subscript-functions)
  236. (:filter-superscript . org-export-filter-superscript-functions)
  237. (:filter-table . org-export-filter-table-functions)
  238. (:filter-table-cell . org-export-filter-table-cell-functions)
  239. (:filter-table-row . org-export-filter-table-row-functions)
  240. (:filter-target . org-export-filter-target-functions)
  241. (:filter-timestamp . org-export-filter-timestamp-functions)
  242. (:filter-underline . org-export-filter-underline-functions)
  243. (:filter-verbatim . org-export-filter-verbatim-functions)
  244. (:filter-verse-block . org-export-filter-verse-block-functions))
  245. "Alist between filters properties and initial values.
  246. The key of each association is a property name accessible through
  247. the communication channel. Its value is a configurable global
  248. variable defining initial filters.
  249. This list is meant to install user specified filters. Back-end
  250. developers may install their own filters using
  251. `org-BACKEND-filters-alist', where BACKEND is the name of the
  252. considered back-end. Filters defined there will always be
  253. prepended to the current list, so they always get applied
  254. first.")
  255. (defconst org-export-default-inline-image-rule
  256. `(("file" .
  257. ,(format "\\.%s\\'"
  258. (regexp-opt
  259. '("png" "jpeg" "jpg" "gif" "tiff" "tif" "xbm"
  260. "xpm" "pbm" "pgm" "ppm") t))))
  261. "Default rule for link matching an inline image.
  262. This rule applies to links with no description. By default, it
  263. will be considered as an inline image if it targets a local file
  264. whose extension is either \"png\", \"jpeg\", \"jpg\", \"gif\",
  265. \"tiff\", \"tif\", \"xbm\", \"xpm\", \"pbm\", \"pgm\" or \"ppm\".
  266. See `org-export-inline-image-p' for more information about
  267. rules.")
  268. ;;; User-configurable Variables
  269. ;;
  270. ;; Configuration for the masses.
  271. ;;
  272. ;; They should never be accessed directly, as their value is to be
  273. ;; stored in a property list (cf. `org-export-options-alist').
  274. ;; Back-ends will read their value from there instead.
  275. (defgroup org-export nil
  276. "Options for exporting Org mode files."
  277. :tag "Org Export"
  278. :group 'org)
  279. (defgroup org-export-general nil
  280. "General options for export engine."
  281. :tag "Org Export General"
  282. :group 'org-export)
  283. (defcustom org-export-with-archived-trees 'headline
  284. "Whether sub-trees with the ARCHIVE tag should be exported.
  285. This can have three different values:
  286. nil Do not export, pretend this tree is not present.
  287. t Do export the entire tree.
  288. `headline' Only export the headline, but skip the tree below it.
  289. This option can also be set with the #+OPTIONS line,
  290. e.g. \"arch:nil\"."
  291. :group 'org-export-general
  292. :type '(choice
  293. (const :tag "Not at all" nil)
  294. (const :tag "Headline only" 'headline)
  295. (const :tag "Entirely" t)))
  296. (defcustom org-export-with-author t
  297. "Non-nil means insert author name into the exported file.
  298. This option can also be set with the #+OPTIONS line,
  299. e.g. \"author:nil\"."
  300. :group 'org-export-general
  301. :type 'boolean)
  302. (defcustom org-export-with-clocks nil
  303. "Non-nil means export CLOCK keywords.
  304. This option can also be set with the #+OPTIONS line,
  305. e.g. \"c:t\"."
  306. :group 'org-export-general
  307. :type 'boolean)
  308. (defcustom org-export-with-creator 'comment
  309. "Non-nil means the postamble should contain a creator sentence.
  310. The sentence can be set in `org-export-creator-string' and
  311. defaults to \"Generated by Org mode XX in Emacs XXX.\".
  312. If the value is `comment' insert it as a comment."
  313. :group 'org-export-general
  314. :type '(choice
  315. (const :tag "No creator sentence" nil)
  316. (const :tag "Sentence as a comment" 'comment)
  317. (const :tag "Insert the sentence" t)))
  318. (defcustom org-export-creator-string
  319. (format "Generated by Org mode %s in Emacs %s."
  320. (if (fboundp 'org-version) (org-version) "(Unknown)")
  321. emacs-version)
  322. "String to insert at the end of the generated document."
  323. :group 'org-export-general
  324. :type '(string :tag "Creator string"))
  325. (defcustom org-export-with-drawers t
  326. "Non-nil means export contents of standard drawers.
  327. When t, all drawers are exported. This may also be a list of
  328. drawer names to export. This variable doesn't apply to
  329. properties drawers.
  330. This option can also be set with the #+OPTIONS line,
  331. e.g. \"d:nil\"."
  332. :group 'org-export-general
  333. :type '(choice
  334. (const :tag "All drawers" t)
  335. (const :tag "None" nil)
  336. (repeat :tag "Selected drawers"
  337. (string :tag "Drawer name"))))
  338. (defcustom org-export-with-email nil
  339. "Non-nil means insert author email into the exported file.
  340. This option can also be set with the #+OPTIONS line,
  341. e.g. \"email:t\"."
  342. :group 'org-export-general
  343. :type 'boolean)
  344. (defcustom org-export-with-emphasize t
  345. "Non-nil means interpret *word*, /word/, and _word_ as emphasized text.
  346. If the export target supports emphasizing text, the word will be
  347. typeset in bold, italic, or underlined, respectively. Not all
  348. export backends support this.
  349. This option can also be set with the #+OPTIONS line, e.g. \"*:nil\"."
  350. :group 'org-export-general
  351. :type 'boolean)
  352. (defcustom org-export-exclude-tags '("noexport")
  353. "Tags that exclude a tree from export.
  354. All trees carrying any of these tags will be excluded from
  355. export. This is without condition, so even subtrees inside that
  356. carry one of the `org-export-select-tags' will be removed.
  357. This option can also be set with the #+EXCLUDE_TAGS: keyword."
  358. :group 'org-export-general
  359. :type '(repeat (string :tag "Tag")))
  360. (defcustom org-export-with-fixed-width t
  361. "Non-nil means lines starting with \":\" will be in fixed width font.
  362. This can be used to have pre-formatted text, fragments of code
  363. etc. For example:
  364. : ;; Some Lisp examples
  365. : (while (defc cnt)
  366. : (ding))
  367. will be looking just like this in also HTML. See also the QUOTE
  368. keyword. Not all export backends support this.
  369. This option can also be set with the #+OPTIONS line, e.g. \"::nil\"."
  370. :group 'org-export-translation
  371. :type 'boolean)
  372. (defcustom org-export-with-footnotes t
  373. "Non-nil means Org footnotes should be exported.
  374. This option can also be set with the #+OPTIONS line,
  375. e.g. \"f:nil\"."
  376. :group 'org-export-general
  377. :type 'boolean)
  378. (defcustom org-export-headline-levels 3
  379. "The last level which is still exported as a headline.
  380. Inferior levels will produce itemize lists when exported. Note
  381. that a numeric prefix argument to an exporter function overrides
  382. this setting.
  383. This option can also be set with the #+OPTIONS line, e.g. \"H:2\"."
  384. :group 'org-export-general
  385. :type 'integer)
  386. (defcustom org-export-default-language "en"
  387. "The default language for export and clocktable translations, as a string.
  388. This may have an association in
  389. `org-clock-clocktable-language-setup'."
  390. :group 'org-export-general
  391. :type '(string :tag "Language"))
  392. (defcustom org-export-preserve-breaks nil
  393. "Non-nil means preserve all line breaks when exporting.
  394. Normally, in HTML output paragraphs will be reformatted.
  395. This option can also be set with the #+OPTIONS line,
  396. e.g. \"\\n:t\"."
  397. :group 'org-export-general
  398. :type 'boolean)
  399. (defcustom org-export-with-entities t
  400. "Non-nil means interpret entities when exporting.
  401. For example, HTML export converts \\alpha to &alpha; and \\AA to
  402. &Aring;.
  403. For a list of supported names, see the constant `org-entities'
  404. and the user option `org-entities-user'.
  405. This option can also be set with the #+OPTIONS line,
  406. e.g. \"e:nil\"."
  407. :group 'org-export-general
  408. :type 'boolean)
  409. (defcustom org-export-with-planning nil
  410. "Non-nil means include planning info in export.
  411. This option can also be set with the #+OPTIONS: line,
  412. e.g. \"p:t\"."
  413. :group 'org-export-general
  414. :type 'boolean)
  415. (defcustom org-export-with-priority nil
  416. "Non-nil means include priority cookies in export.
  417. When nil, remove priority cookies for export.
  418. This option can also be set with the #+OPTIONS line,
  419. e.g. \"pri:t\"."
  420. :group 'org-export-general
  421. :type 'boolean)
  422. (defcustom org-export-with-section-numbers t
  423. "Non-nil means add section numbers to headlines when exporting.
  424. When set to an integer n, numbering will only happen for
  425. headlines whose relative level is higher or equal to n.
  426. This option can also be set with the #+OPTIONS line,
  427. e.g. \"num:t\"."
  428. :group 'org-export-general
  429. :type 'boolean)
  430. (defcustom org-export-select-tags '("export")
  431. "Tags that select a tree for export.
  432. If any such tag is found in a buffer, all trees that do not carry
  433. one of these tags will be ignored during export. Inside trees
  434. that are selected like this, you can still deselect a subtree by
  435. tagging it with one of the `org-export-exclude-tags'.
  436. This option can also be set with the #+SELECT_TAGS: keyword."
  437. :group 'org-export-general
  438. :type '(repeat (string :tag "Tag")))
  439. (defcustom org-export-with-special-strings t
  440. "Non-nil means interpret \"\-\", \"--\" and \"---\" for export.
  441. When this option is turned on, these strings will be exported as:
  442. Org HTML LaTeX
  443. -----+----------+--------
  444. \\- &shy; \\-
  445. -- &ndash; --
  446. --- &mdash; ---
  447. ... &hellip; \ldots
  448. This option can also be set with the #+OPTIONS line,
  449. e.g. \"-:nil\"."
  450. :group 'org-export-general
  451. :type 'boolean)
  452. (defcustom org-export-with-sub-superscripts t
  453. "Non-nil means interpret \"_\" and \"^\" for export.
  454. When this option is turned on, you can use TeX-like syntax for
  455. sub- and superscripts. Several characters after \"_\" or \"^\"
  456. will be considered as a single item - so grouping with {} is
  457. normally not needed. For example, the following things will be
  458. parsed as single sub- or superscripts.
  459. 10^24 or 10^tau several digits will be considered 1 item.
  460. 10^-12 or 10^-tau a leading sign with digits or a word
  461. x^2-y^3 will be read as x^2 - y^3, because items are
  462. terminated by almost any nonword/nondigit char.
  463. x_{i^2} or x^(2-i) braces or parenthesis do grouping.
  464. Still, ambiguity is possible - so when in doubt use {} to enclose
  465. the sub/superscript. If you set this variable to the symbol
  466. `{}', the braces are *required* in order to trigger
  467. interpretations as sub/superscript. This can be helpful in
  468. documents that need \"_\" frequently in plain text.
  469. This option can also be set with the #+OPTIONS line,
  470. e.g. \"^:nil\"."
  471. :group 'org-export-general
  472. :type '(choice
  473. (const :tag "Interpret them" t)
  474. (const :tag "Curly brackets only" {})
  475. (const :tag "Do not interpret them" nil)))
  476. (defcustom org-export-with-toc t
  477. "Non-nil means create a table of contents in exported files.
  478. The TOC contains headlines with levels up
  479. to`org-export-headline-levels'. When an integer, include levels
  480. up to N in the toc, this may then be different from
  481. `org-export-headline-levels', but it will not be allowed to be
  482. larger than the number of headline levels. When nil, no table of
  483. contents is made.
  484. This option can also be set with the #+OPTIONS line,
  485. e.g. \"toc:nil\" or \"toc:3\"."
  486. :group 'org-export-general
  487. :type '(choice
  488. (const :tag "No Table of Contents" nil)
  489. (const :tag "Full Table of Contents" t)
  490. (integer :tag "TOC to level")))
  491. (defcustom org-export-with-tables t
  492. "If non-nil, lines starting with \"|\" define a table.
  493. For example:
  494. | Name | Address | Birthday |
  495. |-------------+----------+-----------|
  496. | Arthur Dent | England | 29.2.2100 |
  497. This option can also be set with the #+OPTIONS line, e.g. \"|:nil\"."
  498. :group 'org-export-general
  499. :type 'boolean)
  500. (defcustom org-export-with-tags t
  501. "If nil, do not export tags, just remove them from headlines.
  502. If this is the symbol `not-in-toc', tags will be removed from
  503. table of contents entries, but still be shown in the headlines of
  504. the document.
  505. This option can also be set with the #+OPTIONS line,
  506. e.g. \"tags:nil\"."
  507. :group 'org-export-general
  508. :type '(choice
  509. (const :tag "Off" nil)
  510. (const :tag "Not in TOC" not-in-toc)
  511. (const :tag "On" t)))
  512. (defcustom org-export-with-tasks t
  513. "Non-nil means include TODO items for export.
  514. This may have the following values:
  515. t include tasks independent of state.
  516. todo include only tasks that are not yet done.
  517. done include only tasks that are already done.
  518. nil remove all tasks before export
  519. list of keywords keep only tasks with these keywords"
  520. :group 'org-export-general
  521. :type '(choice
  522. (const :tag "All tasks" t)
  523. (const :tag "No tasks" nil)
  524. (const :tag "Not-done tasks" todo)
  525. (const :tag "Only done tasks" done)
  526. (repeat :tag "Specific TODO keywords"
  527. (string :tag "Keyword"))))
  528. (defcustom org-export-time-stamp-file t
  529. "Non-nil means insert a time stamp into the exported file.
  530. The time stamp shows when the file was created.
  531. This option can also be set with the #+OPTIONS line,
  532. e.g. \"timestamp:nil\"."
  533. :group 'org-export-general
  534. :type 'boolean)
  535. (defcustom org-export-with-timestamps t
  536. "Non nil means allow timestamps in export.
  537. It can be set to `active', `inactive', t or nil, in order to
  538. export, respectively, only active timestamps, only inactive ones,
  539. all of them or none.
  540. This option can also be set with the #+OPTIONS line, e.g.
  541. \"<:nil\"."
  542. :group 'org-export-general
  543. :type '(choice
  544. (const :tag "All timestamps" t)
  545. (const :tag "Only active timestamps" active)
  546. (const :tag "Only inactive timestamps" inactive)
  547. (const :tag "No timestamp" nil)))
  548. (defcustom org-export-with-todo-keywords t
  549. "Non-nil means include TODO keywords in export.
  550. When nil, remove all these keywords from the export."
  551. :group 'org-export-general
  552. :type 'boolean)
  553. (defcustom org-export-allow-BIND 'confirm
  554. "Non-nil means allow #+BIND to define local variable values for export.
  555. This is a potential security risk, which is why the user must
  556. confirm the use of these lines."
  557. :group 'org-export-general
  558. :type '(choice
  559. (const :tag "Never" nil)
  560. (const :tag "Always" t)
  561. (const :tag "Ask a confirmation for each file" confirm)))
  562. (defcustom org-export-snippet-translation-alist nil
  563. "Alist between export snippets back-ends and exporter back-ends.
  564. This variable allows to provide shortcuts for export snippets.
  565. For example, with a value of '\(\(\"h\" . \"e-html\"\)\), the
  566. HTML back-end will recognize the contents of \"@@h:<b>@@\" as
  567. HTML code while every other back-end will ignore it."
  568. :group 'org-export-general
  569. :type '(repeat
  570. (cons
  571. (string :tag "Shortcut")
  572. (string :tag "Back-end"))))
  573. (defcustom org-export-coding-system nil
  574. "Coding system for the exported file."
  575. :group 'org-export-general
  576. :type 'coding-system)
  577. (defcustom org-export-copy-to-kill-ring t
  578. "Non-nil means exported stuff will also be pushed onto the kill ring."
  579. :group 'org-export-general
  580. :type 'boolean)
  581. (defcustom org-export-initial-scope 'buffer
  582. "The initial scope when exporting with `org-export-dispatch'.
  583. This variable can be either set to `buffer' or `subtree'."
  584. :group 'org-export-general
  585. :type '(choice
  586. (const :tag "Export current buffer" 'buffer)
  587. (const :tag "Export current subtree" 'subtree)))
  588. (defcustom org-export-show-temporary-export-buffer t
  589. "Non-nil means show buffer after exporting to temp buffer.
  590. When Org exports to a file, the buffer visiting that file is ever
  591. shown, but remains buried. However, when exporting to
  592. a temporary buffer, that buffer is popped up in a second window.
  593. When this variable is nil, the buffer remains buried also in
  594. these cases."
  595. :group 'org-export-general
  596. :type 'boolean)
  597. (defcustom org-export-dispatch-use-expert-ui nil
  598. "Non-nil means using a non-intrusive `org-export-dispatch'.
  599. In that case, no help buffer is displayed. Though, an indicator
  600. for current export scope is added to the prompt \(i.e. \"b\" when
  601. output is restricted to body only, \"s\" when it is restricted to
  602. the current subtree and \"v\" when only visible elements are
  603. considered for export\). Also, \[?] allows to switch back to
  604. standard mode."
  605. :group 'org-export-general
  606. :type 'boolean)
  607. ;;; Defining New Back-ends
  608. (defmacro org-export-define-derived-backend (child parent &rest body)
  609. "Create a new back-end as a variant of an existing one.
  610. CHILD is the name of the derived back-end. PARENT is the name of
  611. the parent back-end.
  612. BODY can start with pre-defined keyword arguments. The following
  613. keywords are understood:
  614. `:filters-alist'
  615. Alist of filters that will overwrite or complete filters
  616. defined in PARENT back-end, if any.
  617. `:options-alist'
  618. Alist of buffer keywords or #+OPTIONS items that will
  619. overwrite or complete those defined in PARENT back-end, if
  620. any.
  621. `:translate-alist'
  622. Alist of element and object types and transcoders that will
  623. overwrite or complete transcode table from PARENT back-end.
  624. As an example, here is how one could define \"my-latex\" back-end
  625. as a variant of `e-latex' back-end with a custom template
  626. function:
  627. \(org-export-define-derived-backend my-latex e-latex
  628. :translate-alist ((template . my-latex-template-fun)))
  629. The back-end could then be called with, for example:
  630. \(org-export-to-buffer 'my-latex \"*Test my-latex\")"
  631. (declare (debug (&define name symbolp [&rest keywordp sexp] def-body))
  632. (indent 2))
  633. (let (filters options translate)
  634. (while (keywordp (car body))
  635. (case (pop body)
  636. (:filters-alist (setq filters (pop body)))
  637. (:options-alist (setq options (pop body)))
  638. (:translate-alist (setq translate (pop body)))
  639. (t (pop body))))
  640. `(progn
  641. ;; Define filters.
  642. ,(let ((parent-filters (intern (format "org-%s-filters-alist" parent))))
  643. (when (or (boundp parent-filters) filters)
  644. `(defconst ,(intern (format "org-%s-filters-alist" child))
  645. ',(append filters
  646. (and (boundp parent-filters)
  647. (copy-sequence (symbol-value parent-filters))))
  648. "Alist between filters keywords and back-end specific filters.
  649. See `org-export-filters-alist' for more information.")))
  650. ;; Define options.
  651. ,(let ((parent-options (intern (format "org-%s-options-alist" parent))))
  652. (when (or (boundp parent-options) options)
  653. `(defconst ,(intern (format "org-%s-options-alist" child))
  654. ',(append options
  655. (and (boundp parent-options)
  656. (copy-sequence (symbol-value parent-options))))
  657. "Alist between LaTeX export properties and ways to set them.
  658. See `org-export-options-alist' for more information on the
  659. structure of the values.")))
  660. ;; Define translators.
  661. (defvar ,(intern (format "org-%s-translate-alist" child))
  662. ',(append translate
  663. (copy-sequence
  664. (symbol-value
  665. (intern (format "org-%s-translate-alist" parent)))))
  666. "Alist between element or object types and translators.")
  667. ;; Splice in the body, if any.
  668. ,@body)))
  669. ;;; The Communication Channel
  670. ;;
  671. ;; During export process, every function has access to a number of
  672. ;; properties. They are of two types:
  673. ;;
  674. ;; 1. Environment options are collected once at the very beginning of
  675. ;; the process, out of the original buffer and configuration.
  676. ;; Collecting them is handled by `org-export-get-environment'
  677. ;; function.
  678. ;;
  679. ;; Most environment options are defined through the
  680. ;; `org-export-options-alist' variable.
  681. ;;
  682. ;; 2. Tree properties are extracted directly from the parsed tree,
  683. ;; just before export, by `org-export-collect-tree-properties'.
  684. ;;
  685. ;; Here is the full list of properties available during transcode
  686. ;; process, with their category (option, tree or local) and their
  687. ;; value type.
  688. ;;
  689. ;; + `:author' :: Author's name.
  690. ;; - category :: option
  691. ;; - type :: string
  692. ;;
  693. ;; + `:back-end' :: Current back-end used for transcoding.
  694. ;; - category :: tree
  695. ;; - type :: symbol
  696. ;;
  697. ;; + `:creator' :: String to write as creation information.
  698. ;; - category :: option
  699. ;; - type :: string
  700. ;;
  701. ;; + `:date' :: String to use as date.
  702. ;; - category :: option
  703. ;; - type :: string
  704. ;;
  705. ;; + `:description' :: Description text for the current data.
  706. ;; - category :: option
  707. ;; - type :: string
  708. ;;
  709. ;; + `:email' :: Author's email.
  710. ;; - category :: option
  711. ;; - type :: string
  712. ;;
  713. ;; + `:exclude-tags' :: Tags for exclusion of subtrees from export
  714. ;; process.
  715. ;; - category :: option
  716. ;; - type :: list of strings
  717. ;;
  718. ;; + `:footnote-definition-alist' :: Alist between footnote labels and
  719. ;; their definition, as parsed data. Only non-inlined footnotes
  720. ;; are represented in this alist. Also, every definition isn't
  721. ;; guaranteed to be referenced in the parse tree. The purpose of
  722. ;; this property is to preserve definitions from oblivion
  723. ;; (i.e. when the parse tree comes from a part of the original
  724. ;; buffer), it isn't meant for direct use in a back-end. To
  725. ;; retrieve a definition relative to a reference, use
  726. ;; `org-export-get-footnote-definition' instead.
  727. ;; - category :: option
  728. ;; - type :: alist (STRING . LIST)
  729. ;;
  730. ;; + `:headline-levels' :: Maximum level being exported as an
  731. ;; headline. Comparison is done with the relative level of
  732. ;; headlines in the parse tree, not necessarily with their
  733. ;; actual level.
  734. ;; - category :: option
  735. ;; - type :: integer
  736. ;;
  737. ;; + `:headline-offset' :: Difference between relative and real level
  738. ;; of headlines in the parse tree. For example, a value of -1
  739. ;; means a level 2 headline should be considered as level
  740. ;; 1 (cf. `org-export-get-relative-level').
  741. ;; - category :: tree
  742. ;; - type :: integer
  743. ;;
  744. ;; + `:headline-numbering' :: Alist between headlines and their
  745. ;; numbering, as a list of numbers
  746. ;; (cf. `org-export-get-headline-number').
  747. ;; - category :: tree
  748. ;; - type :: alist (INTEGER . LIST)
  749. ;;
  750. ;; + `:id-alist' :: Alist between ID strings and destination file's
  751. ;; path, relative to current directory. It is used by
  752. ;; `org-export-resolve-id-link' to resolve ID links targeting an
  753. ;; external file.
  754. ;; - category :: option
  755. ;; - type :: alist (STRING . STRING)
  756. ;;
  757. ;; + `:ignore-list' :: List of elements and objects that should be
  758. ;; ignored during export.
  759. ;; - category :: tree
  760. ;; - type :: list of elements and objects
  761. ;;
  762. ;; + `:input-file' :: Full path to input file, if any.
  763. ;; - category :: option
  764. ;; - type :: string or nil
  765. ;;
  766. ;; + `:keywords' :: List of keywords attached to data.
  767. ;; - category :: option
  768. ;; - type :: string
  769. ;;
  770. ;; + `:language' :: Default language used for translations.
  771. ;; - category :: option
  772. ;; - type :: string
  773. ;;
  774. ;; + `:parse-tree' :: Whole parse tree, available at any time during
  775. ;; transcoding.
  776. ;; - category :: option
  777. ;; - type :: list (as returned by `org-element-parse-buffer')
  778. ;;
  779. ;; + `:preserve-breaks' :: Non-nil means transcoding should preserve
  780. ;; all line breaks.
  781. ;; - category :: option
  782. ;; - type :: symbol (nil, t)
  783. ;;
  784. ;; + `:section-numbers' :: Non-nil means transcoding should add
  785. ;; section numbers to headlines.
  786. ;; - category :: option
  787. ;; - type :: symbol (nil, t)
  788. ;;
  789. ;; + `:select-tags' :: List of tags enforcing inclusion of sub-trees
  790. ;; in transcoding. When such a tag is present, subtrees without
  791. ;; it are de facto excluded from the process. See
  792. ;; `use-select-tags'.
  793. ;; - category :: option
  794. ;; - type :: list of strings
  795. ;;
  796. ;; + `:target-list' :: List of targets encountered in the parse tree.
  797. ;; This is used to partly resolve "fuzzy" links
  798. ;; (cf. `org-export-resolve-fuzzy-link').
  799. ;; - category :: tree
  800. ;; - type :: list of strings
  801. ;;
  802. ;; + `:time-stamp-file' :: Non-nil means transcoding should insert
  803. ;; a time stamp in the output.
  804. ;; - category :: option
  805. ;; - type :: symbol (nil, t)
  806. ;;
  807. ;; + `:translate-alist' :: Alist between element and object types and
  808. ;; transcoding functions relative to the current back-end.
  809. ;; Special keys `template' and `plain-text' are also possible.
  810. ;; - category :: option
  811. ;; - type :: alist (SYMBOL . FUNCTION)
  812. ;;
  813. ;; + `:with-archived-trees' :: Non-nil when archived subtrees should
  814. ;; also be transcoded. If it is set to the `headline' symbol,
  815. ;; only the archived headline's name is retained.
  816. ;; - category :: option
  817. ;; - type :: symbol (nil, t, `headline')
  818. ;;
  819. ;; + `:with-author' :: Non-nil means author's name should be included
  820. ;; in the output.
  821. ;; - category :: option
  822. ;; - type :: symbol (nil, t)
  823. ;;
  824. ;; + `:with-clocks' :: Non-nild means clock keywords should be exported.
  825. ;; - category :: option
  826. ;; - type :: symbol (nil, t)
  827. ;;
  828. ;; + `:with-creator' :: Non-nild means a creation sentence should be
  829. ;; inserted at the end of the transcoded string. If the value
  830. ;; is `comment', it should be commented.
  831. ;; - category :: option
  832. ;; - type :: symbol (`comment', nil, t)
  833. ;;
  834. ;; + `:with-drawers' :: Non-nil means drawers should be exported. If
  835. ;; its value is a list of names, only drawers with such names
  836. ;; will be transcoded.
  837. ;; - category :: option
  838. ;; - type :: symbol (nil, t) or list of strings
  839. ;;
  840. ;; + `:with-email' :: Non-nil means output should contain author's
  841. ;; email.
  842. ;; - category :: option
  843. ;; - type :: symbol (nil, t)
  844. ;;
  845. ;; + `:with-emphasize' :: Non-nil means emphasized text should be
  846. ;; interpreted.
  847. ;; - category :: option
  848. ;; - type :: symbol (nil, t)
  849. ;;
  850. ;; + `:with-fixed-width' :: Non-nil if transcoder should interpret
  851. ;; strings starting with a colon as a fixed-with (verbatim) area.
  852. ;; - category :: option
  853. ;; - type :: symbol (nil, t)
  854. ;;
  855. ;; + `:with-footnotes' :: Non-nil if transcoder should interpret
  856. ;; footnotes.
  857. ;; - category :: option
  858. ;; - type :: symbol (nil, t)
  859. ;;
  860. ;; + `:with-plannings' :: Non-nil means transcoding should include
  861. ;; planning info.
  862. ;; - category :: option
  863. ;; - type :: symbol (nil, t)
  864. ;;
  865. ;; + `:with-priority' :: Non-nil means transcoding should include
  866. ;; priority cookies.
  867. ;; - category :: option
  868. ;; - type :: symbol (nil, t)
  869. ;;
  870. ;; + `:with-special-strings' :: Non-nil means transcoding should
  871. ;; interpret special strings in plain text.
  872. ;; - category :: option
  873. ;; - type :: symbol (nil, t)
  874. ;;
  875. ;; + `:with-sub-superscript' :: Non-nil means transcoding should
  876. ;; interpret subscript and superscript. With a value of "{}",
  877. ;; only interpret those using curly brackets.
  878. ;; - category :: option
  879. ;; - type :: symbol (nil, {}, t)
  880. ;;
  881. ;; + `:with-tables' :: Non-nil means transcoding should interpret
  882. ;; tables.
  883. ;; - category :: option
  884. ;; - type :: symbol (nil, t)
  885. ;;
  886. ;; + `:with-tags' :: Non-nil means transcoding should keep tags in
  887. ;; headlines. A `not-in-toc' value will remove them from the
  888. ;; table of contents, if any, nonetheless.
  889. ;; - category :: option
  890. ;; - type :: symbol (nil, t, `not-in-toc')
  891. ;;
  892. ;; + `:with-tasks' :: Non-nil means transcoding should include
  893. ;; headlines with a TODO keyword. A `todo' value will only
  894. ;; include headlines with a todo type keyword while a `done'
  895. ;; value will do the contrary. If a list of strings is provided,
  896. ;; only tasks with keywords belonging to that list will be kept.
  897. ;; - category :: option
  898. ;; - type :: symbol (t, todo, done, nil) or list of strings
  899. ;;
  900. ;; + `:with-timestamps' :: Non-nil means transcoding should include
  901. ;; time stamps. Special value `active' (resp. `inactive') ask to
  902. ;; export only active (resp. inactive) timestamps. Otherwise,
  903. ;; completely remove them.
  904. ;; - category :: option
  905. ;; - type :: symbol: (`active', `inactive', t, nil)
  906. ;;
  907. ;; + `:with-toc' :: Non-nil means that a table of contents has to be
  908. ;; added to the output. An integer value limits its depth.
  909. ;; - category :: option
  910. ;; - type :: symbol (nil, t or integer)
  911. ;;
  912. ;; + `:with-todo-keywords' :: Non-nil means transcoding should
  913. ;; include TODO keywords.
  914. ;; - category :: option
  915. ;; - type :: symbol (nil, t)
  916. ;;;; Environment Options
  917. ;;
  918. ;; Environment options encompass all parameters defined outside the
  919. ;; scope of the parsed data. They come from five sources, in
  920. ;; increasing precedence order:
  921. ;;
  922. ;; - Global variables,
  923. ;; - Buffer's attributes,
  924. ;; - Options keyword symbols,
  925. ;; - Buffer keywords,
  926. ;; - Subtree properties.
  927. ;;
  928. ;; The central internal function with regards to environment options
  929. ;; is `org-export-get-environment'. It updates global variables with
  930. ;; "#+BIND:" keywords, then retrieve and prioritize properties from
  931. ;; the different sources.
  932. ;;
  933. ;; The internal functions doing the retrieval are:
  934. ;; `org-export-get-global-options',
  935. ;; `org-export-get-buffer-attributes',
  936. ;; `org-export-parse-option-keyword',
  937. ;; `org-export-get-subtree-options' and
  938. ;; `org-export-get-inbuffer-options'
  939. ;;
  940. ;; Also, `org-export-confirm-letbind' and `org-export-install-letbind'
  941. ;; take care of the part relative to "#+BIND:" keywords.
  942. (defun org-export-get-environment (&optional backend subtreep ext-plist)
  943. "Collect export options from the current buffer.
  944. Optional argument BACKEND is a symbol specifying which back-end
  945. specific options to read, if any.
  946. When optional argument SUBTREEP is non-nil, assume the export is
  947. done against the current sub-tree.
  948. Third optional argument EXT-PLIST is a property list with
  949. external parameters overriding Org default settings, but still
  950. inferior to file-local settings."
  951. ;; First install #+BIND variables.
  952. (org-export-install-letbind-maybe)
  953. ;; Get and prioritize export options...
  954. (org-combine-plists
  955. ;; ... from global variables...
  956. (org-export-get-global-options backend)
  957. ;; ... from buffer's attributes...
  958. (org-export-get-buffer-attributes)
  959. ;; ... from an external property list...
  960. ext-plist
  961. ;; ... from in-buffer settings...
  962. (org-export-get-inbuffer-options
  963. backend
  964. (and buffer-file-name (org-remove-double-quotes buffer-file-name)))
  965. ;; ... and from subtree, when appropriate.
  966. (and subtreep (org-export-get-subtree-options backend))
  967. ;; Eventually install back-end symbol and its translation table.
  968. `(:back-end
  969. ,backend
  970. :translate-alist
  971. ,(let ((trans-alist (intern (format "org-%s-translate-alist" backend))))
  972. (when (boundp trans-alist) (symbol-value trans-alist))))))
  973. (defun org-export-parse-option-keyword (options &optional backend)
  974. "Parse an OPTIONS line and return values as a plist.
  975. Optional argument BACKEND is a symbol specifying which back-end
  976. specific items to read, if any."
  977. (let* ((all
  978. (append org-export-options-alist
  979. (and backend
  980. (let ((var (intern
  981. (format "org-%s-options-alist" backend))))
  982. (and (boundp var) (eval var))))))
  983. ;; Build an alist between #+OPTION: item and property-name.
  984. (alist (delq nil
  985. (mapcar (lambda (e)
  986. (when (nth 2 e) (cons (regexp-quote (nth 2 e))
  987. (car e))))
  988. all)))
  989. plist)
  990. (mapc (lambda (e)
  991. (when (string-match (concat "\\(\\`\\|[ \t]\\)"
  992. (car e)
  993. ":\\(([^)\n]+)\\|[^ \t\n\r;,.]*\\)")
  994. options)
  995. (setq plist (plist-put plist
  996. (cdr e)
  997. (car (read-from-string
  998. (match-string 2 options)))))))
  999. alist)
  1000. plist))
  1001. (defun org-export-get-subtree-options (&optional backend)
  1002. "Get export options in subtree at point.
  1003. Optional argument BACKEND is a symbol specifying back-end used
  1004. for export. Return options as a plist."
  1005. ;; For each buffer keyword, create an headline property setting the
  1006. ;; same property in communication channel. The name for the property
  1007. ;; is the keyword with "EXPORT_" appended to it.
  1008. (org-with-wide-buffer
  1009. (let (prop plist)
  1010. ;; Make sure point is at an heading.
  1011. (unless (org-at-heading-p) (org-back-to-heading t))
  1012. ;; Take care of EXPORT_TITLE. If it isn't defined, use headline's
  1013. ;; title as its fallback value.
  1014. (when (setq prop (progn (looking-at org-todo-line-regexp)
  1015. (or (save-match-data
  1016. (org-entry-get (point) "EXPORT_TITLE"))
  1017. (org-match-string-no-properties 3))))
  1018. (setq plist
  1019. (plist-put
  1020. plist :title
  1021. (org-element-parse-secondary-string
  1022. prop (org-element-restriction 'keyword)))))
  1023. ;; EXPORT_OPTIONS are parsed in a non-standard way.
  1024. (when (setq prop (org-entry-get (point) "EXPORT_OPTIONS"))
  1025. (setq plist
  1026. (nconc plist (org-export-parse-option-keyword prop backend))))
  1027. ;; Handle other keywords.
  1028. (let ((seen '("TITLE")))
  1029. (mapc
  1030. (lambda (option)
  1031. (let ((property (nth 1 option)))
  1032. (when (and property (not (member property seen)))
  1033. (let* ((subtree-prop (concat "EXPORT_" property))
  1034. (value (org-entry-get (point) subtree-prop)))
  1035. (push property seen)
  1036. (when value
  1037. (setq plist
  1038. (plist-put
  1039. plist
  1040. (car option)
  1041. ;; Parse VALUE if required.
  1042. (if (member property org-element-parsed-keywords)
  1043. (org-element-parse-secondary-string
  1044. value (org-element-restriction 'keyword))
  1045. value))))))))
  1046. ;; Also look for both general keywords and back-end specific
  1047. ;; options if BACKEND is provided.
  1048. (append (and backend
  1049. (let ((var (intern
  1050. (format "org-%s-options-alist" backend))))
  1051. (and (boundp var) (symbol-value var))))
  1052. org-export-options-alist)))
  1053. ;; Return value.
  1054. plist)))
  1055. (defun org-export-get-inbuffer-options (&optional backend files)
  1056. "Return current buffer export options, as a plist.
  1057. Optional argument BACKEND, when non-nil, is a symbol specifying
  1058. which back-end specific options should also be read in the
  1059. process.
  1060. Optional argument FILES is a list of setup files names read so
  1061. far, used to avoid circular dependencies.
  1062. Assume buffer is in Org mode. Narrowing, if any, is ignored."
  1063. (org-with-wide-buffer
  1064. (goto-char (point-min))
  1065. (let ((case-fold-search t) plist)
  1066. ;; 1. Special keywords, as in `org-export-special-keywords'.
  1067. (let ((special-re (org-make-options-regexp org-export-special-keywords)))
  1068. (while (re-search-forward special-re nil t)
  1069. (let ((element (org-element-at-point)))
  1070. (when (eq (org-element-type element) 'keyword)
  1071. (let* ((key (org-element-property :key element))
  1072. (val (org-element-property :value element))
  1073. (prop
  1074. (cond
  1075. ((string= key "SETUP_FILE")
  1076. (let ((file
  1077. (expand-file-name
  1078. (org-remove-double-quotes (org-trim val)))))
  1079. ;; Avoid circular dependencies.
  1080. (unless (member file files)
  1081. (with-temp-buffer
  1082. (insert (org-file-contents file 'noerror))
  1083. (org-mode)
  1084. (org-export-get-inbuffer-options
  1085. backend (cons file files))))))
  1086. ((string= key "OPTIONS")
  1087. (org-export-parse-option-keyword val backend))
  1088. ((string= key "MACRO")
  1089. (when (string-match
  1090. "^\\([-a-zA-Z0-9_]+\\)\\(?:[ \t]+\\(.*?\\)[ \t]*$\\)?"
  1091. val)
  1092. (let ((key
  1093. (intern
  1094. (concat ":macro-"
  1095. (downcase (match-string 1 val)))))
  1096. (value (org-match-string-no-properties 2 val)))
  1097. (cond
  1098. ((not value) nil)
  1099. ;; Value will be evaled: do not parse it.
  1100. ((string-match "\\`(eval\\>" value)
  1101. (list key (list value)))
  1102. ;; Value has to be parsed for nested
  1103. ;; macros.
  1104. (t
  1105. (list
  1106. key
  1107. (let ((restr (org-element-restriction 'macro)))
  1108. (org-element-parse-secondary-string
  1109. ;; If user explicitly asks for
  1110. ;; a newline, be sure to preserve it
  1111. ;; from further filling with
  1112. ;; `hard-newline'. Also replace
  1113. ;; "\\n" with "\n", "\\\n" with "\\n"
  1114. ;; and so on...
  1115. (replace-regexp-in-string
  1116. "\\(\\\\\\\\\\)n" "\\\\"
  1117. (replace-regexp-in-string
  1118. "\\(?:^\\|[^\\\\]\\)\\(\\\\n\\)"
  1119. hard-newline value nil nil 1)
  1120. nil nil 1)
  1121. restr)))))))))))
  1122. (setq plist (org-combine-plists plist prop)))))))
  1123. ;; 2. Standard options, as in `org-export-options-alist'.
  1124. (let* ((all (append org-export-options-alist
  1125. ;; Also look for back-end specific options
  1126. ;; if BACKEND is defined.
  1127. (and backend
  1128. (let ((var
  1129. (intern
  1130. (format "org-%s-options-alist" backend))))
  1131. (and (boundp var) (eval var))))))
  1132. ;; Build alist between keyword name and property name.
  1133. (alist
  1134. (delq nil (mapcar
  1135. (lambda (e) (when (nth 1 e) (cons (nth 1 e) (car e))))
  1136. all)))
  1137. ;; Build regexp matching all keywords associated to export
  1138. ;; options. Note: the search is case insensitive.
  1139. (opt-re (org-make-options-regexp
  1140. (delq nil (mapcar (lambda (e) (nth 1 e)) all)))))
  1141. (goto-char (point-min))
  1142. (while (re-search-forward opt-re nil t)
  1143. (let ((element (org-element-at-point)))
  1144. (when (eq (org-element-type element) 'keyword)
  1145. (let* ((key (org-element-property :key element))
  1146. (val (org-element-property :value element))
  1147. (prop (cdr (assoc key alist)))
  1148. (behaviour (nth 4 (assq prop all))))
  1149. (setq plist
  1150. (plist-put
  1151. plist prop
  1152. ;; Handle value depending on specified BEHAVIOUR.
  1153. (case behaviour
  1154. (space
  1155. (if (not (plist-get plist prop)) (org-trim val)
  1156. (concat (plist-get plist prop) " " (org-trim val))))
  1157. (newline
  1158. (org-trim
  1159. (concat (plist-get plist prop) "\n" (org-trim val))))
  1160. (split
  1161. `(,@(plist-get plist prop) ,@(org-split-string val)))
  1162. ('t val)
  1163. (otherwise (if (not (plist-member plist prop)) val
  1164. (plist-get plist prop))))))))))
  1165. ;; Parse keywords specified in `org-element-parsed-keywords'.
  1166. (mapc
  1167. (lambda (key)
  1168. (let* ((prop (cdr (assoc key alist)))
  1169. (value (and prop (plist-get plist prop))))
  1170. (when (stringp value)
  1171. (setq plist
  1172. (plist-put
  1173. plist prop
  1174. (org-element-parse-secondary-string
  1175. value (org-element-restriction 'keyword)))))))
  1176. org-element-parsed-keywords))
  1177. ;; 3. Return final value.
  1178. plist)))
  1179. (defun org-export-get-buffer-attributes ()
  1180. "Return properties related to buffer attributes, as a plist."
  1181. (let ((visited-file (buffer-file-name (buffer-base-buffer))))
  1182. (list
  1183. ;; Store full path of input file name, or nil. For internal use.
  1184. :input-file visited-file
  1185. :title (or (and visited-file
  1186. (file-name-sans-extension
  1187. (file-name-nondirectory visited-file)))
  1188. (buffer-name (buffer-base-buffer)))
  1189. :footnote-definition-alist
  1190. ;; Footnotes definitions must be collected in the original
  1191. ;; buffer, as there's no insurance that they will still be in the
  1192. ;; parse tree, due to possible narrowing.
  1193. (let (alist)
  1194. (org-with-wide-buffer
  1195. (goto-char (point-min))
  1196. (while (re-search-forward org-footnote-definition-re nil t)
  1197. (let ((def (org-footnote-at-definition-p)))
  1198. (when def
  1199. (org-skip-whitespace)
  1200. (push (cons (car def)
  1201. (save-restriction
  1202. (narrow-to-region (point) (nth 2 def))
  1203. ;; Like `org-element-parse-buffer', but
  1204. ;; makes sure the definition doesn't start
  1205. ;; with a section element.
  1206. (org-element-parse-elements
  1207. (point-min) (point-max) nil nil nil nil
  1208. (list 'org-data nil))))
  1209. alist))))
  1210. alist))
  1211. :id-alist
  1212. ;; Collect id references.
  1213. (let (alist)
  1214. (org-with-wide-buffer
  1215. (goto-char (point-min))
  1216. (while (re-search-forward
  1217. "\\[\\[id:\\(\\S-+?\\)\\]\\(?:\\[.*?\\]\\)?\\]" nil t)
  1218. (let* ((id (org-match-string-no-properties 1))
  1219. (file (org-id-find-id-file id)))
  1220. (when file (push (cons id (file-relative-name file)) alist)))))
  1221. alist)
  1222. :macro-modification-time
  1223. (and visited-file
  1224. (file-exists-p visited-file)
  1225. (concat "(eval (format-time-string \"$1\" '"
  1226. (prin1-to-string (nth 5 (file-attributes visited-file)))
  1227. "))"))
  1228. ;; Store input file name as a macro.
  1229. :macro-input-file (and visited-file (file-name-nondirectory visited-file))
  1230. ;; `:macro-date', `:macro-time' and `:macro-property' could as
  1231. ;; well be initialized as tree properties, since they don't
  1232. ;; depend on buffer properties. Though, it may be more logical
  1233. ;; to keep them close to other ":macro-" properties.
  1234. :macro-date "(eval (format-time-string \"$1\"))"
  1235. :macro-time "(eval (format-time-string \"$1\"))"
  1236. :macro-property "(eval (org-entry-get nil \"$1\" 'selective))")))
  1237. (defun org-export-get-global-options (&optional backend)
  1238. "Return global export options as a plist.
  1239. Optional argument BACKEND, if non-nil, is a symbol specifying
  1240. which back-end specific export options should also be read in the
  1241. process."
  1242. (let ((all (append org-export-options-alist
  1243. (and backend
  1244. (let ((var (intern
  1245. (format "org-%s-options-alist" backend))))
  1246. (and (boundp var) (symbol-value var))))))
  1247. ;; Output value.
  1248. plist)
  1249. (mapc
  1250. (lambda (cell)
  1251. (setq plist
  1252. (plist-put
  1253. plist
  1254. (car cell)
  1255. ;; Eval default value provided. If keyword is a member
  1256. ;; of `org-element-parsed-keywords', parse it as
  1257. ;; a secondary string before storing it.
  1258. (let ((value (eval (nth 3 cell))))
  1259. (if (not (stringp value)) value
  1260. (let ((keyword (nth 1 cell)))
  1261. (if (not (member keyword org-element-parsed-keywords)) value
  1262. (org-element-parse-secondary-string
  1263. value (org-element-restriction 'keyword)))))))))
  1264. all)
  1265. ;; Return value.
  1266. plist))
  1267. (defvar org-export-allow-BIND-local nil)
  1268. (defun org-export-confirm-letbind ()
  1269. "Can we use #+BIND values during export?
  1270. By default this will ask for confirmation by the user, to divert
  1271. possible security risks."
  1272. (cond
  1273. ((not org-export-allow-BIND) nil)
  1274. ((eq org-export-allow-BIND t) t)
  1275. ((local-variable-p 'org-export-allow-BIND-local) org-export-allow-BIND-local)
  1276. (t (org-set-local 'org-export-allow-BIND-local
  1277. (yes-or-no-p "Allow BIND values in this buffer? ")))))
  1278. (defun org-export-install-letbind-maybe ()
  1279. "Install the values from #+BIND lines as local variables.
  1280. Variables must be installed before in-buffer options are
  1281. retrieved."
  1282. (let (letbind pair)
  1283. (org-with-wide-buffer
  1284. (goto-char (point-min))
  1285. (while (re-search-forward (org-make-options-regexp '("BIND")) nil t)
  1286. (when (org-export-confirm-letbind)
  1287. (push (read (concat "(" (org-match-string-no-properties 2) ")"))
  1288. letbind))))
  1289. (while (setq pair (pop letbind))
  1290. (org-set-local (car pair) (nth 1 pair)))))
  1291. ;;;; Tree Properties
  1292. ;;
  1293. ;; Tree properties are infromation extracted from parse tree. They
  1294. ;; are initialized at the beginning of the transcoding process by
  1295. ;; `org-export-collect-tree-properties'.
  1296. ;;
  1297. ;; Dedicated functions focus on computing the value of specific tree
  1298. ;; properties during initialization. Thus,
  1299. ;; `org-export-populate-ignore-list' lists elements and objects that
  1300. ;; should be skipped during export, `org-export-get-min-level' gets
  1301. ;; the minimal exportable level, used as a basis to compute relative
  1302. ;; level for headlines. Eventually
  1303. ;; `org-export-collect-headline-numbering' builds an alist between
  1304. ;; headlines and their numbering.
  1305. (defun org-export-collect-tree-properties (data info)
  1306. "Extract tree properties from parse tree.
  1307. DATA is the parse tree from which information is retrieved. INFO
  1308. is a list holding export options.
  1309. Following tree properties are set or updated:
  1310. `:footnote-definition-alist' List of footnotes definitions in
  1311. original buffer and current parse tree.
  1312. `:headline-offset' Offset between true level of headlines and
  1313. local level. An offset of -1 means an headline
  1314. of level 2 should be considered as a level
  1315. 1 headline in the context.
  1316. `:headline-numbering' Alist of all headlines as key an the
  1317. associated numbering as value.
  1318. `:ignore-list' List of elements that should be ignored during
  1319. export.
  1320. `:target-list' List of all targets in the parse tree.
  1321. Return updated plist."
  1322. ;; Install the parse tree in the communication channel, in order to
  1323. ;; use `org-export-get-genealogy' and al.
  1324. (setq info (plist-put info :parse-tree data))
  1325. ;; Get the list of elements and objects to ignore, and put it into
  1326. ;; `:ignore-list'. Do not overwrite any user ignore that might have
  1327. ;; been done during parse tree filtering.
  1328. (setq info
  1329. (plist-put info
  1330. :ignore-list
  1331. (append (org-export-populate-ignore-list data info)
  1332. (plist-get info :ignore-list))))
  1333. ;; Compute `:headline-offset' in order to be able to use
  1334. ;; `org-export-get-relative-level'.
  1335. (setq info
  1336. (plist-put info
  1337. :headline-offset (- 1 (org-export-get-min-level data info))))
  1338. ;; Update footnotes definitions list with definitions in parse tree.
  1339. ;; This is required since buffer expansion might have modified
  1340. ;; boundaries of footnote definitions contained in the parse tree.
  1341. ;; This way, definitions in `footnote-definition-alist' are bound to
  1342. ;; match those in the parse tree.
  1343. (let ((defs (plist-get info :footnote-definition-alist)))
  1344. (org-element-map
  1345. data 'footnote-definition
  1346. (lambda (fn)
  1347. (push (cons (org-element-property :label fn)
  1348. `(org-data nil ,@(org-element-contents fn)))
  1349. defs)))
  1350. (setq info (plist-put info :footnote-definition-alist defs)))
  1351. ;; Properties order doesn't matter: get the rest of the tree
  1352. ;; properties.
  1353. (nconc
  1354. `(:target-list
  1355. ,(org-element-map
  1356. data '(keyword target)
  1357. (lambda (blob)
  1358. (when (or (eq (org-element-type blob) 'target)
  1359. (string= (org-element-property :key blob) "TARGET"))
  1360. blob)) info)
  1361. :headline-numbering ,(org-export-collect-headline-numbering data info))
  1362. info))
  1363. (defun org-export-get-min-level (data options)
  1364. "Return minimum exportable headline's level in DATA.
  1365. DATA is parsed tree as returned by `org-element-parse-buffer'.
  1366. OPTIONS is a plist holding export options."
  1367. (catch 'exit
  1368. (let ((min-level 10000))
  1369. (mapc
  1370. (lambda (blob)
  1371. (when (and (eq (org-element-type blob) 'headline)
  1372. (not (member blob (plist-get options :ignore-list))))
  1373. (setq min-level
  1374. (min (org-element-property :level blob) min-level)))
  1375. (when (= min-level 1) (throw 'exit 1)))
  1376. (org-element-contents data))
  1377. ;; If no headline was found, for the sake of consistency, set
  1378. ;; minimum level to 1 nonetheless.
  1379. (if (= min-level 10000) 1 min-level))))
  1380. (defun org-export-collect-headline-numbering (data options)
  1381. "Return numbering of all exportable headlines in a parse tree.
  1382. DATA is the parse tree. OPTIONS is the plist holding export
  1383. options.
  1384. Return an alist whose key is an headline and value is its
  1385. associated numbering \(in the shape of a list of numbers\)."
  1386. (let ((numbering (make-vector org-export-max-depth 0)))
  1387. (org-element-map
  1388. data
  1389. 'headline
  1390. (lambda (headline)
  1391. (let ((relative-level
  1392. (1- (org-export-get-relative-level headline options))))
  1393. (cons
  1394. headline
  1395. (loop for n across numbering
  1396. for idx from 0 to org-export-max-depth
  1397. when (< idx relative-level) collect n
  1398. when (= idx relative-level) collect (aset numbering idx (1+ n))
  1399. when (> idx relative-level) do (aset numbering idx 0)))))
  1400. options)))
  1401. (defun org-export-populate-ignore-list (data options)
  1402. "Return list of elements and objects to ignore during export.
  1403. DATA is the parse tree to traverse. OPTIONS is the plist holding
  1404. export options."
  1405. (let* (ignore
  1406. walk-data ; for byte-compiler.
  1407. (walk-data
  1408. (function
  1409. (lambda (data options selected)
  1410. ;; Collect ignored elements or objects into IGNORE-LIST.
  1411. (mapc
  1412. (lambda (el)
  1413. (if (org-export--skip-p el options selected) (push el ignore)
  1414. (let ((type (org-element-type el)))
  1415. (if (and (eq (plist-get options :with-archived-trees)
  1416. 'headline)
  1417. (eq (org-element-type el) 'headline)
  1418. (org-element-property :archivedp el))
  1419. ;; If headline is archived but tree below has
  1420. ;; to be skipped, add it to ignore list.
  1421. (mapc (lambda (e) (push e ignore))
  1422. (org-element-contents el))
  1423. ;; Move into recursive objects/elements.
  1424. (when (org-element-contents el)
  1425. (funcall walk-data el options selected))))))
  1426. (org-element-contents data))))))
  1427. ;; Main call. First find trees containing a select tag, if any.
  1428. (funcall walk-data data options (org-export--selected-trees data options))
  1429. ;; Return value.
  1430. ignore))
  1431. (defun org-export--selected-trees (data info)
  1432. "Return list of headlines containing a select tag in their tree.
  1433. DATA is parsed data as returned by `org-element-parse-buffer'.
  1434. INFO is a plist holding export options."
  1435. (let* (selected-trees
  1436. walk-data ; for byte-compiler.
  1437. (walk-data
  1438. (function
  1439. (lambda (data genealogy)
  1440. (case (org-element-type data)
  1441. (org-data (mapc (lambda (el) (funcall walk-data el genealogy))
  1442. (org-element-contents data)))
  1443. (headline
  1444. (let ((tags (org-element-property :tags data)))
  1445. (if (loop for tag in (plist-get info :select-tags)
  1446. thereis (member tag tags))
  1447. ;; When a select tag is found, mark full
  1448. ;; genealogy and every headline within the tree
  1449. ;; as acceptable.
  1450. (setq selected-trees
  1451. (append
  1452. genealogy
  1453. (org-element-map data 'headline 'identity)
  1454. selected-trees))
  1455. ;; Else, continue searching in tree, recursively.
  1456. (mapc
  1457. (lambda (el) (funcall walk-data el (cons data genealogy)))
  1458. (org-element-contents data))))))))))
  1459. (funcall walk-data data nil) selected-trees))
  1460. (defun org-export--skip-p (blob options selected)
  1461. "Non-nil when element or object BLOB should be skipped during export.
  1462. OPTIONS is the plist holding export options. SELECTED, when
  1463. non-nil, is a list of headlines belonging to a tree with a select
  1464. tag."
  1465. (case (org-element-type blob)
  1466. ;; Check headline.
  1467. (headline
  1468. (let ((with-tasks (plist-get options :with-tasks))
  1469. (todo (org-element-property :todo-keyword blob))
  1470. (todo-type (org-element-property :todo-type blob))
  1471. (archived (plist-get options :with-archived-trees))
  1472. (tags (org-element-property :tags blob)))
  1473. (or
  1474. ;; Ignore subtrees with an exclude tag.
  1475. (loop for k in (plist-get options :exclude-tags)
  1476. thereis (member k tags))
  1477. ;; When a select tag is present in the buffer, ignore any tree
  1478. ;; without it.
  1479. (and selected (not (member blob selected)))
  1480. ;; Ignore commented sub-trees.
  1481. (org-element-property :commentedp blob)
  1482. ;; Ignore archived subtrees if `:with-archived-trees' is nil.
  1483. (and (not archived) (org-element-property :archivedp blob))
  1484. ;; Ignore tasks, if specified by `:with-tasks' property.
  1485. (and todo
  1486. (or (not with-tasks)
  1487. (and (memq with-tasks '(todo done))
  1488. (not (eq todo-type with-tasks)))
  1489. (and (consp with-tasks) (not (member todo with-tasks))))))))
  1490. ;; Check timestamp.
  1491. (timestamp
  1492. (case (plist-get options :with-timestamps)
  1493. ;; No timestamp allowed.
  1494. ('nil t)
  1495. ;; Only active timestamps allowed and the current one isn't
  1496. ;; active.
  1497. (active
  1498. (not (memq (org-element-property :type blob)
  1499. '(active active-range))))
  1500. ;; Only inactive timestamps allowed and the current one isn't
  1501. ;; inactive.
  1502. (inactive
  1503. (not (memq (org-element-property :type blob)
  1504. '(inactive inactive-range))))))
  1505. ;; Check drawer.
  1506. (drawer
  1507. (or (not (plist-get options :with-drawers))
  1508. (and (consp (plist-get options :with-drawers))
  1509. (not (member (org-element-property :drawer-name blob)
  1510. (plist-get options :with-drawers))))))
  1511. ;; Check table-row.
  1512. (table-row (org-export-table-row-is-special-p blob options))
  1513. ;; Check table-cell.
  1514. (table-cell
  1515. (and (org-export-table-has-special-column-p
  1516. (org-export-get-parent-table blob))
  1517. (not (org-export-get-previous-element blob))))
  1518. ;; Check clock.
  1519. (clock (not (plist-get options :with-clocks)))
  1520. ;; Check planning.
  1521. (planning (not (plist-get options :with-plannings)))))
  1522. ;;; The Transcoder
  1523. ;;
  1524. ;; `org-export-data' reads a parse tree (obtained with, i.e.
  1525. ;; `org-element-parse-buffer') and transcodes it into a specified
  1526. ;; back-end output. It takes care of filtering out elements or
  1527. ;; objects according to export options and organizing the output blank
  1528. ;; lines and white space are preserved.
  1529. ;;
  1530. ;; Internally, three functions handle the filtering of objects and
  1531. ;; elements during the export. In particular,
  1532. ;; `org-export-ignore-element' marks an element or object so future
  1533. ;; parse tree traversals skip it, `org-export-interpret-p' tells which
  1534. ;; elements or objects should be seen as real Org syntax and
  1535. ;; `org-export-expand' transforms the others back into their original
  1536. ;; shape
  1537. ;;
  1538. ;; `org-export-transcoder' is an accessor returning appropriate
  1539. ;; translator function for a given element or object.
  1540. (defun org-export-transcoder (blob info)
  1541. "Return appropriate transcoder for BLOB.
  1542. INFO is a plist containing export directives."
  1543. (let ((type (org-element-type blob)))
  1544. ;; Return contents only for complete parse trees.
  1545. (if (eq type 'org-data) (lambda (blob contents info) contents)
  1546. (let ((transcoder (cdr (assq type (plist-get info :translate-alist)))))
  1547. (and (functionp transcoder) transcoder)))))
  1548. (defun org-export-data (data info)
  1549. "Convert DATA into current back-end format.
  1550. DATA is a parse tree, an element or an object or a secondary
  1551. string. INFO is a plist holding export options.
  1552. Return transcoded string."
  1553. (let* ((type (org-element-type data))
  1554. (results
  1555. (cond
  1556. ;; Ignored element/object.
  1557. ((member data (plist-get info :ignore-list)) nil)
  1558. ;; Plain text.
  1559. ((eq type 'plain-text)
  1560. (org-export-filter-apply-functions
  1561. (plist-get info :filter-plain-text)
  1562. (let ((transcoder (org-export-transcoder data info)))
  1563. (if transcoder (funcall transcoder data info) data))
  1564. info))
  1565. ;; Uninterpreted element/object: change it back to Org
  1566. ;; syntax and export again resulting raw string.
  1567. ((not (org-export-interpret-p data info))
  1568. (org-export-data
  1569. (org-export-expand
  1570. data
  1571. (mapconcat (lambda (blob) (org-export-data blob info))
  1572. (org-element-contents data)
  1573. ""))
  1574. info))
  1575. ;; Secondary string.
  1576. ((not type)
  1577. (mapconcat (lambda (obj) (org-export-data obj info)) data ""))
  1578. ;; Element/Object without contents or, as a special case,
  1579. ;; headline with archive tag and archived trees restricted
  1580. ;; to title only.
  1581. ((or (not (org-element-contents data))
  1582. (and (eq type 'headline)
  1583. (eq (plist-get info :with-archived-trees) 'headline)
  1584. (org-element-property :archivedp data)))
  1585. (let ((transcoder (org-export-transcoder data info)))
  1586. (and (functionp transcoder) (funcall transcoder data nil info))))
  1587. ;; Element/Object with contents.
  1588. (t
  1589. (let ((transcoder (org-export-transcoder data info)))
  1590. (when transcoder
  1591. (let* ((greaterp (memq type org-element-greater-elements))
  1592. (objectp (and (not greaterp)
  1593. (memq type org-element-recursive-objects)))
  1594. (contents
  1595. (mapconcat
  1596. (lambda (element) (org-export-data element info))
  1597. (org-element-contents
  1598. (if (or greaterp objectp) data
  1599. ;; Elements directly containing objects
  1600. ;; must have their indentation normalized
  1601. ;; first.
  1602. (org-element-normalize-contents
  1603. data
  1604. ;; When normalizing contents of the first
  1605. ;; paragraph in an item or a footnote
  1606. ;; definition, ignore first line's
  1607. ;; indentation: there is none and it
  1608. ;; might be misleading.
  1609. (when (eq type 'paragraph)
  1610. (let ((parent (org-export-get-parent data)))
  1611. (and (eq (car (org-element-contents parent))
  1612. data)
  1613. (memq (org-element-type parent)
  1614. '(footnote-definition item))))))))
  1615. "")))
  1616. (funcall transcoder data
  1617. (if greaterp (org-element-normalize-string contents)
  1618. contents)
  1619. info))))))))
  1620. (cond
  1621. ((not results) nil)
  1622. ((memq type '(org-data plain-text nil)) results)
  1623. ;; Append the same white space between elements or objects as in
  1624. ;; the original buffer, and call appropriate filters.
  1625. (t
  1626. (let ((results
  1627. (org-export-filter-apply-functions
  1628. (plist-get info (intern (format ":filter-%s" type)))
  1629. (let ((post-blank (or (org-element-property :post-blank data) 0)))
  1630. (if (memq type org-element-all-elements)
  1631. (concat (org-element-normalize-string results)
  1632. (make-string post-blank ?\n))
  1633. (concat results (make-string post-blank ? ))))
  1634. info)))
  1635. ;; Eventually return string.
  1636. results)))))
  1637. (defun org-export-interpret-p (blob info)
  1638. "Non-nil if element or object BLOB should be interpreted as Org syntax.
  1639. Check is done according to export options INFO, stored as
  1640. a plist."
  1641. (case (org-element-type blob)
  1642. ;; ... entities...
  1643. (entity (plist-get info :with-entities))
  1644. ;; ... emphasis...
  1645. (emphasis (plist-get info :with-emphasize))
  1646. ;; ... fixed-width areas.
  1647. (fixed-width (plist-get info :with-fixed-width))
  1648. ;; ... footnotes...
  1649. ((footnote-definition footnote-reference)
  1650. (plist-get info :with-footnotes))
  1651. ;; ... sub/superscripts...
  1652. ((subscript superscript)
  1653. (let ((sub/super-p (plist-get info :with-sub-superscript)))
  1654. (if (eq sub/super-p '{})
  1655. (org-element-property :use-brackets-p blob)
  1656. sub/super-p)))
  1657. ;; ... tables...
  1658. (table (plist-get info :with-tables))
  1659. (otherwise t)))
  1660. (defun org-export-expand (blob contents)
  1661. "Expand a parsed element or object to its original state.
  1662. BLOB is either an element or an object. CONTENTS is its
  1663. contents, as a string or nil."
  1664. (funcall
  1665. (intern (format "org-element-%s-interpreter" (org-element-type blob)))
  1666. blob contents))
  1667. (defun org-export-ignore-element (element info)
  1668. "Add ELEMENT to `:ignore-list' in INFO.
  1669. Any element in `:ignore-list' will be skipped when using
  1670. `org-element-map'. INFO is modified by side effects."
  1671. (plist-put info :ignore-list (cons element (plist-get info :ignore-list))))
  1672. ;;; The Filter System
  1673. ;;
  1674. ;; Filters allow end-users to tweak easily the transcoded output.
  1675. ;; They are the functional counterpart of hooks, as every filter in
  1676. ;; a set is applied to the return value of the previous one.
  1677. ;;
  1678. ;; Every set is back-end agnostic. Although, a filter is always
  1679. ;; called, in addition to the string it applies to, with the back-end
  1680. ;; used as argument, so it's easy for the end-user to add back-end
  1681. ;; specific filters in the set. The communication channel, as
  1682. ;; a plist, is required as the third argument.
  1683. ;;
  1684. ;; From the developer side, filters sets can be installed in the
  1685. ;; process with the help of `org-BACKEND-filters-alist' variable.
  1686. ;; Each association has a key among the following symbols and
  1687. ;; a function or a list of functions as value.
  1688. ;;
  1689. ;; - `:filter-parse-tree' applies directly on the complete parsed
  1690. ;; tree. It's the only filters set that doesn't apply to a string.
  1691. ;; Users can set it through `org-export-filter-parse-tree-functions'
  1692. ;; variable.
  1693. ;;
  1694. ;; - `:filter-final-output' applies to the final transcoded string.
  1695. ;; Users can set it with `org-export-filter-final-output-functions'
  1696. ;; variable
  1697. ;;
  1698. ;; - `:filter-plain-text' applies to any string not recognized as Org
  1699. ;; syntax. `org-export-filter-plain-text-functions' allows users to
  1700. ;; configure it.
  1701. ;;
  1702. ;; - `:filter-TYPE' applies on the string returned after an element or
  1703. ;; object of type TYPE has been transcoded. An user can modify
  1704. ;; `org-export-filter-TYPE-functions'
  1705. ;;
  1706. ;; All filters sets are applied with
  1707. ;; `org-export-filter-apply-functions' function. Filters in a set are
  1708. ;; applied in a LIFO fashion. It allows developers to be sure that
  1709. ;; their filters will be applied first.
  1710. ;;
  1711. ;; Filters properties are installed in communication channel with
  1712. ;; `org-export-install-filters' function.
  1713. ;;
  1714. ;; Eventually, a hook (`org-export-before-parsing-hook') is run just
  1715. ;; before parsing to allow for heavy structure modifications.
  1716. ;;;; Before Parsing Hook
  1717. (defvar org-export-before-parsing-hook nil
  1718. "Hook run before parsing an export buffer.
  1719. This is run after include keywords have been expanded and Babel
  1720. code executed, on a copy of original buffer's area being
  1721. exported. Visibility is the same as in the original one. Point
  1722. is left at the beginning of the new one.")
  1723. ;;;; Special Filters
  1724. (defvar org-export-filter-parse-tree-functions nil
  1725. "List of functions applied to the parsed tree.
  1726. Each filter is called with three arguments: the parse tree, as
  1727. returned by `org-element-parse-buffer', the back-end, as
  1728. a symbol, and the communication channel, as a plist. It must
  1729. return the modified parse tree to transcode.")
  1730. (defvar org-export-filter-final-output-functions nil
  1731. "List of functions applied to the transcoded string.
  1732. Each filter is called with three arguments: the full transcoded
  1733. string, the back-end, as a symbol, and the communication channel,
  1734. as a plist. It must return a string that will be used as the
  1735. final export output.")
  1736. (defvar org-export-filter-plain-text-functions nil
  1737. "List of functions applied to plain text.
  1738. Each filter is called with three arguments: a string which
  1739. contains no Org syntax, the back-end, as a symbol, and the
  1740. communication channel, as a plist. It must return a string or
  1741. nil.")
  1742. ;;;; Elements Filters
  1743. (defvar org-export-filter-center-block-functions nil
  1744. "List of functions applied to a transcoded center block.
  1745. Each filter is called with three arguments: the transcoded data,
  1746. as a string, the back-end, as a symbol, and the communication
  1747. channel, as a plist. It must return a string or nil.")
  1748. (defvar org-export-filter-clock-functions nil
  1749. "List of functions applied to a transcoded clock.
  1750. Each filter is called with three arguments: the transcoded data,
  1751. as a string, the back-end, as a symbol, and the communication
  1752. channel, as a plist. It must return a string or nil.")
  1753. (defvar org-export-filter-drawer-functions nil
  1754. "List of functions applied to a transcoded drawer.
  1755. Each filter is called with three arguments: the transcoded data,
  1756. as a string, the back-end, as a symbol, and the communication
  1757. channel, as a plist. It must return a string or nil.")
  1758. (defvar org-export-filter-dynamic-block-functions nil
  1759. "List of functions applied to a transcoded dynamic-block.
  1760. Each filter is called with three arguments: the transcoded data,
  1761. as a string, the back-end, as a symbol, and the communication
  1762. channel, as a plist. It must return a string or nil.")
  1763. (defvar org-export-filter-headline-functions nil
  1764. "List of functions applied to a transcoded headline.
  1765. Each filter is called with three arguments: the transcoded data,
  1766. as a string, the back-end, as a symbol, and the communication
  1767. channel, as a plist. It must return a string or nil.")
  1768. (defvar org-export-filter-inlinetask-functions nil
  1769. "List of functions applied to a transcoded inlinetask.
  1770. Each filter is called with three arguments: the transcoded data,
  1771. as a string, the back-end, as a symbol, and the communication
  1772. channel, as a plist. It must return a string or nil.")
  1773. (defvar org-export-filter-plain-list-functions nil
  1774. "List of functions applied to a transcoded plain-list.
  1775. Each filter is called with three arguments: the transcoded data,
  1776. as a string, the back-end, as a symbol, and the communication
  1777. channel, as a plist. It must return a string or nil.")
  1778. (defvar org-export-filter-item-functions nil
  1779. "List of functions applied to a transcoded item.
  1780. Each filter is called with three arguments: the transcoded data,
  1781. as a string, the back-end, as a symbol, and the communication
  1782. channel, as a plist. It must return a string or nil.")
  1783. (defvar org-export-filter-comment-functions nil
  1784. "List of functions applied to a transcoded comment.
  1785. Each filter is called with three arguments: the transcoded data,
  1786. as a string, the back-end, as a symbol, and the communication
  1787. channel, as a plist. It must return a string or nil.")
  1788. (defvar org-export-filter-comment-block-functions nil
  1789. "List of functions applied to a transcoded comment-comment.
  1790. Each filter is called with three arguments: the transcoded data,
  1791. as a string, the back-end, as a symbol, and the communication
  1792. channel, as a plist. It must return a string or nil.")
  1793. (defvar org-export-filter-example-block-functions nil
  1794. "List of functions applied to a transcoded example-block.
  1795. Each filter is called with three arguments: the transcoded data,
  1796. as a string, the back-end, as a symbol, and the communication
  1797. channel, as a plist. It must return a string or nil.")
  1798. (defvar org-export-filter-export-block-functions nil
  1799. "List of functions applied to a transcoded export-block.
  1800. Each filter is called with three arguments: the transcoded data,
  1801. as a string, the back-end, as a symbol, and the communication
  1802. channel, as a plist. It must return a string or nil.")
  1803. (defvar org-export-filter-fixed-width-functions nil
  1804. "List of functions applied to a transcoded fixed-width.
  1805. Each filter is called with three arguments: the transcoded data,
  1806. as a string, the back-end, as a symbol, and the communication
  1807. channel, as a plist. It must return a string or nil.")
  1808. (defvar org-export-filter-footnote-definition-functions nil
  1809. "List of functions applied to a transcoded footnote-definition.
  1810. Each filter is called with three arguments: the transcoded data,
  1811. as a string, the back-end, as a symbol, and the communication
  1812. channel, as a plist. It must return a string or nil.")
  1813. (defvar org-export-filter-horizontal-rule-functions nil
  1814. "List of functions applied to a transcoded horizontal-rule.
  1815. Each filter is called with three arguments: the transcoded data,
  1816. as a string, the back-end, as a symbol, and the communication
  1817. channel, as a plist. It must return a string or nil.")
  1818. (defvar org-export-filter-keyword-functions nil
  1819. "List of functions applied to a transcoded keyword.
  1820. Each filter is called with three arguments: the transcoded data,
  1821. as a string, the back-end, as a symbol, and the communication
  1822. channel, as a plist. It must return a string or nil.")
  1823. (defvar org-export-filter-latex-environment-functions nil
  1824. "List of functions applied to a transcoded latex-environment.
  1825. Each filter is called with three arguments: the transcoded data,
  1826. as a string, the back-end, as a symbol, and the communication
  1827. channel, as a plist. It must return a string or nil.")
  1828. (defvar org-export-filter-babel-call-functions nil
  1829. "List of functions applied to a transcoded babel-call.
  1830. Each filter is called with three arguments: the transcoded data,
  1831. as a string, the back-end, as a symbol, and the communication
  1832. channel, as a plist. It must return a string or nil.")
  1833. (defvar org-export-filter-paragraph-functions nil
  1834. "List of functions applied to a transcoded paragraph.
  1835. Each filter is called with three arguments: the transcoded data,
  1836. as a string, the back-end, as a symbol, and the communication
  1837. channel, as a plist. It must return a string or nil.")
  1838. (defvar org-export-filter-planning-functions nil
  1839. "List of functions applied to a transcoded planning.
  1840. Each filter is called with three arguments: the transcoded data,
  1841. as a string, the back-end, as a symbol, and the communication
  1842. channel, as a plist. It must return a string or nil.")
  1843. (defvar org-export-filter-property-drawer-functions nil
  1844. "List of functions applied to a transcoded property-drawer.
  1845. Each filter is called with three arguments: the transcoded data,
  1846. as a string, the back-end, as a symbol, and the communication
  1847. channel, as a plist. It must return a string or nil.")
  1848. (defvar org-export-filter-quote-block-functions nil
  1849. "List of functions applied to a transcoded quote block.
  1850. Each filter is called with three arguments: the transcoded quote
  1851. data, as a string, the back-end, as a symbol, and the
  1852. communication channel, as a plist. It must return a string or
  1853. nil.")
  1854. (defvar org-export-filter-quote-section-functions nil
  1855. "List of functions applied to a transcoded quote-section.
  1856. Each filter is called with three arguments: the transcoded data,
  1857. as a string, the back-end, as a symbol, and the communication
  1858. channel, as a plist. It must return a string or nil.")
  1859. (defvar org-export-filter-section-functions nil
  1860. "List of functions applied to a transcoded section.
  1861. Each filter is called with three arguments: the transcoded data,
  1862. as a string, the back-end, as a symbol, and the communication
  1863. channel, as a plist. It must return a string or nil.")
  1864. (defvar org-export-filter-special-block-functions nil
  1865. "List of functions applied to a transcoded special block.
  1866. Each filter is called with three arguments: the transcoded data,
  1867. as a string, the back-end, as a symbol, and the communication
  1868. channel, as a plist. It must return a string or nil.")
  1869. (defvar org-export-filter-src-block-functions nil
  1870. "List of functions applied to a transcoded src-block.
  1871. Each filter is called with three arguments: the transcoded data,
  1872. as a string, the back-end, as a symbol, and the communication
  1873. channel, as a plist. It must return a string or nil.")
  1874. (defvar org-export-filter-table-functions nil
  1875. "List of functions applied to a transcoded table.
  1876. Each filter is called with three arguments: the transcoded data,
  1877. as a string, the back-end, as a symbol, and the communication
  1878. channel, as a plist. It must return a string or nil.")
  1879. (defvar org-export-filter-table-cell-functions nil
  1880. "List of functions applied to a transcoded table-cell.
  1881. Each filter is called with three arguments: the transcoded data,
  1882. as a string, the back-end, as a symbol, and the communication
  1883. channel, as a plist. It must return a string or nil.")
  1884. (defvar org-export-filter-table-row-functions nil
  1885. "List of functions applied to a transcoded table-row.
  1886. Each filter is called with three arguments: the transcoded data,
  1887. as a string, the back-end, as a symbol, and the communication
  1888. channel, as a plist. It must return a string or nil.")
  1889. (defvar org-export-filter-verse-block-functions nil
  1890. "List of functions applied to a transcoded verse block.
  1891. Each filter is called with three arguments: the transcoded data,
  1892. as a string, the back-end, as a symbol, and the communication
  1893. channel, as a plist. It must return a string or nil.")
  1894. ;;;; Objects Filters
  1895. (defvar org-export-filter-bold-functions nil
  1896. "List of functions applied to transcoded bold text.
  1897. Each filter is called with three arguments: the transcoded data,
  1898. as a string, the back-end, as a symbol, and the communication
  1899. channel, as a plist. It must return a string or nil.")
  1900. (defvar org-export-filter-code-functions nil
  1901. "List of functions applied to transcoded code text.
  1902. Each filter is called with three arguments: the transcoded data,
  1903. as a string, the back-end, as a symbol, and the communication
  1904. channel, as a plist. It must return a string or nil.")
  1905. (defvar org-export-filter-entity-functions nil
  1906. "List of functions applied to a transcoded entity.
  1907. Each filter is called with three arguments: the transcoded data,
  1908. as a string, the back-end, as a symbol, and the communication
  1909. channel, as a plist. It must return a string or nil.")
  1910. (defvar org-export-filter-export-snippet-functions nil
  1911. "List of functions applied to a transcoded export-snippet.
  1912. Each filter is called with three arguments: the transcoded data,
  1913. as a string, the back-end, as a symbol, and the communication
  1914. channel, as a plist. It must return a string or nil.")
  1915. (defvar org-export-filter-footnote-reference-functions nil
  1916. "List of functions applied to a transcoded footnote-reference.
  1917. Each filter is called with three arguments: the transcoded data,
  1918. as a string, the back-end, as a symbol, and the communication
  1919. channel, as a plist. It must return a string or nil.")
  1920. (defvar org-export-filter-inline-babel-call-functions nil
  1921. "List of functions applied to a transcoded inline-babel-call.
  1922. Each filter is called with three arguments: the transcoded data,
  1923. as a string, the back-end, as a symbol, and the communication
  1924. channel, as a plist. It must return a string or nil.")
  1925. (defvar org-export-filter-inline-src-block-functions nil
  1926. "List of functions applied to a transcoded inline-src-block.
  1927. Each filter is called with three arguments: the transcoded data,
  1928. as a string, the back-end, as a symbol, and the communication
  1929. channel, as a plist. It must return a string or nil.")
  1930. (defvar org-export-filter-italic-functions nil
  1931. "List of functions applied to transcoded italic text.
  1932. Each filter is called with three arguments: the transcoded data,
  1933. as a string, the back-end, as a symbol, and the communication
  1934. channel, as a plist. It must return a string or nil.")
  1935. (defvar org-export-filter-latex-fragment-functions nil
  1936. "List of functions applied to a transcoded latex-fragment.
  1937. Each filter is called with three arguments: the transcoded data,
  1938. as a string, the back-end, as a symbol, and the communication
  1939. channel, as a plist. It must return a string or nil.")
  1940. (defvar org-export-filter-line-break-functions nil
  1941. "List of functions applied to a transcoded line-break.
  1942. Each filter is called with three arguments: the transcoded data,
  1943. as a string, the back-end, as a symbol, and the communication
  1944. channel, as a plist. It must return a string or nil.")
  1945. (defvar org-export-filter-link-functions nil
  1946. "List of functions applied to a transcoded link.
  1947. Each filter is called with three arguments: the transcoded data,
  1948. as a string, the back-end, as a symbol, and the communication
  1949. channel, as a plist. It must return a string or nil.")
  1950. (defvar org-export-filter-macro-functions nil
  1951. "List of functions applied to a transcoded macro.
  1952. Each filter is called with three arguments: the transcoded data,
  1953. as a string, the back-end, as a symbol, and the communication
  1954. channel, as a plist. It must return a string or nil.")
  1955. (defvar org-export-filter-radio-target-functions nil
  1956. "List of functions applied to a transcoded radio-target.
  1957. Each filter is called with three arguments: the transcoded data,
  1958. as a string, the back-end, as a symbol, and the communication
  1959. channel, as a plist. It must return a string or nil.")
  1960. (defvar org-export-filter-statistics-cookie-functions nil
  1961. "List of functions applied to a transcoded statistics-cookie.
  1962. Each filter is called with three arguments: the transcoded data,
  1963. as a string, the back-end, as a symbol, and the communication
  1964. channel, as a plist. It must return a string or nil.")
  1965. (defvar org-export-filter-strike-through-functions nil
  1966. "List of functions applied to transcoded strike-through text.
  1967. Each filter is called with three arguments: the transcoded data,
  1968. as a string, the back-end, as a symbol, and the communication
  1969. channel, as a plist. It must return a string or nil.")
  1970. (defvar org-export-filter-subscript-functions nil
  1971. "List of functions applied to a transcoded subscript.
  1972. Each filter is called with three arguments: the transcoded data,
  1973. as a string, the back-end, as a symbol, and the communication
  1974. channel, as a plist. It must return a string or nil.")
  1975. (defvar org-export-filter-superscript-functions nil
  1976. "List of functions applied to a transcoded superscript.
  1977. Each filter is called with three arguments: the transcoded data,
  1978. as a string, the back-end, as a symbol, and the communication
  1979. channel, as a plist. It must return a string or nil.")
  1980. (defvar org-export-filter-target-functions nil
  1981. "List of functions applied to a transcoded target.
  1982. Each filter is called with three arguments: the transcoded data,
  1983. as a string, the back-end, as a symbol, and the communication
  1984. channel, as a plist. It must return a string or nil.")
  1985. (defvar org-export-filter-timestamp-functions nil
  1986. "List of functions applied to a transcoded timestamp.
  1987. Each filter is called with three arguments: the transcoded data,
  1988. as a string, the back-end, as a symbol, and the communication
  1989. channel, as a plist. It must return a string or nil.")
  1990. (defvar org-export-filter-underline-functions nil
  1991. "List of functions applied to transcoded underline text.
  1992. Each filter is called with three arguments: the transcoded data,
  1993. as a string, the back-end, as a symbol, and the communication
  1994. channel, as a plist. It must return a string or nil.")
  1995. (defvar org-export-filter-verbatim-functions nil
  1996. "List of functions applied to transcoded verbatim text.
  1997. Each filter is called with three arguments: the transcoded data,
  1998. as a string, the back-end, as a symbol, and the communication
  1999. channel, as a plist. It must return a string or nil.")
  2000. ;;;; Filters Tools
  2001. ;;
  2002. ;; Internal function `org-export-install-filters' installs filters
  2003. ;; hard-coded in back-ends (developer filters) and filters from global
  2004. ;; variables (user filters) in the communication channel.
  2005. ;;
  2006. ;; Internal function `org-export-filter-apply-functions' takes care
  2007. ;; about applying each filter in order to a given data. It stops
  2008. ;; whenever a filter returns a nil value.
  2009. (defun org-export-filter-apply-functions (filters value info)
  2010. "Call every function in FILTERS.
  2011. Functions are called with arguments VALUE, current export
  2012. back-end and INFO. Call is done in a LIFO fashion, to be sure
  2013. that developer specified filters, if any, are called first."
  2014. (loop for filter in filters
  2015. if (not value) return nil else
  2016. do (setq value (funcall filter value (plist-get info :back-end) info)))
  2017. value)
  2018. (defun org-export-install-filters (info)
  2019. "Install filters properties in communication channel.
  2020. INFO is a plist containing the current communication channel.
  2021. Return the updated communication channel."
  2022. (let (plist)
  2023. ;; Install user defined filters with `org-export-filters-alist'.
  2024. (mapc (lambda (p)
  2025. (setq plist (plist-put plist (car p) (eval (cdr p)))))
  2026. org-export-filters-alist)
  2027. ;; Prepend back-end specific filters to that list.
  2028. (let ((back-end-filters (intern (format "org-%s-filters-alist"
  2029. (plist-get info :back-end)))))
  2030. (when (boundp back-end-filters)
  2031. (mapc (lambda (p)
  2032. ;; Single values get consed, lists are prepended.
  2033. (let ((key (car p)) (value (cdr p)))
  2034. (when value
  2035. (setq plist
  2036. (plist-put
  2037. plist key
  2038. (if (atom value) (cons value (plist-get plist key))
  2039. (append value (plist-get plist key))))))))
  2040. (eval back-end-filters))))
  2041. ;; Return new communication channel.
  2042. (org-combine-plists info plist)))
  2043. ;;; Core functions
  2044. ;;
  2045. ;; This is the room for the main function, `org-export-as', along with
  2046. ;; its derivatives, `org-export-to-buffer' and `org-export-to-file'.
  2047. ;; They differ only by the way they output the resulting code.
  2048. ;;
  2049. ;; `org-export-output-file-name' is an auxiliary function meant to be
  2050. ;; used with `org-export-to-file'. With a given extension, it tries
  2051. ;; to provide a canonical file name to write export output to.
  2052. ;;
  2053. ;; Note that `org-export-as' doesn't really parse the current buffer,
  2054. ;; but a copy of it (with the same buffer-local variables and
  2055. ;; visibility), where include keywords are expanded and Babel blocks
  2056. ;; are executed, if appropriate.
  2057. ;; `org-export-with-current-buffer-copy' macro prepares that copy.
  2058. ;;
  2059. ;; File inclusion is taken care of by
  2060. ;; `org-export-expand-include-keyword' and
  2061. ;; `org-export-prepare-file-contents'. Structure wise, including
  2062. ;; a whole Org file in a buffer often makes little sense. For
  2063. ;; example, if the file contains an headline and the include keyword
  2064. ;; was within an item, the item should contain the headline. That's
  2065. ;; why file inclusion should be done before any structure can be
  2066. ;; associated to the file, that is before parsing.
  2067. (defvar org-current-export-file) ; Dynamically scoped
  2068. (defvar org-export-current-backend) ; Dynamically scoped
  2069. (defun org-export-as
  2070. (backend &optional subtreep visible-only body-only ext-plist noexpand)
  2071. "Transcode current Org buffer into BACKEND code.
  2072. If narrowing is active in the current buffer, only transcode its
  2073. narrowed part.
  2074. If a region is active, transcode that region.
  2075. When optional argument SUBTREEP is non-nil, transcode the
  2076. sub-tree at point, extracting information from the headline
  2077. properties first.
  2078. When optional argument VISIBLE-ONLY is non-nil, don't export
  2079. contents of hidden elements.
  2080. When optional argument BODY-ONLY is non-nil, only return body
  2081. code, without preamble nor postamble.
  2082. Optional argument EXT-PLIST, when provided, is a property list
  2083. with external parameters overriding Org default settings, but
  2084. still inferior to file-local settings.
  2085. Optional argument NOEXPAND, when non-nil, prevents included files
  2086. to be expanded and Babel code to be executed.
  2087. Return code as a string."
  2088. (save-excursion
  2089. (save-restriction
  2090. ;; Narrow buffer to an appropriate region or subtree for
  2091. ;; parsing. If parsing subtree, be sure to remove main headline
  2092. ;; too.
  2093. (cond ((org-region-active-p)
  2094. (narrow-to-region (region-beginning) (region-end)))
  2095. (subtreep
  2096. (org-narrow-to-subtree)
  2097. (goto-char (point-min))
  2098. (forward-line)
  2099. (narrow-to-region (point) (point-max))))
  2100. ;; 1. Get export environment from original buffer. Also install
  2101. ;; user's and developer's filters.
  2102. (let ((info (org-export-install-filters
  2103. (org-export-get-environment backend subtreep ext-plist)))
  2104. ;; 2. Get parse tree. Buffer isn't parsed directly.
  2105. ;; Instead, a temporary copy is created, where include
  2106. ;; keywords are expanded and code blocks are evaluated.
  2107. (tree (let ((buf (or (buffer-file-name (buffer-base-buffer))
  2108. (current-buffer))))
  2109. (org-export-with-current-buffer-copy
  2110. (unless noexpand
  2111. (org-export-expand-include-keyword)
  2112. ;; Setting `org-current-export-file' is
  2113. ;; required by Org Babel to properly resolve
  2114. ;; noweb references.
  2115. (let ((org-current-export-file buf))
  2116. (org-export-blocks-preprocess)))
  2117. (goto-char (point-min))
  2118. ;; Run hook with `org-export-current-backend' set
  2119. ;; to BACKEND.
  2120. (let ((org-export-current-backend backend))
  2121. (run-hooks 'org-export-before-parsing-hook))
  2122. ;; Eventually parse buffer.
  2123. (org-element-parse-buffer nil visible-only)))))
  2124. ;; 3. Call parse-tree filters to get the final tree.
  2125. (setq tree
  2126. (org-export-filter-apply-functions
  2127. (plist-get info :filter-parse-tree) tree info))
  2128. ;; 4. Now tree is complete, compute its properties and add
  2129. ;; them to communication channel.
  2130. (setq info
  2131. (org-combine-plists
  2132. info (org-export-collect-tree-properties tree info)))
  2133. ;; 5. Eventually transcode TREE. Wrap the resulting string
  2134. ;; into a template, if required. Eventually call
  2135. ;; final-output filter.
  2136. (let* ((body (org-element-normalize-string (org-export-data tree info)))
  2137. (template (cdr (assq 'template
  2138. (plist-get info :translate-alist))))
  2139. (output (org-export-filter-apply-functions
  2140. (plist-get info :filter-final-output)
  2141. (if (or (not (functionp template)) body-only) body
  2142. (funcall template body info))
  2143. info)))
  2144. ;; Maybe add final OUTPUT to kill ring, then return it.
  2145. (when org-export-copy-to-kill-ring (org-kill-new output))
  2146. output)))))
  2147. (defun org-export-to-buffer
  2148. (backend buffer &optional subtreep visible-only body-only ext-plist noexpand)
  2149. "Call `org-export-as' with output to a specified buffer.
  2150. BACKEND is the back-end used for transcoding, as a symbol.
  2151. BUFFER is the output buffer. If it already exists, it will be
  2152. erased first, otherwise, it will be created.
  2153. Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY, EXT-PLIST
  2154. and NOEXPAND are similar to those used in `org-export-as', which
  2155. see.
  2156. Return buffer."
  2157. (let ((out (org-export-as
  2158. backend subtreep visible-only body-only ext-plist noexpand))
  2159. (buffer (get-buffer-create buffer)))
  2160. (with-current-buffer buffer
  2161. (erase-buffer)
  2162. (insert out)
  2163. (goto-char (point-min)))
  2164. buffer))
  2165. (defun org-export-to-file
  2166. (backend file &optional subtreep visible-only body-only ext-plist noexpand)
  2167. "Call `org-export-as' with output to a specified file.
  2168. BACKEND is the back-end used for transcoding, as a symbol. FILE
  2169. is the name of the output file, as a string.
  2170. Optional arguments SUBTREEP, VISIBLE-ONLY, BODY-ONLY, EXT-PLIST
  2171. and NOEXPAND are similar to those used in `org-export-as', which
  2172. see.
  2173. Return output file's name."
  2174. ;; Checks for FILE permissions. `write-file' would do the same, but
  2175. ;; we'd rather avoid needless transcoding of parse tree.
  2176. (unless (file-writable-p file) (error "Output file not writable"))
  2177. ;; Insert contents to a temporary buffer and write it to FILE.
  2178. (let ((out (org-export-as
  2179. backend subtreep visible-only body-only ext-plist noexpand)))
  2180. (with-temp-buffer
  2181. (insert out)
  2182. (let ((coding-system-for-write org-export-coding-system))
  2183. (write-file file))))
  2184. ;; Return full path.
  2185. file)
  2186. (defun org-export-output-file-name (extension &optional subtreep pub-dir)
  2187. "Return output file's name according to buffer specifications.
  2188. EXTENSION is a string representing the output file extension,
  2189. with the leading dot.
  2190. With a non-nil optional argument SUBTREEP, try to determine
  2191. output file's name by looking for \"EXPORT_FILE_NAME\" property
  2192. of subtree at point.
  2193. When optional argument PUB-DIR is set, use it as the publishing
  2194. directory.
  2195. When optional argument VISIBLE-ONLY is non-nil, don't export
  2196. contents of hidden elements.
  2197. Return file name as a string, or nil if it couldn't be
  2198. determined."
  2199. (let ((base-name
  2200. ;; File name may come from EXPORT_FILE_NAME subtree property,
  2201. ;; assuming point is at beginning of said sub-tree.
  2202. (file-name-sans-extension
  2203. (or (and subtreep
  2204. (org-entry-get
  2205. (save-excursion
  2206. (ignore-errors (org-back-to-heading) (point)))
  2207. "EXPORT_FILE_NAME" t))
  2208. ;; File name may be extracted from buffer's associated
  2209. ;; file, if any.
  2210. (buffer-file-name (buffer-base-buffer))
  2211. ;; Can't determine file name on our own: Ask user.
  2212. (let ((read-file-name-function
  2213. (and org-completion-use-ido 'ido-read-file-name)))
  2214. (read-file-name
  2215. "Output file: " pub-dir nil nil nil
  2216. (lambda (name)
  2217. (string= (file-name-extension name t) extension))))))))
  2218. ;; Build file name. Enforce EXTENSION over whatever user may have
  2219. ;; come up with. PUB-DIR, if defined, always has precedence over
  2220. ;; any provided path.
  2221. (cond
  2222. (pub-dir
  2223. (concat (file-name-as-directory pub-dir)
  2224. (file-name-nondirectory base-name)
  2225. extension))
  2226. ((string= (file-name-nondirectory base-name) base-name)
  2227. (concat (file-name-as-directory ".") base-name extension))
  2228. (t (concat base-name extension)))))
  2229. (defmacro org-export-with-current-buffer-copy (&rest body)
  2230. "Apply BODY in a copy of the current buffer.
  2231. The copy preserves local variables and visibility of the original
  2232. buffer.
  2233. Point is at buffer's beginning when BODY is applied."
  2234. (org-with-gensyms (original-buffer offset buffer-string overlays)
  2235. `(let ((,original-buffer (current-buffer))
  2236. (,offset (1- (point-min)))
  2237. (,buffer-string (buffer-string))
  2238. (,overlays (mapcar
  2239. 'copy-overlay (overlays-in (point-min) (point-max)))))
  2240. (with-temp-buffer
  2241. (let ((buffer-invisibility-spec nil))
  2242. (org-clone-local-variables
  2243. ,original-buffer
  2244. "^\\(org-\\|orgtbl-\\|major-mode$\\|outline-\\(regexp\\|level\\)$\\)")
  2245. (insert ,buffer-string)
  2246. (mapc (lambda (ov)
  2247. (move-overlay
  2248. ov
  2249. (- (overlay-start ov) ,offset)
  2250. (- (overlay-end ov) ,offset)
  2251. (current-buffer)))
  2252. ,overlays)
  2253. (goto-char (point-min))
  2254. (progn ,@body))))))
  2255. (def-edebug-spec org-export-with-current-buffer-copy (body))
  2256. (defun org-export-expand-include-keyword (&optional included dir)
  2257. "Expand every include keyword in buffer.
  2258. Optional argument INCLUDED is a list of included file names along
  2259. with their line restriction, when appropriate. It is used to
  2260. avoid infinite recursion. Optional argument DIR is the current
  2261. working directory. It is used to properly resolve relative
  2262. paths."
  2263. (let ((case-fold-search t))
  2264. (goto-char (point-min))
  2265. (while (re-search-forward "^[ \t]*#\\+INCLUDE: \\(.*\\)" nil t)
  2266. (when (eq (org-element-type (save-match-data (org-element-at-point)))
  2267. 'keyword)
  2268. (beginning-of-line)
  2269. ;; Extract arguments from keyword's value.
  2270. (let* ((value (match-string 1))
  2271. (ind (org-get-indentation))
  2272. (file (and (string-match "^\"\\(\\S-+\\)\"" value)
  2273. (prog1 (expand-file-name (match-string 1 value) dir)
  2274. (setq value (replace-match "" nil nil value)))))
  2275. (lines
  2276. (and (string-match
  2277. ":lines +\"\\(\\(?:[0-9]+\\)?-\\(?:[0-9]+\\)?\\)\"" value)
  2278. (prog1 (match-string 1 value)
  2279. (setq value (replace-match "" nil nil value)))))
  2280. (env (cond ((string-match "\\<example\\>" value) 'example)
  2281. ((string-match "\\<src\\(?: +\\(.*\\)\\)?" value)
  2282. (match-string 1 value))))
  2283. ;; Minimal level of included file defaults to the child
  2284. ;; level of the current headline, if any, or one. It
  2285. ;; only applies is the file is meant to be included as
  2286. ;; an Org one.
  2287. (minlevel
  2288. (and (not env)
  2289. (if (string-match ":minlevel +\\([0-9]+\\)" value)
  2290. (prog1 (string-to-number (match-string 1 value))
  2291. (setq value (replace-match "" nil nil value)))
  2292. (let ((cur (org-current-level)))
  2293. (if cur (1+ (org-reduced-level cur)) 1))))))
  2294. ;; Remove keyword.
  2295. (delete-region (point) (progn (forward-line) (point)))
  2296. (cond
  2297. ((not (file-readable-p file)) (error "Cannot include file %s" file))
  2298. ;; Check if files has already been parsed. Look after
  2299. ;; inclusion lines too, as different parts of the same file
  2300. ;; can be included too.
  2301. ((member (list file lines) included)
  2302. (error "Recursive file inclusion: %s" file))
  2303. (t
  2304. (cond
  2305. ((eq env 'example)
  2306. (insert
  2307. (let ((ind-str (make-string ind ? ))
  2308. (contents
  2309. ;; Protect sensitive contents with commas.
  2310. (replace-regexp-in-string
  2311. "\\(^\\)\\([*]\\|[ \t]*#\\+\\)" ","
  2312. (org-export-prepare-file-contents file lines)
  2313. nil nil 1)))
  2314. (format "%s#+BEGIN_EXAMPLE\n%s%s#+END_EXAMPLE\n"
  2315. ind-str contents ind-str))))
  2316. ((stringp env)
  2317. (insert
  2318. (let ((ind-str (make-string ind ? ))
  2319. (contents
  2320. ;; Protect sensitive contents with commas.
  2321. (replace-regexp-in-string
  2322. (if (string= env "org") "\\(^\\)\\(.\\)"
  2323. "\\(^\\)\\([*]\\|[ \t]*#\\+\\)") ","
  2324. (org-export-prepare-file-contents file lines)
  2325. nil nil 1)))
  2326. (format "%s#+BEGIN_SRC %s\n%s%s#+END_SRC\n"
  2327. ind-str env contents ind-str))))
  2328. (t
  2329. (insert
  2330. (with-temp-buffer
  2331. (org-mode)
  2332. (insert
  2333. (org-export-prepare-file-contents file lines ind minlevel))
  2334. (org-export-expand-include-keyword
  2335. (cons (list file lines) included)
  2336. (file-name-directory file))
  2337. (buffer-string))))))))))))
  2338. (defun org-export-prepare-file-contents (file &optional lines ind minlevel)
  2339. "Prepare the contents of FILE for inclusion and return them as a string.
  2340. When optional argument LINES is a string specifying a range of
  2341. lines, include only those lines.
  2342. Optional argument IND, when non-nil, is an integer specifying the
  2343. global indentation of returned contents. Since its purpose is to
  2344. allow an included file to stay in the same environment it was
  2345. created \(i.e. a list item), it doesn't apply past the first
  2346. headline encountered.
  2347. Optional argument MINLEVEL, when non-nil, is an integer
  2348. specifying the level that any top-level headline in the included
  2349. file should have."
  2350. (with-temp-buffer
  2351. (insert-file-contents file)
  2352. (when lines
  2353. (let* ((lines (split-string lines "-"))
  2354. (lbeg (string-to-number (car lines)))
  2355. (lend (string-to-number (cadr lines)))
  2356. (beg (if (zerop lbeg) (point-min)
  2357. (goto-char (point-min))
  2358. (forward-line (1- lbeg))
  2359. (point)))
  2360. (end (if (zerop lend) (point-max)
  2361. (goto-char (point-min))
  2362. (forward-line (1- lend))
  2363. (point))))
  2364. (narrow-to-region beg end)))
  2365. ;; Remove blank lines at beginning and end of contents. The logic
  2366. ;; behind that removal is that blank lines around include keyword
  2367. ;; override blank lines in included file.
  2368. (goto-char (point-min))
  2369. (org-skip-whitespace)
  2370. (beginning-of-line)
  2371. (delete-region (point-min) (point))
  2372. (goto-char (point-max))
  2373. (skip-chars-backward " \r\t\n")
  2374. (forward-line)
  2375. (delete-region (point) (point-max))
  2376. ;; If IND is set, preserve indentation of include keyword until
  2377. ;; the first headline encountered.
  2378. (when ind
  2379. (unless (eq major-mode 'org-mode) (org-mode))
  2380. (goto-char (point-min))
  2381. (let ((ind-str (make-string ind ? )))
  2382. (while (not (or (eobp) (looking-at org-outline-regexp-bol)))
  2383. ;; Do not move footnote definitions out of column 0.
  2384. (unless (and (looking-at org-footnote-definition-re)
  2385. (eq (org-element-type (org-element-at-point))
  2386. 'footnote-definition))
  2387. (insert ind-str))
  2388. (forward-line))))
  2389. ;; When MINLEVEL is specified, compute minimal level for headlines
  2390. ;; in the file (CUR-MIN), and remove stars to each headline so
  2391. ;; that headlines with minimal level have a level of MINLEVEL.
  2392. (when minlevel
  2393. (unless (eq major-mode 'org-mode) (org-mode))
  2394. (let ((levels (org-map-entries
  2395. (lambda () (org-reduced-level (org-current-level))))))
  2396. (when levels
  2397. (let ((offset (- minlevel (apply 'min levels))))
  2398. (unless (zerop offset)
  2399. (when org-odd-levels-only (setq offset (* offset 2)))
  2400. ;; Only change stars, don't bother moving whole
  2401. ;; sections.
  2402. (org-map-entries
  2403. (lambda () (if (< offset 0) (delete-char (abs offset))
  2404. (insert (make-string offset ?*))))))))))
  2405. (buffer-string)))
  2406. ;;; Tools For Back-Ends
  2407. ;;
  2408. ;; A whole set of tools is available to help build new exporters. Any
  2409. ;; function general enough to have its use across many back-ends
  2410. ;; should be added here.
  2411. ;;
  2412. ;; As of now, functions operating on footnotes, headlines, links,
  2413. ;; macros, references, src-blocks, tables and tables of contents are
  2414. ;; implemented.
  2415. ;;;; For Affiliated Keywords
  2416. ;;
  2417. ;; `org-export-read-attribute' reads a property from a given element
  2418. ;; as a plist. It can be used to normalize affiliated keywords'
  2419. ;; syntax.
  2420. (defun org-export-read-attribute (attribute element)
  2421. "Turn ATTRIBUTE property from ELEMENT into a plist.
  2422. This function assumes attributes are defined as \":keyword
  2423. value\" pairs. It is appropriate for `:attr_html' like
  2424. properties."
  2425. (let ((value (org-element-property attribute element)))
  2426. (and value
  2427. (read (format "(%s)" (mapconcat 'identity value " "))))))
  2428. ;;;; For Export Snippets
  2429. ;;
  2430. ;; Every export snippet is transmitted to the back-end. Though, the
  2431. ;; latter will only retain one type of export-snippet, ignoring
  2432. ;; others, based on the former's target back-end. The function
  2433. ;; `org-export-snippet-backend' returns that back-end for a given
  2434. ;; export-snippet.
  2435. (defun org-export-snippet-backend (export-snippet)
  2436. "Return EXPORT-SNIPPET targeted back-end as a symbol.
  2437. Translation, with `org-export-snippet-translation-alist', is
  2438. applied."
  2439. (let ((back-end (org-element-property :back-end export-snippet)))
  2440. (intern
  2441. (or (cdr (assoc back-end org-export-snippet-translation-alist))
  2442. back-end))))
  2443. ;;;; For Footnotes
  2444. ;;
  2445. ;; `org-export-collect-footnote-definitions' is a tool to list
  2446. ;; actually used footnotes definitions in the whole parse tree, or in
  2447. ;; an headline, in order to add footnote listings throughout the
  2448. ;; transcoded data.
  2449. ;;
  2450. ;; `org-export-footnote-first-reference-p' is a predicate used by some
  2451. ;; back-ends, when they need to attach the footnote definition only to
  2452. ;; the first occurrence of the corresponding label.
  2453. ;;
  2454. ;; `org-export-get-footnote-definition' and
  2455. ;; `org-export-get-footnote-number' provide easier access to
  2456. ;; additional information relative to a footnote reference.
  2457. (defun org-export-collect-footnote-definitions (data info)
  2458. "Return an alist between footnote numbers, labels and definitions.
  2459. DATA is the parse tree from which definitions are collected.
  2460. INFO is the plist used as a communication channel.
  2461. Definitions are sorted by order of references. They either
  2462. appear as Org data or as a secondary string for inlined
  2463. footnotes. Unreferenced definitions are ignored."
  2464. (let* (num-alist
  2465. collect-fn ; for byte-compiler.
  2466. (collect-fn
  2467. (function
  2468. (lambda (data)
  2469. ;; Collect footnote number, label and definition in DATA.
  2470. (org-element-map
  2471. data 'footnote-reference
  2472. (lambda (fn)
  2473. (when (org-export-footnote-first-reference-p fn info)
  2474. (let ((def (org-export-get-footnote-definition fn info)))
  2475. (push
  2476. (list (org-export-get-footnote-number fn info)
  2477. (org-element-property :label fn)
  2478. def)
  2479. num-alist)
  2480. ;; Also search in definition for nested footnotes.
  2481. (when (eq (org-element-property :type fn) 'standard)
  2482. (funcall collect-fn def)))))
  2483. ;; Don't enter footnote definitions since it will happen
  2484. ;; when their first reference is found.
  2485. info nil 'footnote-definition)))))
  2486. (funcall collect-fn (plist-get info :parse-tree))
  2487. (reverse num-alist)))
  2488. (defun org-export-footnote-first-reference-p (footnote-reference info)
  2489. "Non-nil when a footnote reference is the first one for its label.
  2490. FOOTNOTE-REFERENCE is the footnote reference being considered.
  2491. INFO is the plist used as a communication channel."
  2492. (let ((label (org-element-property :label footnote-reference)))
  2493. ;; Anonymous footnotes are always a first reference.
  2494. (if (not label) t
  2495. ;; Otherwise, return the first footnote with the same LABEL and
  2496. ;; test if it is equal to FOOTNOTE-REFERENCE.
  2497. (let* (search-refs ; for byte-compiler.
  2498. (search-refs
  2499. (function
  2500. (lambda (data)
  2501. (org-element-map
  2502. data 'footnote-reference
  2503. (lambda (fn)
  2504. (cond
  2505. ((string= (org-element-property :label fn) label)
  2506. (throw 'exit fn))
  2507. ;; If FN isn't inlined, be sure to traverse its
  2508. ;; definition before resuming search. See
  2509. ;; comments in `org-export-get-footnote-number'
  2510. ;; for more information.
  2511. ((eq (org-element-property :type fn) 'standard)
  2512. (funcall search-refs
  2513. (org-export-get-footnote-definition fn info)))))
  2514. ;; Don't enter footnote definitions since it will
  2515. ;; happen when their first reference is found.
  2516. info 'first-match 'footnote-definition)))))
  2517. (eq (catch 'exit (funcall search-refs (plist-get info :parse-tree)))
  2518. footnote-reference)))))
  2519. (defun org-export-get-footnote-definition (footnote-reference info)
  2520. "Return definition of FOOTNOTE-REFERENCE as parsed data.
  2521. INFO is the plist used as a communication channel."
  2522. (let ((label (org-element-property :label footnote-reference)))
  2523. (or (org-element-property :inline-definition footnote-reference)
  2524. (cdr (assoc label (plist-get info :footnote-definition-alist))))))
  2525. (defun org-export-get-footnote-number (footnote info)
  2526. "Return number associated to a footnote.
  2527. FOOTNOTE is either a footnote reference or a footnote definition.
  2528. INFO is the plist used as a communication channel."
  2529. (let* ((label (org-element-property :label footnote))
  2530. seen-refs
  2531. search-ref ; for byte-compiler.
  2532. (search-ref
  2533. (function
  2534. (lambda (data)
  2535. ;; Search footnote references through DATA, filling
  2536. ;; SEEN-REFS along the way.
  2537. (org-element-map
  2538. data 'footnote-reference
  2539. (lambda (fn)
  2540. (let ((fn-lbl (org-element-property :label fn)))
  2541. (cond
  2542. ;; Anonymous footnote match: return number.
  2543. ((and (not fn-lbl) (eq fn footnote))
  2544. (throw 'exit (1+ (length seen-refs))))
  2545. ;; Labels match: return number.
  2546. ((and label (string= label fn-lbl))
  2547. (throw 'exit (1+ (length seen-refs))))
  2548. ;; Anonymous footnote: it's always a new one. Also,
  2549. ;; be sure to return nil from the `cond' so
  2550. ;; `first-match' doesn't get us out of the loop.
  2551. ((not fn-lbl) (push 'inline seen-refs) nil)
  2552. ;; Label not seen so far: add it so SEEN-REFS.
  2553. ;;
  2554. ;; Also search for subsequent references in footnote
  2555. ;; definition so numbering following reading logic.
  2556. ;; Note that we don't have to care about inline
  2557. ;; definitions, since `org-element-map' already
  2558. ;; traverse them at the right time.
  2559. ;;
  2560. ;; Once again, return nil to stay in the loop.
  2561. ((not (member fn-lbl seen-refs))
  2562. (push fn-lbl seen-refs)
  2563. (funcall search-ref
  2564. (org-export-get-footnote-definition fn info))
  2565. nil))))
  2566. ;; Don't enter footnote definitions since it will happen
  2567. ;; when their first reference is found.
  2568. info 'first-match 'footnote-definition)))))
  2569. (catch 'exit (funcall search-ref (plist-get info :parse-tree)))))
  2570. ;;;; For Headlines
  2571. ;;
  2572. ;; `org-export-get-relative-level' is a shortcut to get headline
  2573. ;; level, relatively to the lower headline level in the parsed tree.
  2574. ;;
  2575. ;; `org-export-get-headline-number' returns the section number of an
  2576. ;; headline, while `org-export-number-to-roman' allows to convert it
  2577. ;; to roman numbers.
  2578. ;;
  2579. ;; `org-export-low-level-p', `org-export-first-sibling-p' and
  2580. ;; `org-export-last-sibling-p' are three useful predicates when it
  2581. ;; comes to fulfill the `:headline-levels' property.
  2582. (defun org-export-get-relative-level (headline info)
  2583. "Return HEADLINE relative level within current parsed tree.
  2584. INFO is a plist holding contextual information."
  2585. (+ (org-element-property :level headline)
  2586. (or (plist-get info :headline-offset) 0)))
  2587. (defun org-export-low-level-p (headline info)
  2588. "Non-nil when HEADLINE is considered as low level.
  2589. INFO is a plist used as a communication channel.
  2590. A low level headlines has a relative level greater than
  2591. `:headline-levels' property value.
  2592. Return value is the difference between HEADLINE relative level
  2593. and the last level being considered as high enough, or nil."
  2594. (let ((limit (plist-get info :headline-levels)))
  2595. (when (wholenump limit)
  2596. (let ((level (org-export-get-relative-level headline info)))
  2597. (and (> level limit) (- level limit))))))
  2598. (defun org-export-get-headline-number (headline info)
  2599. "Return HEADLINE numbering as a list of numbers.
  2600. INFO is a plist holding contextual information."
  2601. (cdr (assoc headline (plist-get info :headline-numbering))))
  2602. (defun org-export-numbered-headline-p (headline info)
  2603. "Return a non-nil value if HEADLINE element should be numbered.
  2604. INFO is a plist used as a communication channel."
  2605. (let ((sec-num (plist-get info :section-numbers))
  2606. (level (org-export-get-relative-level headline info)))
  2607. (if (wholenump sec-num) (<= level sec-num) sec-num)))
  2608. (defun org-export-number-to-roman (n)
  2609. "Convert integer N into a roman numeral."
  2610. (let ((roman '((1000 . "M") (900 . "CM") (500 . "D") (400 . "CD")
  2611. ( 100 . "C") ( 90 . "XC") ( 50 . "L") ( 40 . "XL")
  2612. ( 10 . "X") ( 9 . "IX") ( 5 . "V") ( 4 . "IV")
  2613. ( 1 . "I")))
  2614. (res ""))
  2615. (if (<= n 0)
  2616. (number-to-string n)
  2617. (while roman
  2618. (if (>= n (caar roman))
  2619. (setq n (- n (caar roman))
  2620. res (concat res (cdar roman)))
  2621. (pop roman)))
  2622. res)))
  2623. (defun org-export-get-tags (element info &optional tags)
  2624. "Return list of tags associated to ELEMENT.
  2625. ELEMENT has either an `headline' or an `inlinetask' type. INFO
  2626. is a plist used as a communication channel.
  2627. Select tags (see `org-export-select-tags') and exclude tags (see
  2628. `org-export-exclude-tags') are removed from the list.
  2629. When non-nil, optional argument TAGS should be a list of strings.
  2630. Any tag belonging to this list will also be removed."
  2631. (org-remove-if (lambda (tag) (or (member tag (plist-get info :select-tags))
  2632. (member tag (plist-get info :exclude-tags))
  2633. (member tag tags)))
  2634. (org-element-property :tags element)))
  2635. (defun org-export-first-sibling-p (headline)
  2636. "Non-nil when HEADLINE is the first sibling in its sub-tree."
  2637. (not (eq (org-element-type (org-export-get-previous-element headline))
  2638. 'headline)))
  2639. (defun org-export-last-sibling-p (headline)
  2640. "Non-nil when HEADLINE is the last sibling in its sub-tree."
  2641. (not (org-export-get-next-element headline)))
  2642. ;;;; For Links
  2643. ;;
  2644. ;; `org-export-solidify-link-text' turns a string into a safer version
  2645. ;; for links, replacing most non-standard characters with hyphens.
  2646. ;;
  2647. ;; `org-export-get-coderef-format' returns an appropriate format
  2648. ;; string for coderefs.
  2649. ;;
  2650. ;; `org-export-inline-image-p' returns a non-nil value when the link
  2651. ;; provided should be considered as an inline image.
  2652. ;;
  2653. ;; `org-export-resolve-fuzzy-link' searches destination of fuzzy links
  2654. ;; (i.e. links with "fuzzy" as type) within the parsed tree, and
  2655. ;; returns an appropriate unique identifier when found, or nil.
  2656. ;;
  2657. ;; `org-export-resolve-id-link' returns the first headline with
  2658. ;; specified id or custom-id in parse tree, the path to the external
  2659. ;; file with the id or nil when neither was found.
  2660. ;;
  2661. ;; `org-export-resolve-coderef' associates a reference to a line
  2662. ;; number in the element it belongs, or returns the reference itself
  2663. ;; when the element isn't numbered.
  2664. (defun org-export-solidify-link-text (s)
  2665. "Take link text S and make a safe target out of it."
  2666. (save-match-data
  2667. (mapconcat 'identity (org-split-string s "[^a-zA-Z0-9_.-]+") "-")))
  2668. (defun org-export-get-coderef-format (path desc)
  2669. "Return format string for code reference link.
  2670. PATH is the link path. DESC is its description."
  2671. (save-match-data
  2672. (cond ((not desc) "%s")
  2673. ((string-match (regexp-quote (concat "(" path ")")) desc)
  2674. (replace-match "%s" t t desc))
  2675. (t desc))))
  2676. (defun org-export-inline-image-p (link &optional rules)
  2677. "Non-nil if LINK object points to an inline image.
  2678. Optional argument is a set of RULES defining inline images. It
  2679. is an alist where associations have the following shape:
  2680. \(TYPE . REGEXP)
  2681. Applying a rule means apply REGEXP against LINK's path when its
  2682. type is TYPE. The function will return a non-nil value if any of
  2683. the provided rules is non-nil. The default rule is
  2684. `org-export-default-inline-image-rule'.
  2685. This only applies to links without a description."
  2686. (and (not (org-element-contents link))
  2687. (let ((case-fold-search t)
  2688. (rules (or rules org-export-default-inline-image-rule)))
  2689. (catch 'exit
  2690. (mapc
  2691. (lambda (rule)
  2692. (and (string= (org-element-property :type link) (car rule))
  2693. (string-match (cdr rule)
  2694. (org-element-property :path link))
  2695. (throw 'exit t)))
  2696. rules)
  2697. ;; Return nil if no rule matched.
  2698. nil))))
  2699. (defun org-export-resolve-coderef (ref info)
  2700. "Resolve a code reference REF.
  2701. INFO is a plist used as a communication channel.
  2702. Return associated line number in source code, or REF itself,
  2703. depending on src-block or example element's switches."
  2704. (org-element-map
  2705. (plist-get info :parse-tree) '(example-block src-block)
  2706. (lambda (el)
  2707. (with-temp-buffer
  2708. (insert (org-trim (org-element-property :value el)))
  2709. (let* ((label-fmt (regexp-quote
  2710. (or (org-element-property :label-fmt el)
  2711. org-coderef-label-format)))
  2712. (ref-re
  2713. (format "^.*?\\S-.*?\\([ \t]*\\(%s\\)\\)[ \t]*$"
  2714. (replace-regexp-in-string "%s" ref label-fmt nil t))))
  2715. ;; Element containing REF is found. Resolve it to either
  2716. ;; a label or a line number, as needed.
  2717. (when (re-search-backward ref-re nil t)
  2718. (cond
  2719. ((org-element-property :use-labels el) ref)
  2720. ((eq (org-element-property :number-lines el) 'continued)
  2721. (+ (org-export-get-loc el info) (line-number-at-pos)))
  2722. (t (line-number-at-pos)))))))
  2723. info 'first-match))
  2724. (defun org-export-resolve-fuzzy-link (link info)
  2725. "Return LINK destination.
  2726. INFO is a plist holding contextual information.
  2727. Return value can be an object, an element, or nil:
  2728. - If LINK path matches a target object (i.e. <<path>>) or
  2729. element (i.e. \"#+TARGET: path\"), return it.
  2730. - If LINK path exactly matches the name affiliated keyword
  2731. \(i.e. #+NAME: path) of an element, return that element.
  2732. - If LINK path exactly matches any headline name, return that
  2733. element. If more than one headline share that name, priority
  2734. will be given to the one with the closest common ancestor, if
  2735. any, or the first one in the parse tree otherwise.
  2736. - Otherwise, return nil.
  2737. Assume LINK type is \"fuzzy\"."
  2738. (let* ((path (org-element-property :path link))
  2739. (match-title-p (eq (aref path 0) ?*)))
  2740. (cond
  2741. ;; First try to find a matching "<<path>>" unless user specified
  2742. ;; he was looking for an headline (path starts with a *
  2743. ;; character).
  2744. ((and (not match-title-p)
  2745. (loop for target in (plist-get info :target-list)
  2746. when (string= (org-element-property :value target) path)
  2747. return target)))
  2748. ;; Then try to find an element with a matching "#+NAME: path"
  2749. ;; affiliated keyword.
  2750. ((and (not match-title-p)
  2751. (org-element-map
  2752. (plist-get info :parse-tree) org-element-all-elements
  2753. (lambda (el)
  2754. (when (string= (org-element-property :name el) path) el))
  2755. info 'first-match)))
  2756. ;; Last case: link either points to an headline or to
  2757. ;; nothingness. Try to find the source, with priority given to
  2758. ;; headlines with the closest common ancestor. If such candidate
  2759. ;; is found, return it, otherwise return nil.
  2760. (t
  2761. (let ((find-headline
  2762. (function
  2763. ;; Return first headline whose `:raw-value' property
  2764. ;; is NAME in parse tree DATA, or nil.
  2765. (lambda (name data)
  2766. (org-element-map
  2767. data 'headline
  2768. (lambda (headline)
  2769. (when (string=
  2770. (org-element-property :raw-value headline)
  2771. name)
  2772. headline))
  2773. info 'first-match)))))
  2774. ;; Search among headlines sharing an ancestor with link,
  2775. ;; from closest to farthest.
  2776. (or (catch 'exit
  2777. (mapc
  2778. (lambda (parent)
  2779. (when (eq (org-element-type parent) 'headline)
  2780. (let ((foundp (funcall find-headline path parent)))
  2781. (when foundp (throw 'exit foundp)))))
  2782. (org-export-get-genealogy link)) nil)
  2783. ;; No match with a common ancestor: try the full parse-tree.
  2784. (funcall find-headline
  2785. (if match-title-p (substring path 1) path)
  2786. (plist-get info :parse-tree))))))))
  2787. (defun org-export-resolve-id-link (link info)
  2788. "Return headline referenced as LINK destination.
  2789. INFO is a plist used as a communication channel.
  2790. Return value can be the headline element matched in current parse
  2791. tree, a file name or nil. Assume LINK type is either \"id\" or
  2792. \"custom-id\"."
  2793. (let ((id (org-element-property :path link)))
  2794. ;; First check if id is within the current parse tree.
  2795. (or (org-element-map
  2796. (plist-get info :parse-tree) 'headline
  2797. (lambda (headline)
  2798. (when (or (string= (org-element-property :id headline) id)
  2799. (string= (org-element-property :custom-id headline) id))
  2800. headline))
  2801. info 'first-match)
  2802. ;; Otherwise, look for external files.
  2803. (cdr (assoc id (plist-get info :id-alist))))))
  2804. (defun org-export-resolve-radio-link (link info)
  2805. "Return radio-target object referenced as LINK destination.
  2806. INFO is a plist used as a communication channel.
  2807. Return value can be a radio-target object or nil. Assume LINK
  2808. has type \"radio\"."
  2809. (let ((path (org-element-property :path link)))
  2810. (org-element-map
  2811. (plist-get info :parse-tree) 'radio-target
  2812. (lambda (radio)
  2813. (when (equal (org-element-property :value radio) path) radio))
  2814. info 'first-match)))
  2815. ;;;; For Macros
  2816. ;;
  2817. ;; `org-export-expand-macro' simply takes care of expanding macros.
  2818. (defun org-export-expand-macro (macro info)
  2819. "Expand MACRO and return it as a string.
  2820. INFO is a plist holding export options."
  2821. (let* ((key (org-element-property :key macro))
  2822. (args (org-element-property :args macro))
  2823. ;; User's macros are stored in the communication channel with
  2824. ;; a ":macro-" prefix. Replace arguments in VALUE. Also
  2825. ;; expand recursively macros within.
  2826. (value (org-export-data
  2827. (mapcar
  2828. (lambda (obj)
  2829. (if (not (stringp obj)) (org-export-data obj info)
  2830. (replace-regexp-in-string
  2831. "\\$[0-9]+"
  2832. (lambda (arg)
  2833. (nth (1- (string-to-number (substring arg 1))) args))
  2834. obj)))
  2835. (plist-get info (intern (format ":macro-%s" key))))
  2836. info)))
  2837. ;; VALUE starts with "(eval": it is a s-exp, `eval' it.
  2838. (when (string-match "\\`(eval\\>" value) (setq value (eval (read value))))
  2839. ;; Return string.
  2840. (format "%s" (or value ""))))
  2841. ;;;; For References
  2842. ;;
  2843. ;; `org-export-get-ordinal' associates a sequence number to any object
  2844. ;; or element.
  2845. (defun org-export-get-ordinal (element info &optional types predicate)
  2846. "Return ordinal number of an element or object.
  2847. ELEMENT is the element or object considered. INFO is the plist
  2848. used as a communication channel.
  2849. Optional argument TYPES, when non-nil, is a list of element or
  2850. object types, as symbols, that should also be counted in.
  2851. Otherwise, only provided element's type is considered.
  2852. Optional argument PREDICATE is a function returning a non-nil
  2853. value if the current element or object should be counted in. It
  2854. accepts two arguments: the element or object being considered and
  2855. the plist used as a communication channel. This allows to count
  2856. only a certain type of objects (i.e. inline images).
  2857. Return value is a list of numbers if ELEMENT is an headline or an
  2858. item. It is nil for keywords. It represents the footnote number
  2859. for footnote definitions and footnote references. If ELEMENT is
  2860. a target, return the same value as if ELEMENT was the closest
  2861. table, item or headline containing the target. In any other
  2862. case, return the sequence number of ELEMENT among elements or
  2863. objects of the same type."
  2864. ;; A target keyword, representing an invisible target, never has
  2865. ;; a sequence number.
  2866. (unless (eq (org-element-type element) 'keyword)
  2867. ;; Ordinal of a target object refer to the ordinal of the closest
  2868. ;; table, item, or headline containing the object.
  2869. (when (eq (org-element-type element) 'target)
  2870. (setq element
  2871. (loop for parent in (org-export-get-genealogy element)
  2872. when
  2873. (memq
  2874. (org-element-type parent)
  2875. '(footnote-definition footnote-reference headline item
  2876. table))
  2877. return parent)))
  2878. (case (org-element-type element)
  2879. ;; Special case 1: An headline returns its number as a list.
  2880. (headline (org-export-get-headline-number element info))
  2881. ;; Special case 2: An item returns its number as a list.
  2882. (item (let ((struct (org-element-property :structure element)))
  2883. (org-list-get-item-number
  2884. (org-element-property :begin element)
  2885. struct
  2886. (org-list-prevs-alist struct)
  2887. (org-list-parents-alist struct))))
  2888. ((footnote-definition footnote-reference)
  2889. (org-export-get-footnote-number element info))
  2890. (otherwise
  2891. (let ((counter 0))
  2892. ;; Increment counter until ELEMENT is found again.
  2893. (org-element-map
  2894. (plist-get info :parse-tree) (or types (org-element-type element))
  2895. (lambda (el)
  2896. (cond
  2897. ((eq element el) (1+ counter))
  2898. ((not predicate) (incf counter) nil)
  2899. ((funcall predicate el info) (incf counter) nil)))
  2900. info 'first-match))))))
  2901. ;;;; For Src-Blocks
  2902. ;;
  2903. ;; `org-export-get-loc' counts number of code lines accumulated in
  2904. ;; src-block or example-block elements with a "+n" switch until
  2905. ;; a given element, excluded. Note: "-n" switches reset that count.
  2906. ;;
  2907. ;; `org-export-unravel-code' extracts source code (along with a code
  2908. ;; references alist) from an `element-block' or `src-block' type
  2909. ;; element.
  2910. ;;
  2911. ;; `org-export-format-code' applies a formatting function to each line
  2912. ;; of code, providing relative line number and code reference when
  2913. ;; appropriate. Since it doesn't access the original element from
  2914. ;; which the source code is coming, it expects from the code calling
  2915. ;; it to know if lines should be numbered and if code references
  2916. ;; should appear.
  2917. ;;
  2918. ;; Eventually, `org-export-format-code-default' is a higher-level
  2919. ;; function (it makes use of the two previous functions) which handles
  2920. ;; line numbering and code references inclusion, and returns source
  2921. ;; code in a format suitable for plain text or verbatim output.
  2922. (defun org-export-get-loc (element info)
  2923. "Return accumulated lines of code up to ELEMENT.
  2924. INFO is the plist used as a communication channel.
  2925. ELEMENT is excluded from count."
  2926. (let ((loc 0))
  2927. (org-element-map
  2928. (plist-get info :parse-tree)
  2929. `(src-block example-block ,(org-element-type element))
  2930. (lambda (el)
  2931. (cond
  2932. ;; ELEMENT is reached: Quit the loop.
  2933. ((eq el element))
  2934. ;; Only count lines from src-block and example-block elements
  2935. ;; with a "+n" or "-n" switch. A "-n" switch resets counter.
  2936. ((not (memq (org-element-type el) '(src-block example-block))) nil)
  2937. ((let ((linums (org-element-property :number-lines el)))
  2938. (when linums
  2939. ;; Accumulate locs or reset them.
  2940. (let ((lines (org-count-lines
  2941. (org-trim (org-element-property :value el)))))
  2942. (setq loc (if (eq linums 'new) lines (+ loc lines))))))
  2943. ;; Return nil to stay in the loop.
  2944. nil)))
  2945. info 'first-match)
  2946. ;; Return value.
  2947. loc))
  2948. (defun org-export-unravel-code (element)
  2949. "Clean source code and extract references out of it.
  2950. ELEMENT has either a `src-block' an `example-block' type.
  2951. Return a cons cell whose CAR is the source code, cleaned from any
  2952. reference and protective comma and CDR is an alist between
  2953. relative line number (integer) and name of code reference on that
  2954. line (string)."
  2955. (let* ((line 0) refs
  2956. ;; Get code and clean it. Remove blank lines at its
  2957. ;; beginning and end. Also remove protective commas.
  2958. (code (let ((c (replace-regexp-in-string
  2959. "\\`\\([ \t]*\n\\)+" ""
  2960. (replace-regexp-in-string
  2961. "\\(:?[ \t]*\n\\)*[ \t]*\\'" "\n"
  2962. (org-element-property :value element)))))
  2963. ;; If appropriate, remove global indentation.
  2964. (unless (or org-src-preserve-indentation
  2965. (org-element-property :preserve-indent element))
  2966. (setq c (org-remove-indentation c)))
  2967. ;; Free up the protected lines. Note: Org blocks
  2968. ;; have commas at the beginning or every line.
  2969. (if (string= (org-element-property :language element) "org")
  2970. (replace-regexp-in-string "^," "" c)
  2971. (replace-regexp-in-string
  2972. "^\\(,\\)\\(:?\\*\\|[ \t]*#\\+\\)" "" c nil nil 1))))
  2973. ;; Get format used for references.
  2974. (label-fmt (regexp-quote
  2975. (or (org-element-property :label-fmt element)
  2976. org-coderef-label-format)))
  2977. ;; Build a regexp matching a loc with a reference.
  2978. (with-ref-re
  2979. (format "^.*?\\S-.*?\\([ \t]*\\(%s\\)[ \t]*\\)$"
  2980. (replace-regexp-in-string
  2981. "%s" "\\([-a-zA-Z0-9_ ]+\\)" label-fmt nil t))))
  2982. ;; Return value.
  2983. (cons
  2984. ;; Code with references removed.
  2985. (org-element-normalize-string
  2986. (mapconcat
  2987. (lambda (loc)
  2988. (incf line)
  2989. (if (not (string-match with-ref-re loc)) loc
  2990. ;; Ref line: remove ref, and signal its position in REFS.
  2991. (push (cons line (match-string 3 loc)) refs)
  2992. (replace-match "" nil nil loc 1)))
  2993. (org-split-string code "\n") "\n"))
  2994. ;; Reference alist.
  2995. refs)))
  2996. (defun org-export-format-code (code fun &optional num-lines ref-alist)
  2997. "Format CODE by applying FUN line-wise and return it.
  2998. CODE is a string representing the code to format. FUN is
  2999. a function. It must accept three arguments: a line of
  3000. code (string), the current line number (integer) or nil and the
  3001. reference associated to the current line (string) or nil.
  3002. Optional argument NUM-LINES can be an integer representing the
  3003. number of code lines accumulated until the current code. Line
  3004. numbers passed to FUN will take it into account. If it is nil,
  3005. FUN's second argument will always be nil. This number can be
  3006. obtained with `org-export-get-loc' function.
  3007. Optional argument REF-ALIST can be an alist between relative line
  3008. number (i.e. ignoring NUM-LINES) and the name of the code
  3009. reference on it. If it is nil, FUN's third argument will always
  3010. be nil. It can be obtained through the use of
  3011. `org-export-unravel-code' function."
  3012. (let ((--locs (org-split-string code "\n"))
  3013. (--line 0))
  3014. (org-element-normalize-string
  3015. (mapconcat
  3016. (lambda (--loc)
  3017. (incf --line)
  3018. (let ((--ref (cdr (assq --line ref-alist))))
  3019. (funcall fun --loc (and num-lines (+ num-lines --line)) --ref)))
  3020. --locs "\n"))))
  3021. (defun org-export-format-code-default (element info)
  3022. "Return source code from ELEMENT, formatted in a standard way.
  3023. ELEMENT is either a `src-block' or `example-block' element. INFO
  3024. is a plist used as a communication channel.
  3025. This function takes care of line numbering and code references
  3026. inclusion. Line numbers, when applicable, appear at the
  3027. beginning of the line, separated from the code by two white
  3028. spaces. Code references, on the other hand, appear flushed to
  3029. the right, separated by six white spaces from the widest line of
  3030. code."
  3031. ;; Extract code and references.
  3032. (let* ((code-info (org-export-unravel-code element))
  3033. (code (car code-info))
  3034. (code-lines (org-split-string code "\n"))
  3035. (refs (and (org-element-property :retain-labels element)
  3036. (cdr code-info)))
  3037. ;; Handle line numbering.
  3038. (num-start (case (org-element-property :number-lines element)
  3039. (continued (org-export-get-loc element info))
  3040. (new 0)))
  3041. (num-fmt
  3042. (and num-start
  3043. (format "%%%ds "
  3044. (length (number-to-string
  3045. (+ (length code-lines) num-start))))))
  3046. ;; Prepare references display, if required. Any reference
  3047. ;; should start six columns after the widest line of code,
  3048. ;; wrapped with parenthesis.
  3049. (max-width
  3050. (+ (apply 'max (mapcar 'length code-lines))
  3051. (if (not num-start) 0 (length (format num-fmt num-start))))))
  3052. (org-export-format-code
  3053. code
  3054. (lambda (loc line-num ref)
  3055. (let ((number-str (and num-fmt (format num-fmt line-num))))
  3056. (concat
  3057. number-str
  3058. loc
  3059. (and ref
  3060. (concat (make-string
  3061. (- (+ 6 max-width)
  3062. (+ (length loc) (length number-str))) ? )
  3063. (format "(%s)" ref))))))
  3064. num-start refs)))
  3065. ;;;; For Tables
  3066. ;;
  3067. ;; `org-export-table-has-special-column-p' and and
  3068. ;; `org-export-table-row-is-special-p' are predicates used to look for
  3069. ;; meta-information about the table structure.
  3070. ;;
  3071. ;; `org-table-has-header-p' tells when the rows before the first rule
  3072. ;; should be considered as table's header.
  3073. ;;
  3074. ;; `org-export-table-cell-width', `org-export-table-cell-alignment'
  3075. ;; and `org-export-table-cell-borders' extract information from
  3076. ;; a table-cell element.
  3077. ;;
  3078. ;; `org-export-table-dimensions' gives the number on rows and columns
  3079. ;; in the table, ignoring horizontal rules and special columns.
  3080. ;; `org-export-table-cell-address', given a table-cell object, returns
  3081. ;; the absolute address of a cell. On the other hand,
  3082. ;; `org-export-get-table-cell-at' does the contrary.
  3083. ;;
  3084. ;; `org-export-table-cell-starts-colgroup-p',
  3085. ;; `org-export-table-cell-ends-colgroup-p',
  3086. ;; `org-export-table-row-starts-rowgroup-p',
  3087. ;; `org-export-table-row-ends-rowgroup-p',
  3088. ;; `org-export-table-row-starts-header-p' and
  3089. ;; `org-export-table-row-ends-header-p' indicate position of current
  3090. ;; row or cell within the table.
  3091. (defun org-export-table-has-special-column-p (table)
  3092. "Non-nil when TABLE has a special column.
  3093. All special columns will be ignored during export."
  3094. ;; The table has a special column when every first cell of every row
  3095. ;; has an empty value or contains a symbol among "/", "#", "!", "$",
  3096. ;; "*" "_" and "^". Though, do not consider a first row containing
  3097. ;; only empty cells as special.
  3098. (let ((special-column-p 'empty))
  3099. (catch 'exit
  3100. (mapc
  3101. (lambda (row)
  3102. (when (eq (org-element-property :type row) 'standard)
  3103. (let ((value (org-element-contents
  3104. (car (org-element-contents row)))))
  3105. (cond ((member value '(("/") ("#") ("!") ("$") ("*") ("_") ("^")))
  3106. (setq special-column-p 'special))
  3107. ((not value))
  3108. (t (throw 'exit nil))))))
  3109. (org-element-contents table))
  3110. (eq special-column-p 'special))))
  3111. (defun org-export-table-has-header-p (table info)
  3112. "Non-nil when TABLE has an header.
  3113. INFO is a plist used as a communication channel.
  3114. A table has an header when it contains at least two row groups."
  3115. (let ((rowgroup 1) row-flag)
  3116. (org-element-map
  3117. table 'table-row
  3118. (lambda (row)
  3119. (cond
  3120. ((> rowgroup 1) t)
  3121. ((and row-flag (eq (org-element-property :type row) 'rule))
  3122. (incf rowgroup) (setq row-flag nil))
  3123. ((and (not row-flag) (eq (org-element-property :type row) 'standard))
  3124. (setq row-flag t) nil)))
  3125. info)))
  3126. (defun org-export-table-row-is-special-p (table-row info)
  3127. "Non-nil if TABLE-ROW is considered special.
  3128. INFO is a plist used as the communication channel.
  3129. All special rows will be ignored during export."
  3130. (when (eq (org-element-property :type table-row) 'standard)
  3131. (let ((first-cell (org-element-contents
  3132. (car (org-element-contents table-row)))))
  3133. ;; A row is special either when...
  3134. (or
  3135. ;; ... it starts with a field only containing "/",
  3136. (equal first-cell '("/"))
  3137. ;; ... the table contains a special column and the row start
  3138. ;; with a marking character among, "^", "_", "$" or "!",
  3139. (and (org-export-table-has-special-column-p
  3140. (org-export-get-parent table-row))
  3141. (member first-cell '(("^") ("_") ("$") ("!"))))
  3142. ;; ... it contains only alignment cookies and empty cells.
  3143. (let ((special-row-p 'empty))
  3144. (catch 'exit
  3145. (mapc
  3146. (lambda (cell)
  3147. (let ((value (org-element-contents cell)))
  3148. ;; Since VALUE is a secondary string, the following
  3149. ;; checks avoid expanding it with `org-export-data'.
  3150. (cond ((not value))
  3151. ((and (not (cdr value))
  3152. (stringp (car value))
  3153. (string-match "\\`<[lrc]?\\([0-9]+\\)?>\\'"
  3154. (car value)))
  3155. (setq special-row-p 'cookie))
  3156. (t (throw 'exit nil)))))
  3157. (org-element-contents table-row))
  3158. (eq special-row-p 'cookie)))))))
  3159. (defun org-export-table-row-group (table-row info)
  3160. "Return TABLE-ROW's group.
  3161. INFO is a plist used as the communication channel.
  3162. Return value is the group number, as an integer, or nil special
  3163. rows and table rules. Group 1 is also table's header."
  3164. (unless (or (eq (org-element-property :type table-row) 'rule)
  3165. (org-export-table-row-is-special-p table-row info))
  3166. (let ((group 0) row-flag)
  3167. (catch 'found
  3168. (mapc
  3169. (lambda (row)
  3170. (cond
  3171. ((and (eq (org-element-property :type row) 'standard)
  3172. (not (org-export-table-row-is-special-p row info)))
  3173. (unless row-flag (incf group) (setq row-flag t)))
  3174. ((eq (org-element-property :type row) 'rule)
  3175. (setq row-flag nil)))
  3176. (when (eq table-row row) (throw 'found group)))
  3177. (org-element-contents (org-export-get-parent table-row)))))))
  3178. (defun org-export-table-cell-width (table-cell info)
  3179. "Return TABLE-CELL contents width.
  3180. INFO is a plist used as the communication channel.
  3181. Return value is the width given by the last width cookie in the
  3182. same column as TABLE-CELL, or nil."
  3183. (let* ((row (org-export-get-parent table-cell))
  3184. (column (let ((cells (org-element-contents row)))
  3185. (- (length cells) (length (member table-cell cells)))))
  3186. (table (org-export-get-parent-table table-cell))
  3187. cookie-width)
  3188. (mapc
  3189. (lambda (row)
  3190. (cond
  3191. ;; In a special row, try to find a width cookie at COLUMN.
  3192. ((org-export-table-row-is-special-p row info)
  3193. (let ((value (org-element-contents
  3194. (elt (org-element-contents row) column))))
  3195. ;; The following checks avoid expanding unnecessarily the
  3196. ;; cell with `org-export-data'
  3197. (when (and value
  3198. (not (cdr value))
  3199. (stringp (car value))
  3200. (string-match "\\`<[lrc]?\\([0-9]+\\)?>\\'" (car value))
  3201. (match-string 1 (car value)))
  3202. (setq cookie-width
  3203. (string-to-number (match-string 1 (car value)))))))
  3204. ;; Ignore table rules.
  3205. ((eq (org-element-property :type row) 'rule))))
  3206. (org-element-contents table))
  3207. ;; Return value.
  3208. cookie-width))
  3209. (defun org-export-table-cell-alignment (table-cell info)
  3210. "Return TABLE-CELL contents alignment.
  3211. INFO is a plist used as the communication channel.
  3212. Return alignment as specified by the last alignment cookie in the
  3213. same column as TABLE-CELL. If no such cookie is found, a default
  3214. alignment value will be deduced from fraction of numbers in the
  3215. column (see `org-table-number-fraction' for more information).
  3216. Possible values are `left', `right' and `center'."
  3217. (let* ((row (org-export-get-parent table-cell))
  3218. (column (let ((cells (org-element-contents row)))
  3219. (- (length cells) (length (member table-cell cells)))))
  3220. (table (org-export-get-parent-table table-cell))
  3221. (number-cells 0)
  3222. (total-cells 0)
  3223. cookie-align)
  3224. (mapc
  3225. (lambda (row)
  3226. (cond
  3227. ;; In a special row, try to find an alignment cookie at
  3228. ;; COLUMN.
  3229. ((org-export-table-row-is-special-p row info)
  3230. (let ((value (org-element-contents
  3231. (elt (org-element-contents row) column))))
  3232. ;; Since VALUE is a secondary string, the following checks
  3233. ;; avoid useless expansion through `org-export-data'.
  3234. (when (and value
  3235. (not (cdr value))
  3236. (stringp (car value))
  3237. (string-match "\\`<\\([lrc]\\)?\\([0-9]+\\)?>\\'"
  3238. (car value))
  3239. (match-string 1 (car value)))
  3240. (setq cookie-align (match-string 1 (car value))))))
  3241. ;; Ignore table rules.
  3242. ((eq (org-element-property :type row) 'rule))
  3243. ;; In a standard row, check if cell's contents are expressing
  3244. ;; some kind of number. Increase NUMBER-CELLS accordingly.
  3245. ;; Though, don't bother if an alignment cookie has already
  3246. ;; defined cell's alignment.
  3247. ((not cookie-align)
  3248. (let ((value (org-export-data
  3249. (org-element-contents
  3250. (elt (org-element-contents row) column))
  3251. info)))
  3252. (incf total-cells)
  3253. (when (string-match org-table-number-regexp value)
  3254. (incf number-cells))))))
  3255. (org-element-contents table))
  3256. ;; Return value. Alignment specified by cookies has precedence
  3257. ;; over alignment deduced from cells contents.
  3258. (cond ((equal cookie-align "l") 'left)
  3259. ((equal cookie-align "r") 'right)
  3260. ((equal cookie-align "c") 'center)
  3261. ((>= (/ (float number-cells) total-cells) org-table-number-fraction)
  3262. 'right)
  3263. (t 'left))))
  3264. (defun org-export-table-cell-borders (table-cell info)
  3265. "Return TABLE-CELL borders.
  3266. INFO is a plist used as a communication channel.
  3267. Return value is a list of symbols, or nil. Possible values are:
  3268. `top', `bottom', `above', `below', `left' and `right'. Note:
  3269. `top' (resp. `bottom') only happen for a cell in the first
  3270. row (resp. last row) of the table, ignoring table rules, if any.
  3271. Returned borders ignore special rows."
  3272. (let* ((row (org-export-get-parent table-cell))
  3273. (table (org-export-get-parent-table table-cell))
  3274. borders)
  3275. ;; Top/above border? TABLE-CELL has a border above when a rule
  3276. ;; used to demarcate row groups can be found above. Hence,
  3277. ;; finding a rule isn't sufficient to push `above' in BORDERS:
  3278. ;; another regular row has to be found above that rule.
  3279. (let (rule-flag)
  3280. (catch 'exit
  3281. (mapc (lambda (row)
  3282. (cond ((eq (org-element-property :type row) 'rule)
  3283. (setq rule-flag t))
  3284. ((not (org-export-table-row-is-special-p row info))
  3285. (if rule-flag (throw 'exit (push 'above borders))
  3286. (throw 'exit nil)))))
  3287. ;; Look at every row before the current one.
  3288. (cdr (member row (reverse (org-element-contents table)))))
  3289. ;; No rule above, or rule found starts the table (ignoring any
  3290. ;; special row): TABLE-CELL is at the top of the table.
  3291. (when rule-flag (push 'above borders))
  3292. (push 'top borders)))
  3293. ;; Bottom/below border? TABLE-CELL has a border below when next
  3294. ;; non-regular row below is a rule.
  3295. (let (rule-flag)
  3296. (catch 'exit
  3297. (mapc (lambda (row)
  3298. (cond ((eq (org-element-property :type row) 'rule)
  3299. (setq rule-flag t))
  3300. ((not (org-export-table-row-is-special-p row info))
  3301. (if rule-flag (throw 'exit (push 'below borders))
  3302. (throw 'exit nil)))))
  3303. ;; Look at every row after the current one.
  3304. (cdr (member row (org-element-contents table))))
  3305. ;; No rule below, or rule found ends the table (modulo some
  3306. ;; special row): TABLE-CELL is at the bottom of the table.
  3307. (when rule-flag (push 'below borders))
  3308. (push 'bottom borders)))
  3309. ;; Right/left borders? They can only be specified by column
  3310. ;; groups. Column groups are defined in a row starting with "/".
  3311. ;; Also a column groups row only contains "<", "<>", ">" or blank
  3312. ;; cells.
  3313. (catch 'exit
  3314. (let ((column (let ((cells (org-element-contents row)))
  3315. (- (length cells) (length (member table-cell cells))))))
  3316. (mapc
  3317. (lambda (row)
  3318. (unless (eq (org-element-property :type row) 'rule)
  3319. (when (equal (org-element-contents
  3320. (car (org-element-contents row)))
  3321. '("/"))
  3322. (let ((column-groups
  3323. (mapcar
  3324. (lambda (cell)
  3325. (let ((value (org-element-contents cell)))
  3326. (when (member value '(("<") ("<>") (">") nil))
  3327. (car value))))
  3328. (org-element-contents row))))
  3329. ;; There's a left border when previous cell, if
  3330. ;; any, ends a group, or current one starts one.
  3331. (when (or (and (not (zerop column))
  3332. (member (elt column-groups (1- column))
  3333. '(">" "<>")))
  3334. (member (elt column-groups column) '("<" "<>")))
  3335. (push 'left borders))
  3336. ;; There's a right border when next cell, if any,
  3337. ;; starts a group, or current one ends one.
  3338. (when (or (and (/= (1+ column) (length column-groups))
  3339. (member (elt column-groups (1+ column))
  3340. '("<" "<>")))
  3341. (member (elt column-groups column) '(">" "<>")))
  3342. (push 'right borders))
  3343. (throw 'exit nil)))))
  3344. ;; Table rows are read in reverse order so last column groups
  3345. ;; row has precedence over any previous one.
  3346. (reverse (org-element-contents table)))))
  3347. ;; Return value.
  3348. borders))
  3349. (defun org-export-table-cell-starts-colgroup-p (table-cell info)
  3350. "Non-nil when TABLE-CELL is at the beginning of a row group.
  3351. INFO is a plist used as a communication channel."
  3352. ;; A cell starts a column group either when it is at the beginning
  3353. ;; of a row (or after the special column, if any) or when it has
  3354. ;; a left border.
  3355. (or (eq (org-element-map
  3356. (org-export-get-parent table-cell)
  3357. 'table-cell 'identity info 'first-match)
  3358. table-cell)
  3359. (memq 'left (org-export-table-cell-borders table-cell info))))
  3360. (defun org-export-table-cell-ends-colgroup-p (table-cell info)
  3361. "Non-nil when TABLE-CELL is at the end of a row group.
  3362. INFO is a plist used as a communication channel."
  3363. ;; A cell ends a column group either when it is at the end of a row
  3364. ;; or when it has a right border.
  3365. (or (eq (car (last (org-element-contents
  3366. (org-export-get-parent table-cell))))
  3367. table-cell)
  3368. (memq 'right (org-export-table-cell-borders table-cell info))))
  3369. (defun org-export-table-row-starts-rowgroup-p (table-row info)
  3370. "Non-nil when TABLE-ROW is at the beginning of a column group.
  3371. INFO is a plist used as a communication channel."
  3372. (unless (or (eq (org-element-property :type table-row) 'rule)
  3373. (org-export-table-row-is-special-p table-row info))
  3374. (let ((borders (org-export-table-cell-borders
  3375. (car (org-element-contents table-row)) info)))
  3376. (or (memq 'top borders) (memq 'above borders)))))
  3377. (defun org-export-table-row-ends-rowgroup-p (table-row info)
  3378. "Non-nil when TABLE-ROW is at the end of a column group.
  3379. INFO is a plist used as a communication channel."
  3380. (unless (or (eq (org-element-property :type table-row) 'rule)
  3381. (org-export-table-row-is-special-p table-row info))
  3382. (let ((borders (org-export-table-cell-borders
  3383. (car (org-element-contents table-row)) info)))
  3384. (or (memq 'bottom borders) (memq 'below borders)))))
  3385. (defun org-export-table-row-starts-header-p (table-row info)
  3386. "Non-nil when TABLE-ROW is the first table header's row.
  3387. INFO is a plist used as a communication channel."
  3388. (and (org-export-table-has-header-p
  3389. (org-export-get-parent-table table-row) info)
  3390. (org-export-table-row-starts-rowgroup-p table-row info)
  3391. (= (org-export-table-row-group table-row info) 1)))
  3392. (defun org-export-table-row-ends-header-p (table-row info)
  3393. "Non-nil when TABLE-ROW is the last table header's row.
  3394. INFO is a plist used as a communication channel."
  3395. (and (org-export-table-has-header-p
  3396. (org-export-get-parent-table table-row) info)
  3397. (org-export-table-row-ends-rowgroup-p table-row info)
  3398. (= (org-export-table-row-group table-row info) 1)))
  3399. (defun org-export-table-dimensions (table info)
  3400. "Return TABLE dimensions.
  3401. INFO is a plist used as a communication channel.
  3402. Return value is a CONS like (ROWS . COLUMNS) where
  3403. ROWS (resp. COLUMNS) is the number of exportable
  3404. rows (resp. columns)."
  3405. (let (first-row (columns 0) (rows 0))
  3406. ;; Set number of rows, and extract first one.
  3407. (org-element-map
  3408. table 'table-row
  3409. (lambda (row)
  3410. (when (eq (org-element-property :type row) 'standard)
  3411. (incf rows)
  3412. (unless first-row (setq first-row row)))) info)
  3413. ;; Set number of columns.
  3414. (org-element-map first-row 'table-cell (lambda (cell) (incf columns)) info)
  3415. ;; Return value.
  3416. (cons rows columns)))
  3417. (defun org-export-table-cell-address (table-cell info)
  3418. "Return address of a regular TABLE-CELL object.
  3419. TABLE-CELL is the cell considered. INFO is a plist used as
  3420. a communication channel.
  3421. Address is a CONS cell (ROW . COLUMN), where ROW and COLUMN are
  3422. zero-based index. Only exportable cells are considered. The
  3423. function returns nil for other cells."
  3424. (let* ((table-row (org-export-get-parent table-cell))
  3425. (table (org-export-get-parent-table table-cell)))
  3426. ;; Ignore cells in special rows or in special column.
  3427. (unless (or (org-export-table-row-is-special-p table-row info)
  3428. (and (org-export-table-has-special-column-p table)
  3429. (eq (car (org-element-contents table-row)) table-cell)))
  3430. (cons
  3431. ;; Row number.
  3432. (let ((row-count 0))
  3433. (org-element-map
  3434. table 'table-row
  3435. (lambda (row)
  3436. (cond ((eq (org-element-property :type row) 'rule) nil)
  3437. ((eq row table-row) row-count)
  3438. (t (incf row-count) nil)))
  3439. info 'first-match))
  3440. ;; Column number.
  3441. (let ((col-count 0))
  3442. (org-element-map
  3443. table-row 'table-cell
  3444. (lambda (cell)
  3445. (if (eq cell table-cell) col-count (incf col-count) nil))
  3446. info 'first-match))))))
  3447. (defun org-export-get-table-cell-at (address table info)
  3448. "Return regular table-cell object at ADDRESS in TABLE.
  3449. Address is a CONS cell (ROW . COLUMN), where ROW and COLUMN are
  3450. zero-based index. TABLE is a table type element. INFO is
  3451. a plist used as a communication channel.
  3452. If no table-cell, among exportable cells, is found at ADDRESS,
  3453. return nil."
  3454. (let ((column-pos (cdr address)) (column-count 0))
  3455. (org-element-map
  3456. ;; Row at (car address) or nil.
  3457. (let ((row-pos (car address)) (row-count 0))
  3458. (org-element-map
  3459. table 'table-row
  3460. (lambda (row)
  3461. (cond ((eq (org-element-property :type row) 'rule) nil)
  3462. ((= row-count row-pos) row)
  3463. (t (incf row-count) nil)))
  3464. info 'first-match))
  3465. 'table-cell
  3466. (lambda (cell)
  3467. (if (= column-count column-pos) cell
  3468. (incf column-count) nil))
  3469. info 'first-match)))
  3470. ;;;; For Tables Of Contents
  3471. ;;
  3472. ;; `org-export-collect-headlines' builds a list of all exportable
  3473. ;; headline elements, maybe limited to a certain depth. One can then
  3474. ;; easily parse it and transcode it.
  3475. ;;
  3476. ;; Building lists of tables, figures or listings is quite similar.
  3477. ;; Once the generic function `org-export-collect-elements' is defined,
  3478. ;; `org-export-collect-tables', `org-export-collect-figures' and
  3479. ;; `org-export-collect-listings' can be derived from it.
  3480. (defun org-export-collect-headlines (info &optional n)
  3481. "Collect headlines in order to build a table of contents.
  3482. INFO is a plist used as a communication channel.
  3483. When non-nil, optional argument N must be an integer. It
  3484. specifies the depth of the table of contents.
  3485. Return a list of all exportable headlines as parsed elements."
  3486. (org-element-map
  3487. (plist-get info :parse-tree)
  3488. 'headline
  3489. (lambda (headline)
  3490. ;; Strip contents from HEADLINE.
  3491. (let ((relative-level (org-export-get-relative-level headline info)))
  3492. (unless (and n (> relative-level n)) headline)))
  3493. info))
  3494. (defun org-export-collect-elements (type info &optional predicate)
  3495. "Collect referenceable elements of a determined type.
  3496. TYPE can be a symbol or a list of symbols specifying element
  3497. types to search. Only elements with a caption are collected.
  3498. INFO is a plist used as a communication channel.
  3499. When non-nil, optional argument PREDICATE is a function accepting
  3500. one argument, an element of type TYPE. It returns a non-nil
  3501. value when that element should be collected.
  3502. Return a list of all elements found, in order of appearance."
  3503. (org-element-map
  3504. (plist-get info :parse-tree) type
  3505. (lambda (element)
  3506. (and (org-element-property :caption element)
  3507. (or (not predicate) (funcall predicate element))
  3508. element))
  3509. info))
  3510. (defun org-export-collect-tables (info)
  3511. "Build a list of tables.
  3512. INFO is a plist used as a communication channel.
  3513. Return a list of table elements with a caption."
  3514. (org-export-collect-elements 'table info))
  3515. (defun org-export-collect-figures (info predicate)
  3516. "Build a list of figures.
  3517. INFO is a plist used as a communication channel. PREDICATE is
  3518. a function which accepts one argument: a paragraph element and
  3519. whose return value is non-nil when that element should be
  3520. collected.
  3521. A figure is a paragraph type element, with a caption, verifying
  3522. PREDICATE. The latter has to be provided since a \"figure\" is
  3523. a vague concept that may depend on back-end.
  3524. Return a list of elements recognized as figures."
  3525. (org-export-collect-elements 'paragraph info predicate))
  3526. (defun org-export-collect-listings (info)
  3527. "Build a list of src blocks.
  3528. INFO is a plist used as a communication channel.
  3529. Return a list of src-block elements with a caption."
  3530. (org-export-collect-elements 'src-block info))
  3531. ;;;; Topology
  3532. ;;
  3533. ;; Here are various functions to retrieve information about the
  3534. ;; neighbourhood of a given element or object. Neighbours of interest
  3535. ;; are direct parent (`org-export-get-parent'), parent headline
  3536. ;; (`org-export-get-parent-headline'), first element containing an
  3537. ;; object, (`org-export-get-parent-element'), parent table
  3538. ;; (`org-export-get-parent-table'), previous element or object
  3539. ;; (`org-export-get-previous-element') and next element or object
  3540. ;; (`org-export-get-next-element').
  3541. ;;
  3542. ;; `org-export-get-genealogy' returns the full genealogy of a given
  3543. ;; element or object, from closest parent to full parse tree.
  3544. (defun org-export-get-parent (blob)
  3545. "Return BLOB parent or nil.
  3546. BLOB is the element or object considered."
  3547. (org-element-property :parent blob))
  3548. (defun org-export-get-genealogy (blob)
  3549. "Return full genealogy relative to a given element or object.
  3550. BLOB is the element or object being considered.
  3551. Ancestors are returned from closest to farthest, the last one
  3552. being the full parse tree."
  3553. (let (genealogy (parent blob))
  3554. (while (setq parent (org-element-property :parent parent))
  3555. (push parent genealogy))
  3556. (nreverse genealogy)))
  3557. (defun org-export-get-parent-headline (blob)
  3558. "Return BLOB parent headline or nil.
  3559. BLOB is the element or object being considered."
  3560. (let ((parent blob))
  3561. (while (and (setq parent (org-element-property :parent parent))
  3562. (not (eq (org-element-type parent) 'headline))))
  3563. parent))
  3564. (defun org-export-get-parent-element (object)
  3565. "Return first element containing OBJECT or nil.
  3566. OBJECT is the object to consider."
  3567. (let ((parent object))
  3568. (while (and (setq parent (org-element-property :parent parent))
  3569. (memq (org-element-type parent) org-element-all-objects)))
  3570. parent))
  3571. (defun org-export-get-parent-table (object)
  3572. "Return OBJECT parent table or nil.
  3573. OBJECT is either a `table-cell' or `table-element' type object."
  3574. (let ((parent object))
  3575. (while (and (setq parent (org-element-property :parent parent))
  3576. (not (eq (org-element-type parent) 'table))))
  3577. parent))
  3578. (defun org-export-get-previous-element (blob)
  3579. "Return previous element or object.
  3580. BLOB is an element or object. Return previous element or object,
  3581. a string, or nil."
  3582. (let ((parent (org-export-get-parent blob)))
  3583. (cadr (memq blob (reverse (org-element-contents parent))))))
  3584. (defun org-export-get-next-element (blob)
  3585. "Return next element or object.
  3586. BLOB is an element or object. Return next element or object,
  3587. a string, or nil."
  3588. (let ((parent (org-export-get-parent blob)))
  3589. (cadr (memq blob (org-element-contents parent)))))
  3590. ;;;; Translation
  3591. ;;
  3592. ;; `org-export-translate' translates a string according to language
  3593. ;; specified by LANGUAGE keyword or `org-export-language-setup'
  3594. ;; variable and a specified charset. `org-export-dictionary' contains
  3595. ;; the dictionary used for the translation.
  3596. (defconst org-export-dictionary
  3597. '(("Author"
  3598. ("fr"
  3599. :ascii "Auteur"
  3600. :latin1 "Auteur"
  3601. :utf-8 "Auteur"))
  3602. ("Date"
  3603. ("fr"
  3604. :ascii "Date"
  3605. :latin1 "Date"
  3606. :utf-8 "Date"))
  3607. ("Equation")
  3608. ("Figure")
  3609. ("Footnotes"
  3610. ("fr"
  3611. :ascii "Notes de bas de page"
  3612. :latin1 "Notes de bas de page"
  3613. :utf-8 "Notes de bas de page"))
  3614. ("List of Listings"
  3615. ("fr"
  3616. :ascii "Liste des programmes"
  3617. :latin1 "Liste des programmes"
  3618. :utf-8 "Liste des programmes"))
  3619. ("List of Tables"
  3620. ("fr"
  3621. :ascii "Liste des tableaux"
  3622. :latin1 "Liste des tableaux"
  3623. :utf-8 "Liste des tableaux"))
  3624. ("Listing %d:"
  3625. ("fr"
  3626. :ascii "Programme %d :"
  3627. :latin1 "Programme %d :"
  3628. :utf-8 "Programme nº %d :"))
  3629. ("Listing %d: %s"
  3630. ("fr"
  3631. :ascii "Programme %d : %s"
  3632. :latin1 "Programme %d : %s"
  3633. :utf-8 "Programme nº %d : %s"))
  3634. ("See section %s"
  3635. ("fr"
  3636. :ascii "cf. section %s"
  3637. :latin1 "cf. section %s"
  3638. :utf-8 "cf. section %s"))
  3639. ("Table %d:"
  3640. ("fr"
  3641. :ascii "Tableau %d :"
  3642. :latin1 "Tableau %d :"
  3643. :utf-8 "Tableau nº %d :"))
  3644. ("Table %d: %s"
  3645. ("fr"
  3646. :ascii "Tableau %d : %s"
  3647. :latin1 "Tableau %d : %s"
  3648. :utf-8 "Tableau nº %d : %s"))
  3649. ("Table of Contents"
  3650. ("fr"
  3651. :ascii "Sommaire"
  3652. :latin1 "Table des matières"
  3653. :utf-8 "Table des matières"))
  3654. ("Unknown reference"
  3655. ("fr"
  3656. :ascii "Destination inconnue"
  3657. :latin1 "Référence inconnue"
  3658. :utf-8 "Référence inconnue")))
  3659. "Dictionary for export engine.
  3660. Alist whose CAR is the string to translate and CDR is an alist
  3661. whose CAR is the language string and CDR is a plist whose
  3662. properties are possible charsets and values translated terms.
  3663. It is used as a database for `org-export-translate'. Since this
  3664. function returns the string as-is if no translation was found,
  3665. the variable only needs to record values different from the
  3666. entry.")
  3667. (defun org-export-translate (s encoding info)
  3668. "Translate string S according to language specification.
  3669. ENCODING is a symbol among `:ascii', `:html', `:latex', `:latin1'
  3670. and `:utf8'. INFO is a plist used as a communication channel.
  3671. Translation depends on `:language' property. Return the
  3672. translated string. If no translation is found return S."
  3673. (let ((lang (plist-get info :language))
  3674. (translations (cdr (assoc s org-export-dictionary))))
  3675. (or (plist-get (cdr (assoc lang translations)) encoding) s)))
  3676. ;;; The Dispatcher
  3677. ;;
  3678. ;; `org-export-dispatch' is the standard interactive way to start an
  3679. ;; export process. It uses `org-export-dispatch-ui' as a subroutine
  3680. ;; for its interface. Most commons back-ends should have an entry in
  3681. ;; it.
  3682. (defun org-export-dispatch ()
  3683. "Export dispatcher for Org mode.
  3684. It provides an access to common export related tasks in a buffer.
  3685. Its interface comes in two flavours: standard and expert. While
  3686. both share the same set of bindings, only the former displays the
  3687. valid keys associations. Set `org-export-dispatch-use-expert-ui'
  3688. to switch to one or the other.
  3689. Return an error if key pressed has no associated command."
  3690. (interactive)
  3691. (let* ((input (org-export-dispatch-ui
  3692. (if (listp org-export-initial-scope) org-export-initial-scope
  3693. (list org-export-initial-scope))
  3694. org-export-dispatch-use-expert-ui))
  3695. (raw-key (car input))
  3696. (optns (cdr input)))
  3697. ;; Translate "C-a", "C-b"... into "a", "b"... Then take action
  3698. ;; depending on user's key pressed.
  3699. (case (if (< raw-key 27) (+ raw-key 96) raw-key)
  3700. ;; Allow to quit with "q" key.
  3701. (?q nil)
  3702. ;; Export with `e-ascii' back-end.
  3703. ((?A ?N ?U)
  3704. (let ((outbuf
  3705. (org-export-to-buffer
  3706. 'e-ascii "*Org E-ASCII Export*"
  3707. (memq 'subtree optns) (memq 'visible optns) (memq 'body optns)
  3708. `(:ascii-charset
  3709. ,(case raw-key (?A 'ascii) (?N 'latin1) (t 'utf-8))))))
  3710. (with-current-buffer outbuf (text-mode))
  3711. (when org-export-show-temporary-export-buffer
  3712. (switch-to-buffer-other-window outbuf))))
  3713. ((?a ?n ?u)
  3714. (org-e-ascii-export-to-ascii
  3715. (memq 'subtree optns) (memq 'visible optns) (memq 'body optns)
  3716. `(:ascii-charset ,(case raw-key (?a 'ascii) (?n 'latin1) (t 'utf-8)))))
  3717. ;; Export with `e-latex' back-end.
  3718. (?L
  3719. (let ((outbuf
  3720. (org-export-to-buffer
  3721. 'e-latex "*Org E-LaTeX Export*"
  3722. (memq 'subtree optns) (memq 'visible optns) (memq 'body optns))))
  3723. (with-current-buffer outbuf (latex-mode))
  3724. (when org-export-show-temporary-export-buffer
  3725. (switch-to-buffer-other-window outbuf))))
  3726. (?l
  3727. (org-e-latex-export-to-latex
  3728. (memq 'subtree optns) (memq 'visible optns) (memq 'body optns)))
  3729. (?p
  3730. (org-e-latex-export-to-pdf
  3731. (memq 'subtree optns) (memq 'visible optns) (memq 'body optns)))
  3732. (?d
  3733. (org-open-file
  3734. (org-e-latex-export-to-pdf
  3735. (memq 'subtree optns) (memq 'visible optns) (memq 'body optns))))
  3736. ;; Export with `e-html' back-end.
  3737. (?H
  3738. (let ((outbuf
  3739. (org-export-to-buffer
  3740. 'e-html "*Org E-HTML Export*"
  3741. (memq 'subtree optns) (memq 'visible optns) (memq 'body optns))))
  3742. ;; set major mode
  3743. (with-current-buffer outbuf (nxml-mode))
  3744. (when org-export-show-temporary-export-buffer
  3745. (switch-to-buffer-other-window outbuf))))
  3746. (?h
  3747. (org-e-html-export-to-html
  3748. (memq 'subtree optns) (memq 'visible optns) (memq 'body optns)))
  3749. (?b
  3750. (org-open-file
  3751. (org-e-html-export-to-html
  3752. (memq 'subtree optns) (memq 'visible optns) (memq 'body optns))))
  3753. ;; Export with `e-odt' back-end.
  3754. (?o
  3755. (org-e-odt-export-to-odt
  3756. (memq 'subtree optns) (memq 'visible optns) (memq 'body optns)))
  3757. (?O
  3758. (org-open-file
  3759. (org-e-odt-export-to-odt
  3760. (memq 'subtree optns) (memq 'visible optns) (memq 'body optns))))
  3761. ;; Publishing facilities
  3762. (?F
  3763. (org-e-publish-current-file (memq 'force optns)))
  3764. (?P
  3765. (org-e-publish-current-project (memq 'force optns)))
  3766. (?X
  3767. (let ((project
  3768. (assoc (org-icompleting-read
  3769. "Publish project: " org-e-publish-project-alist nil t)
  3770. org-e-publish-project-alist)))
  3771. (org-e-publish project (memq 'force optns))))
  3772. (?E
  3773. (org-e-publish-all (memq 'force optns)))
  3774. ;; Undefined command.
  3775. (t (error "No command associated with key %s"
  3776. (char-to-string raw-key))))))
  3777. (defun org-export-dispatch-ui (options expertp)
  3778. "Handle interface for `org-export-dispatch'.
  3779. OPTIONS is a list containing current interactive options set for
  3780. export. It can contain any of the following symbols:
  3781. `body' toggles a body-only export
  3782. `subtree' restricts export to current subtree
  3783. `visible' restricts export to visible part of buffer.
  3784. `force' force publishing files.
  3785. EXPERTP, when non-nil, triggers expert UI. In that case, no help
  3786. buffer is provided, but indications about currently active
  3787. options are given in the prompt. Moreover, \[?] allows to switch
  3788. back to standard interface.
  3789. Return value is a list with key pressed as CAR and a list of
  3790. final interactive export options as CDR."
  3791. (let ((help
  3792. (format "---- (Options) -------------------------------------------
  3793. \[1] Body only: %s [2] Export scope: %s
  3794. \[3] Visible only: %s [4] Force publishing: %s
  3795. --- (ASCII/Latin-1/UTF-8 Export) -------------------------
  3796. \[a/n/u] to TXT file [A/N/U] to temporary buffer
  3797. --- (HTML Export) ----------------------------------------
  3798. \[h] to HTML file [b] ... and open it
  3799. \[H] to temporary buffer
  3800. --- (LaTeX Export) ---------------------------------------
  3801. \[l] to TEX file [L] to temporary buffer
  3802. \[p] to PDF file [d] ... and open it
  3803. --- (ODF Export) -----------------------------------------
  3804. \[o] to ODT file [O] ... and open it
  3805. --- (Publish) --------------------------------------------
  3806. \[F] current file [P] current project
  3807. \[X] a project [E] every project"
  3808. (if (memq 'body options) "On " "Off")
  3809. (if (memq 'subtree options) "Subtree" "Buffer ")
  3810. (if (memq 'visible options) "On " "Off")
  3811. (if (memq 'force options) "On " "Off")))
  3812. (standard-prompt "Export command: ")
  3813. (expert-prompt (format "Export command (%s%s%s%s): "
  3814. (if (memq 'body options) "b" "-")
  3815. (if (memq 'subtree options) "s" "-")
  3816. (if (memq 'visible options) "v" "-")
  3817. (if (memq 'force options) "f" "-")))
  3818. (handle-keypress
  3819. (function
  3820. ;; Read a character from command input, toggling interactive
  3821. ;; options when applicable. PROMPT is the displayed prompt,
  3822. ;; as a string.
  3823. (lambda (prompt)
  3824. (let ((key (read-char-exclusive prompt)))
  3825. (cond
  3826. ;; Ignore non-standard characters (i.e. "M-a").
  3827. ((not (characterp key)) (org-export-dispatch-ui options expertp))
  3828. ;; Help key: Switch back to standard interface if
  3829. ;; expert UI was active.
  3830. ((eq key ??) (org-export-dispatch-ui options nil))
  3831. ;; Toggle export options.
  3832. ((memq key '(?1 ?2 ?3 ?4))
  3833. (org-export-dispatch-ui
  3834. (let ((option (case key (?1 'body) (?2 'subtree) (?3 'visible)
  3835. (?4 'force))))
  3836. (if (memq option options) (remq option options)
  3837. (cons option options)))
  3838. expertp))
  3839. ;; Action selected: Send key and options back to
  3840. ;; `org-export-dispatch'.
  3841. (t (cons key options))))))))
  3842. ;; With expert UI, just read key with a fancy prompt. In standard
  3843. ;; UI, display an intrusive help buffer.
  3844. (if expertp (funcall handle-keypress expert-prompt)
  3845. (save-window-excursion
  3846. (delete-other-windows)
  3847. (with-output-to-temp-buffer "*Org Export/Publishing Help*" (princ help))
  3848. (org-fit-window-to-buffer
  3849. (get-buffer-window "*Org Export/Publishing Help*"))
  3850. (funcall handle-keypress standard-prompt)))))
  3851. (provide 'org-export)
  3852. ;;; org-export.el ends here