org-exp.el 175 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055
  1. ;;; org-exp.el --- ASCII, HTML, XOXO and iCalendar export for Org-mode
  2. ;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 6.17trans
  7. ;;
  8. ;; This file is part of GNU Emacs.
  9. ;;
  10. ;; GNU Emacs is free software: you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation, either version 3 of the License, or
  13. ;; (at your option) any later version.
  14. ;; GNU Emacs is distributed in the hope that it will be useful,
  15. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. ;; GNU General Public License for more details.
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  20. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  21. ;;
  22. ;;; Commentary:
  23. (require 'org)
  24. (require 'org-agenda)
  25. (eval-and-compile
  26. (require 'cl))
  27. (declare-function org-export-latex-preprocess "org-export-latex" ())
  28. (declare-function org-agenda-skip "org-agenda" ())
  29. (declare-function org-infojs-options-inbuffer-template "org-jsinfo" ())
  30. (declare-function htmlize-region "ext:htmlize" (beg end))
  31. (defvar htmlize-buffer-places) ; from htmlize.el
  32. (defgroup org-export nil
  33. "Options for exporting org-listings."
  34. :tag "Org Export"
  35. :group 'org)
  36. (defgroup org-export-general nil
  37. "General options for exporting Org-mode files."
  38. :tag "Org Export General"
  39. :group 'org-export)
  40. ;; FIXME
  41. (defvar org-export-publishing-directory nil)
  42. (defcustom org-export-run-in-background nil
  43. "Non-nil means export and publishing commands will run in background.
  44. This works by starting up a separate Emacs process visiting the same file
  45. and doing the export from there.
  46. Not all export commands are affected by this - only the ones which
  47. actually write to a file, and that do not depend on the buffer state.
  48. If this option is nil, you can still get background export by calling
  49. `org-export' with a double prefix arg: `C-u C-u C-c C-e'.
  50. If this option is t, the double prefix can be used to exceptionally
  51. force an export command into the current process."
  52. :group 'org-export-general
  53. :type 'boolean)
  54. (defcustom org-export-select-tags '("export")
  55. "Tags that select a tree for export.
  56. If any such tag is found in a buffer, all trees that do not carry one
  57. of these tags will be deleted before export.
  58. Inside trees that are selected like this, you can still deselect a
  59. subtree by tagging it with one of the `org-export-exclude-tags'."
  60. :group 'org-export-general
  61. :type '(repeat (string :tag "Tag")))
  62. (defcustom org-export-exclude-tags '("noexport")
  63. "Tags that exclude a tree from export.
  64. All trees carrying any of these tags will be excluded from export.
  65. This is without condition, so even subtrees inside that carry one of the
  66. `org-export-select-tags' will be removed."
  67. :group 'org-export-general
  68. :type '(repeat (string :tag "Tag")))
  69. (defcustom org-export-with-special-strings t
  70. "Non-nil means, interpret \"\-\", \"--\" and \"---\" for export.
  71. When this option is turned on, these strings will be exported as:
  72. Org HTML LaTeX
  73. -----+----------+--------
  74. \\- &shy; \\-
  75. -- &ndash; --
  76. --- &mdash; ---
  77. ... &hellip; \ldots
  78. This option can also be set with the +OPTIONS line, e.g. \"-:nil\"."
  79. :group 'org-export-translation
  80. :type 'boolean)
  81. (defcustom org-export-language-setup
  82. '(("en" "Author" "Date" "Table of Contents" "Footnotes")
  83. ("ca" "Autor" "Data" "&Iacute;ndex" "Peus de p&agrave;gina")
  84. ("cs" "Autor" "Datum" "Obsah" "Pozn\xe1mky pod carou")
  85. ("da" "Ophavsmand" "Dato" "Indhold" "Fodnoter")
  86. ("de" "Autor" "Datum" "Inhaltsverzeichnis" "Fu&szlig;noten")
  87. ("eo" "A&#365;toro" "Dato" "Enhavo" "Piednotoj")
  88. ("es" "Autor" "Fecha" "&Iacute;ndice" "Pies de p&aacute;gina")
  89. ("fi" "Tekij&auml;" "P&auml;iv&auml;m&auml;&auml;r&auml;" "Sis&auml;llysluettelo" "Alaviitteet")
  90. ("fr" "Auteur" "Date" "Table des mati&egrave;res" "Notes de bas de page")
  91. ("hu" "Szerz&otilde;" "D&aacute;tum" "Tartalomjegyz&eacute;k" "L&aacute;bjegyzet")
  92. ("is" "H&ouml;fundur" "Dagsetning" "Efnisyfirlit" "Aftanm&aacute;lsgreinar")
  93. ("it" "Autore" "Data" "Indice" "Note a pi&egrave; di pagina")
  94. ("nl" "Auteur" "Datum" "Inhoudsopgave" "Voetnoten")
  95. ("no" "Forfatter" "Dato" "Innhold" "Fotnoter")
  96. ("nb" "Forfatter" "Dato" "Innhold" "Fotnoter") ;; nb = Norsk (bokm.l)
  97. ("nn" "Forfattar" "Dato" "Innhald" "Fotnotar") ;; nn = Norsk (nynorsk)
  98. ("pl" "Autor" "Data" "Spis tre&sacute;ci" "Przypis")
  99. ("sv" "F&ouml;rfattare" "Datum" "Inneh&aring;ll" "Fotnoter"))
  100. "Terms used in export text, translated to different languages.
  101. Use the variable `org-export-default-language' to set the language,
  102. or use the +OPTION lines for a per-file setting."
  103. :group 'org-export-general
  104. :type '(repeat
  105. (list
  106. (string :tag "HTML language tag")
  107. (string :tag "Author")
  108. (string :tag "Date")
  109. (string :tag "Table of Contents")
  110. (string :tag "Footnotes"))))
  111. (defcustom org-export-default-language "en"
  112. "The default language of HTML export, as a string.
  113. This should have an association in `org-export-language-setup'."
  114. :group 'org-export-general
  115. :type 'string)
  116. (defcustom org-export-skip-text-before-1st-heading nil
  117. "Non-nil means, skip all text before the first headline when exporting.
  118. When nil, that text is exported as well."
  119. :group 'org-export-general
  120. :type 'boolean)
  121. (defcustom org-export-headline-levels 3
  122. "The last level which is still exported as a headline.
  123. Inferior levels will produce itemize lists when exported.
  124. Note that a numeric prefix argument to an exporter function overrides
  125. this setting.
  126. This option can also be set with the +OPTIONS line, e.g. \"H:2\"."
  127. :group 'org-export-general
  128. :type 'number)
  129. (defcustom org-export-with-section-numbers t
  130. "Non-nil means, add section numbers to headlines when exporting.
  131. This option can also be set with the +OPTIONS line, e.g. \"num:t\"."
  132. :group 'org-export-general
  133. :type 'boolean)
  134. (defcustom org-export-section-number-format '((("1" ".")) . "")
  135. "Format of section numbers for export.
  136. The variable has two components.
  137. 1. A list of lists, each indicating a counter type and a separator.
  138. The counter type can be any of \"1\", \"A\", \"a\", \"I\", or \"a\".
  139. It causes causes numeric, alphabetic, or roman counters, respectively.
  140. The separator is only used if another counter for a subsection is being
  141. added.
  142. If there are more numbered section levels than entries in this lists,
  143. then the last entry will be reused.
  144. 2. A terminator string that will be added after the entire
  145. section number."
  146. :group 'org-export-general
  147. :type '(cons
  148. (repeat
  149. (list
  150. (string :tag "Counter Type")
  151. (string :tag "Separator ")))
  152. (string :tag "Terminator")))
  153. (defcustom org-export-with-toc t
  154. "Non-nil means, create a table of contents in exported files.
  155. The TOC contains headlines with levels up to`org-export-headline-levels'.
  156. When an integer, include levels up to N in the toc, this may then be
  157. different from `org-export-headline-levels', but it will not be allowed
  158. to be larger than the number of headline levels.
  159. When nil, no table of contents is made.
  160. Headlines which contain any TODO items will be marked with \"(*)\" in
  161. ASCII export, and with red color in HTML output, if the option
  162. `org-export-mark-todo-in-toc' is set.
  163. In HTML output, the TOC will be clickable.
  164. This option can also be set with the +OPTIONS line, e.g. \"toc:nil\"
  165. or \"toc:3\"."
  166. :group 'org-export-general
  167. :type '(choice
  168. (const :tag "No Table of Contents" nil)
  169. (const :tag "Full Table of Contents" t)
  170. (integer :tag "TOC to level")))
  171. (defcustom org-export-mark-todo-in-toc nil
  172. "Non-nil means, mark TOC lines that contain any open TODO items."
  173. :group 'org-export-general
  174. :type 'boolean)
  175. (defcustom org-export-with-todo-keywords t
  176. "Non-nil means, include TODO keywords in export.
  177. When nil, remove all these keywords from the export."
  178. :group 'org-export-general
  179. :type 'boolean)
  180. (defcustom org-export-with-priority nil
  181. "Non-nil means, include priority cookies in export.
  182. When nil, remove priority cookies for export."
  183. :group 'org-export-general
  184. :type 'boolean)
  185. (defcustom org-export-preserve-breaks nil
  186. "Non-nil means, preserve all line breaks when exporting.
  187. Normally, in HTML output paragraphs will be reformatted. In ASCII
  188. export, line breaks will always be preserved, regardless of this variable.
  189. This option can also be set with the +OPTIONS line, e.g. \"\\n:t\"."
  190. :group 'org-export-general
  191. :type 'boolean)
  192. (defcustom org-export-with-archived-trees 'headline
  193. "Whether subtrees with the ARCHIVE tag should be exported.
  194. This can have three different values
  195. nil Do not export, pretend this tree is not present
  196. t Do export the entire tree
  197. headline Only export the headline, but skip the tree below it."
  198. :group 'org-export-general
  199. :group 'org-archive
  200. :type '(choice
  201. (const :tag "not at all" nil)
  202. (const :tag "headline only" 'headline)
  203. (const :tag "entirely" t)))
  204. (defcustom org-export-author-info t
  205. "Non-nil means, insert author name and email into the exported file.
  206. This option can also be set with the +OPTIONS line,
  207. e.g. \"author-info:nil\"."
  208. :group 'org-export-general
  209. :type 'boolean)
  210. (defcustom org-export-creator-info t
  211. "Non-nil means, the postamble should contain a creator sentence.
  212. This sentence is \"HTML generated by org-mode XX in emacs XXX\"."
  213. :group 'org-export-general
  214. :type 'boolean)
  215. (defcustom org-export-time-stamp-file t
  216. "Non-nil means, insert a time stamp into the exported file.
  217. The time stamp shows when the file was created.
  218. This option can also be set with the +OPTIONS line,
  219. e.g. \"timestamp:nil\"."
  220. :group 'org-export-general
  221. :type 'boolean)
  222. (defcustom org-export-with-timestamps t
  223. "If nil, do not export time stamps and associated keywords."
  224. :group 'org-export-general
  225. :type 'boolean)
  226. (defcustom org-export-remove-timestamps-from-toc t
  227. "If nil, remove timestamps from the table of contents entries."
  228. :group 'org-export-general
  229. :type 'boolean)
  230. (defcustom org-export-with-tags 'not-in-toc
  231. "If nil, do not export tags, just remove them from headlines.
  232. If this is the symbol `not-in-toc', tags will be removed from table of
  233. contents entries, but still be shown in the headlines of the document.
  234. This option can also be set with the +OPTIONS line, e.g. \"tags:nil\"."
  235. :group 'org-export-general
  236. :type '(choice
  237. (const :tag "Off" nil)
  238. (const :tag "Not in TOC" not-in-toc)
  239. (const :tag "On" t)))
  240. (defcustom org-export-with-drawers nil
  241. "Non-nil means, export with drawers like the property drawer.
  242. When t, all drawers are exported. This may also be a list of
  243. drawer names to export."
  244. :group 'org-export-general
  245. :type '(choice
  246. (const :tag "All drawers" t)
  247. (const :tag "None" nil)
  248. (repeat :tag "Selected drawers"
  249. (string :tag "Drawer name"))))
  250. (defvar org-export-preprocess-hook nil
  251. "Hook for preprocessing an export buffer.
  252. Pretty much the first thing when exporting is running this hook.")
  253. (defvar org-export-preprocess-after-include-files-hook nil
  254. "Hook for preprocessing an export buffer.
  255. This is run after the contents of included files have been inserted.")
  256. (defvar org-export-preprocess-after-tree-selection-hook nil
  257. "Hook for preprocessing an export buffer.
  258. This is run after selection of trees to be exported has happened.
  259. This selection includes tags-based selection, as well as removal
  260. of commented and archived trees.")
  261. (defvar org-export-preprocess-before-backend-specifics-hook nil
  262. "Hook run before backend-specific functions are called during preprocessing.")
  263. (defvar org-export-preprocess-final-hook nil
  264. "Hook for preprocessing an export buffer.
  265. This is run as the last thing in the preprocessing buffer, just before
  266. returning the buffer string to the backend.")
  267. (defgroup org-export-translation nil
  268. "Options for translating special ascii sequences for the export backends."
  269. :tag "Org Export Translation"
  270. :group 'org-export)
  271. (defcustom org-export-with-emphasize t
  272. "Non-nil means, interpret *word*, /word/, and _word_ as emphasized text.
  273. If the export target supports emphasizing text, the word will be
  274. typeset in bold, italic, or underlined, respectively. Works only for
  275. single words, but you can say: I *really* *mean* *this*.
  276. Not all export backends support this.
  277. This option can also be set with the +OPTIONS line, e.g. \"*:nil\"."
  278. :group 'org-export-translation
  279. :type 'boolean)
  280. (defcustom org-export-with-footnotes t
  281. "If nil, export [1] as a footnote marker.
  282. Lines starting with [1] will be formatted as footnotes.
  283. This option can also be set with the +OPTIONS line, e.g. \"f:nil\"."
  284. :group 'org-export-translation
  285. :type 'boolean)
  286. (defcustom org-export-html-footnotes-section "<div id=\"footnotes\">
  287. <h2 class=\"footnotes\">%s: </h2>
  288. <div id=\"footnotes-text\">
  289. %s
  290. </div>
  291. </div>"
  292. "Format for the footnotes section.
  293. Should contain a two instances of %s. The first will be replaced with the
  294. language-specific word for \"Footnotes\", the second one will be replaced
  295. by the footnotes themselves."
  296. :group 'org-export-html
  297. :type 'string)
  298. (defcustom org-export-with-sub-superscripts t
  299. "Non-nil means, interpret \"_\" and \"^\" for export.
  300. When this option is turned on, you can use TeX-like syntax for sub- and
  301. superscripts. Several characters after \"_\" or \"^\" will be
  302. considered as a single item - so grouping with {} is normally not
  303. needed. For example, the following things will be parsed as single
  304. sub- or superscripts.
  305. 10^24 or 10^tau several digits will be considered 1 item.
  306. 10^-12 or 10^-tau a leading sign with digits or a word
  307. x^2-y^3 will be read as x^2 - y^3, because items are
  308. terminated by almost any nonword/nondigit char.
  309. x_{i^2} or x^(2-i) braces or parenthesis do grouping.
  310. Still, ambiguity is possible - so when in doubt use {} to enclose the
  311. sub/superscript. If you set this variable to the symbol `{}',
  312. the braces are *required* in order to trigger interpretations as
  313. sub/superscript. This can be helpful in documents that need \"_\"
  314. frequently in plain text.
  315. Not all export backends support this, but HTML does.
  316. This option can also be set with the +OPTIONS line, e.g. \"^:nil\"."
  317. :group 'org-export-translation
  318. :type '(choice
  319. (const :tag "Always interpret" t)
  320. (const :tag "Only with braces" {})
  321. (const :tag "Never interpret" nil)))
  322. (defcustom org-export-with-special-strings t
  323. "Non-nil means, interpret \"\-\", \"--\" and \"---\" for export.
  324. When this option is turned on, these strings will be exported as:
  325. \\- : &shy;
  326. -- : &ndash;
  327. --- : &mdash;
  328. Not all export backends support this, but HTML does.
  329. This option can also be set with the +OPTIONS line, e.g. \"-:nil\"."
  330. :group 'org-export-translation
  331. :type 'boolean)
  332. (defcustom org-export-with-TeX-macros t
  333. "Non-nil means, interpret simple TeX-like macros when exporting.
  334. For example, HTML export converts \\alpha to &alpha; and \\AA to &Aring;.
  335. No only real TeX macros will work here, but the standard HTML entities
  336. for math can be used as macro names as well. For a list of supported
  337. names in HTML export, see the constant `org-html-entities'.
  338. Not all export backends support this.
  339. This option can also be set with the +OPTIONS line, e.g. \"TeX:nil\"."
  340. :group 'org-export-translation
  341. :group 'org-export-latex
  342. :type 'boolean)
  343. (defcustom org-export-with-LaTeX-fragments nil
  344. "Non-nil means, convert LaTeX fragments to images when exporting to HTML.
  345. When set, the exporter will find LaTeX environments if the \\begin line is
  346. the first non-white thing on a line. It will also find the math delimiters
  347. like $a=b$ and \\( a=b \\) for inline math, $$a=b$$ and \\[ a=b \\] for
  348. display math.
  349. This option can also be set with the +OPTIONS line, e.g. \"LaTeX:t\"."
  350. :group 'org-export-translation
  351. :group 'org-export-latex
  352. :type 'boolean)
  353. (defcustom org-export-with-fixed-width t
  354. "Non-nil means, lines starting with \":\" will be in fixed width font.
  355. This can be used to have pre-formatted text, fragments of code etc. For
  356. example:
  357. : ;; Some Lisp examples
  358. : (while (defc cnt)
  359. : (ding))
  360. will be looking just like this in also HTML. See also the QUOTE keyword.
  361. Not all export backends support this.
  362. This option can also be set with the +OPTIONS line, e.g. \"::nil\"."
  363. :group 'org-export-translation
  364. :type 'boolean)
  365. (defcustom org-match-sexp-depth 3
  366. "Number of stacked braces for sub/superscript matching.
  367. This has to be set before loading org.el to be effective."
  368. :group 'org-export-translation
  369. :type 'integer)
  370. (defgroup org-export-tables nil
  371. "Options for exporting tables in Org-mode."
  372. :tag "Org Export Tables"
  373. :group 'org-export)
  374. (defcustom org-export-with-tables t
  375. "If non-nil, lines starting with \"|\" define a table.
  376. For example:
  377. | Name | Address | Birthday |
  378. |-------------+----------+-----------|
  379. | Arthur Dent | England | 29.2.2100 |
  380. Not all export backends support this.
  381. This option can also be set with the +OPTIONS line, e.g. \"|:nil\"."
  382. :group 'org-export-tables
  383. :type 'boolean)
  384. (defcustom org-export-highlight-first-table-line t
  385. "Non-nil means, highlight the first table line.
  386. In HTML export, this means use <th> instead of <td>.
  387. In tables created with table.el, this applies to the first table line.
  388. In Org-mode tables, all lines before the first horizontal separator
  389. line will be formatted with <th> tags."
  390. :group 'org-export-tables
  391. :type 'boolean)
  392. (defcustom org-export-table-remove-special-lines t
  393. "Remove special lines and marking characters in calculating tables.
  394. This removes the special marking character column from tables that are set
  395. up for spreadsheet calculations. It also removes the entire lines
  396. marked with `!', `_', or `^'. The lines with `$' are kept, because
  397. the values of constants may be useful to have."
  398. :group 'org-export-tables
  399. :type 'boolean)
  400. (defcustom org-export-prefer-native-exporter-for-tables nil
  401. "Non-nil means, always export tables created with table.el natively.
  402. Natively means, use the HTML code generator in table.el.
  403. When nil, Org-mode's own HTML generator is used when possible (i.e. if
  404. the table does not use row- or column-spanning). This has the
  405. advantage, that the automatic HTML conversions for math symbols and
  406. sub/superscripts can be applied. Org-mode's HTML generator is also
  407. much faster."
  408. :group 'org-export-tables
  409. :type 'boolean)
  410. (defgroup org-export-ascii nil
  411. "Options specific for ASCII export of Org-mode files."
  412. :tag "Org Export ASCII"
  413. :group 'org-export)
  414. (defcustom org-export-ascii-underline '(?\$ ?\# ?^ ?\~ ?\= ?\-)
  415. "Characters for underlining headings in ASCII export.
  416. In the given sequence, these characters will be used for level 1, 2, ..."
  417. :group 'org-export-ascii
  418. :type '(repeat character))
  419. (defcustom org-export-ascii-bullets '(?* ?+ ?-)
  420. "Bullet characters for headlines converted to lists in ASCII export.
  421. The first character is used for the first lest level generated in this
  422. way, and so on. If there are more levels than characters given here,
  423. the list will be repeated.
  424. Note that plain lists will keep the same bullets as the have in the
  425. Org-mode file."
  426. :group 'org-export-ascii
  427. :type '(repeat character))
  428. (defgroup org-export-xml nil
  429. "Options specific for XML export of Org-mode files."
  430. :tag "Org Export XML"
  431. :group 'org-export)
  432. (defgroup org-export-html nil
  433. "Options specific for HTML export of Org-mode files."
  434. :tag "Org Export HTML"
  435. :group 'org-export)
  436. (defcustom org-export-html-coding-system nil
  437. "Coding system for HTML export, defaults to buffer-file-coding-system."
  438. :group 'org-export-html
  439. :type 'coding-system)
  440. (defcustom org-export-html-extension "html"
  441. "The extension for exported HTML files."
  442. :group 'org-export-html
  443. :type 'string)
  444. (defcustom org-export-html-link-up ""
  445. "Where should the \"UP\" link of exported HTML pages lead?"
  446. :group 'org-export-html
  447. :type '(string :tag "File or URL"))
  448. (defcustom org-export-html-link-home ""
  449. "Where should the \"HOME\" link of exported HTML pages lead?"
  450. :group 'org-export-html
  451. :type '(string :tag "File or URL"))
  452. (defconst org-export-html-scripts
  453. "<script language=\"javascript\" type=\"text/javascript\">
  454. <!--/*--><![CDATA[/*><!--*/
  455. function CodeHighlightOn(elem, id)
  456. {
  457. var target = document.getElementById(id);
  458. if(null != target) {
  459. elem.cacheClassElem = elem.className;
  460. elem.cacheClassTarget = target.className;
  461. target.className = \"code-highlighted\";
  462. elem.className = \"code-highlighted\";
  463. }
  464. }
  465. function CodeHighlightOff(elem, id)
  466. {
  467. var target = document.getElementById(id);
  468. if(elem.cacheClassElem)
  469. elem.className = elem.cacheClassElem;
  470. if(elem.cacheClassTarget)
  471. target.className = elem.cacheClassTarget;
  472. }
  473. /*]]>*/-->
  474. </script>"
  475. "Basic javascript that is needed by HTML files produced by Org-mode.")
  476. (defconst org-export-html-style-default
  477. "<style type=\"text/css\">
  478. <!--/*--><![CDATA[/*><!--*/
  479. html { font-family: Times, serif; font-size: 12pt; }
  480. .title { text-align: center; }
  481. .todo { color: red; }
  482. .done { color: green; }
  483. .tag { background-color:lightblue; font-weight:normal }
  484. .target { }
  485. .timestamp { color: grey }
  486. .timestamp-kwd { color: CadetBlue }
  487. p.verse { margin-left: 3% }
  488. pre {
  489. border: 1pt solid #AEBDCC;
  490. background-color: #F3F5F7;
  491. padding: 5pt;
  492. font-family: courier, monospace;
  493. font-size: 90%;
  494. overflow:auto;
  495. }
  496. table { border-collapse: collapse; }
  497. td, th { vertical-align: top; }
  498. dt { font-weight: bold; }
  499. div.figure { padding: 0.5em; }
  500. div.figure p { text-align: center; }
  501. .linenr { font-size:smaller }
  502. .code-highlighted {background-color:#ffff00;}
  503. .org-info-js_info-navigation { border-style:none; }
  504. #org-info-js_console-label { font-size:10px; font-weight:bold;
  505. white-space:nowrap; }
  506. .org-info-js_search-highlight {background-color:#ffff00; color:#000000;
  507. font-weight:bold; }
  508. /*]]>*/-->
  509. </style>"
  510. "The default style specification for exported HTML files.
  511. Please use the variables `org-export-html-style' and
  512. `org-export-html-style-extra' to add to this style. If you wish to not
  513. have the default style included, customize the variable
  514. `org-export-html-style-include-default'.")
  515. (defcustom org-export-html-style-include-default t
  516. "Non-nil means, include the default style in exported HTML files.
  517. The actual style is defined in `org-export-html-style-default' and should
  518. not be modified. Use the variables `org-export-html-style' to add
  519. your own style information."
  520. :group 'org-export-html
  521. :type 'boolean)
  522. ;;;###autoload
  523. (put 'org-export-html-style 'safe-local-variable 'booleanp)
  524. (defcustom org-export-html-style ""
  525. "Org-wide style definitions for exported HTML files.
  526. This variable needs to contain the full HTML structure to provide a style,
  527. including the surrounding HTML tags. If you set the value of this variable,
  528. you should consider to include definitions for the following classes:
  529. title, todo, done, timestamp, timestamp-kwd, tag, target.
  530. For example, a valid value would be:
  531. <style type=\"text/css\">
  532. <![CDATA[
  533. p { font-weight: normal; color: gray; }
  534. h1 { color: black; }
  535. .title { text-align: center; }
  536. .todo, .timestamp-kwd { color: red; }
  537. .done { color: green; }
  538. ]]>
  539. </style>
  540. If you'd like to refer to en external style file, use something like
  541. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  542. As the value of this option simply gets inserted into the HTML <head> header,
  543. you can \"misuse\" it to add arbitrary text to the header.
  544. See also the variable `org-export-html-style-extra'."
  545. :group 'org-export-html
  546. :type 'string)
  547. ;;;###autoload
  548. (put 'org-export-html-style 'safe-local-variable 'stringp)
  549. (defcustom org-export-html-style-extra ""
  550. "Additional style information for HTML export.
  551. The value of this variable is inserted into the HTML buffer right after
  552. the value of `org-export-html-style'. Use this variable for per-file
  553. settings of style information, and do not forget to surround the style
  554. settings with <style>...</style> tags."
  555. :group 'org-export-html
  556. :type 'string)
  557. ;;;###autoload
  558. (put 'org-export-html-style-extra 'safe-local-variable 'stringp)
  559. (defcustom org-export-html-title-format "<h1 class=\"title\">%s</h1>\n"
  560. "Format for typesetting the document title in HTML export."
  561. :group 'org-export-html
  562. :type 'string)
  563. (defcustom org-export-html-toplevel-hlevel 2
  564. "The <H> level for level 1 headings in HTML export."
  565. :group 'org-export-html
  566. :type 'string)
  567. (defcustom org-export-html-link-org-files-as-html t
  568. "Non-nil means, make file links to `file.org' point to `file.html'.
  569. When org-mode is exporting an org-mode file to HTML, links to
  570. non-html files are directly put into a href tag in HTML.
  571. However, links to other Org-mode files (recognized by the
  572. extension `.org.) should become links to the corresponding html
  573. file, assuming that the linked org-mode file will also be
  574. converted to HTML.
  575. When nil, the links still point to the plain `.org' file."
  576. :group 'org-export-html
  577. :type 'boolean)
  578. (defcustom org-export-html-inline-images 'maybe
  579. "Non-nil means, inline images into exported HTML pages.
  580. This is done using an <img> tag. When nil, an anchor with href is used to
  581. link to the image. If this option is `maybe', then images in links with
  582. an empty description will be inlined, while images with a description will
  583. be linked only."
  584. :group 'org-export-html
  585. :type '(choice (const :tag "Never" nil)
  586. (const :tag "Always" t)
  587. (const :tag "When there is no description" maybe)))
  588. ;; FIXME: rename
  589. (defcustom org-export-html-expand t
  590. "Non-nil means, for HTML export, treat @<...> as HTML tag.
  591. When nil, these tags will be exported as plain text and therefore
  592. not be interpreted by a browser.
  593. This option can also be set with the +OPTIONS line, e.g. \"@:nil\"."
  594. :group 'org-export-html
  595. :type 'boolean)
  596. (defcustom org-export-html-table-tag
  597. "<table border=\"2\" cellspacing=\"0\" cellpadding=\"6\" rules=\"groups\" frame=\"hsides\">"
  598. "The HTML tag that is used to start a table.
  599. This must be a <table> tag, but you may change the options like
  600. borders and spacing."
  601. :group 'org-export-html
  602. :type 'string)
  603. (defcustom org-export-table-header-tags '("<th>" . "</th>")
  604. "The opening tag for table header fields.
  605. This is customizable so that alignment options can be specified."
  606. :group 'org-export-tables
  607. :type '(cons (string :tag "Opening tag") (string :tag "Closing tag")))
  608. (defcustom org-export-table-data-tags '("<td>" . "</td>")
  609. "The opening tag for table data fields.
  610. This is customizable so that alignment options can be specified."
  611. :group 'org-export-tables
  612. :type '(cons (string :tag "Opening tag") (string :tag "Closing tag")))
  613. (defcustom org-export-html-with-timestamp nil
  614. "If non-nil, write `org-export-html-html-helper-timestamp'
  615. into the exported HTML text. Otherwise, the buffer will just be saved
  616. to a file."
  617. :group 'org-export-html
  618. :type 'boolean)
  619. (defcustom org-export-html-html-helper-timestamp
  620. "<br/><br/><hr><p><!-- hhmts start --> <!-- hhmts end --></p>\n"
  621. "The HTML tag used as timestamp delimiter for HTML-helper-mode."
  622. :group 'org-export-html
  623. :type 'string)
  624. (defgroup org-export-htmlize nil
  625. "Options for processing examples with htmlize.el."
  626. :tag "Org Export Htmlize"
  627. :group 'org-export-html)
  628. (defcustom org-export-htmlize-output-type 'inline-css
  629. "Output type to be used by htmlize when formatting code snippets.
  630. Normally this is `inline-css', but if you have defined to appropriate
  631. classes in your css style file, setting this to `css' means that the
  632. fontification will use the class names.
  633. See also the function `org-export-htmlize-generate-css'."
  634. :group 'org-export-htmlize
  635. :type '(choice (const css) (const inline-css)))
  636. (defcustom org-export-htmlize-css-font-prefix "org-"
  637. "The prefix for CSS class names for htmlize font specifications."
  638. :group 'org-export-htmlize
  639. :type 'string)
  640. (defgroup org-export-icalendar nil
  641. "Options specific for iCalendar export of Org-mode files."
  642. :tag "Org Export iCalendar"
  643. :group 'org-export)
  644. (defcustom org-combined-agenda-icalendar-file "~/org.ics"
  645. "The file name for the iCalendar file covering all agenda files.
  646. This file is created with the command \\[org-export-icalendar-all-agenda-files].
  647. The file name should be absolute, the file will be overwritten without warning."
  648. :group 'org-export-icalendar
  649. :type 'file)
  650. (defcustom org-icalendar-combined-name "OrgMode"
  651. "Calendar name for the combined iCalendar representing all agenda files."
  652. :group 'org-export-icalendar
  653. :type 'string)
  654. (defcustom org-icalendar-use-deadline '(event-if-not-todo todo-due)
  655. "Contexts where iCalendar export should use a deadline time stamp.
  656. This is a list with several symbols in it. Valid symbol are:
  657. event-if-todo Deadlines in TODO entries become calendar events.
  658. event-if-not-todo Deadlines in non-TODO entries become calendar events.
  659. todo-due Use deadlines in TODO entries as due-dates"
  660. :group 'org-export-icalendar
  661. :type '(set :greedy t
  662. (const :tag "Deadlines in non-TODO entries become events"
  663. event-if-not-todo)
  664. (const :tag "Deadline in TODO entries become events"
  665. event-if-todo)
  666. (const :tag "Deadlines in TODO entries become due-dates"
  667. todo-due)))
  668. (defcustom org-icalendar-use-scheduled '(todo-start)
  669. "Contexts where iCalendar export should use a scheduling time stamp.
  670. This is a list with several symbols in it. Valid symbol are:
  671. event-if-todo Scheduling time stamps in TODO entries become an event.
  672. event-if-not-todo Scheduling time stamps in non-TODO entries become an event.
  673. todo-start Scheduling time stamps in TODO entries become start date.
  674. Some calendar applications show TODO entries only after
  675. that date."
  676. :group 'org-export-icalendar
  677. :type '(set :greedy t
  678. (const :tag
  679. "SCHEDULED timestamps in non-TODO entries become events"
  680. event-if-not-todo)
  681. (const :tag "SCHEDULED timestamps in TODO entries become events"
  682. event-if-todo)
  683. (const :tag "SCHEDULED in TODO entries become start date"
  684. todo-start)))
  685. (defcustom org-icalendar-categories '(local-tags category)
  686. "Items that should be entered into the categories field.
  687. This is a list of symbols, the following are valid:
  688. category The Org-mode category of the current file or tree
  689. todo-state The todo state, if any
  690. local-tags The tags, defined in the current line
  691. all-tags All tags, including inherited ones."
  692. :group 'org-export-icalendar
  693. :type '(repeat
  694. (choice
  695. (const :tag "The file or tree category" category)
  696. (const :tag "The TODO state" todo-state)
  697. (const :tag "Tags defined in current line" local-tags)
  698. (const :tag "All tags, including inherited ones" all-tags))))
  699. (defcustom org-icalendar-include-todo nil
  700. "Non-nil means, export to iCalendar files should also cover TODO items."
  701. :group 'org-export-icalendar
  702. :type '(choice
  703. (const :tag "None" nil)
  704. (const :tag "Unfinished" t)
  705. (const :tag "All" all)))
  706. (defcustom org-icalendar-include-sexps t
  707. "Non-nil means, export to iCalendar files should also cover sexp entries.
  708. These are entries like in the diary, but directly in an Org-mode file."
  709. :group 'org-export-icalendar
  710. :type 'boolean)
  711. (defcustom org-icalendar-include-body 100
  712. "Amount of text below headline to be included in iCalendar export.
  713. This is a number of characters that should maximally be included.
  714. Properties, scheduling and clocking lines will always be removed.
  715. The text will be inserted into the DESCRIPTION field."
  716. :group 'org-export-icalendar
  717. :type '(choice
  718. (const :tag "Nothing" nil)
  719. (const :tag "Everything" t)
  720. (integer :tag "Max characters")))
  721. (defcustom org-icalendar-store-UID nil
  722. "Non-nil means, store any created UIDs in properties.
  723. The iCalendar standard requires that all entries have a unique identifier.
  724. Org will create these identifiers as needed. When this variable is non-nil,
  725. the created UIDs will be stored in the ID property of the entry. Then the
  726. next time this entry is exported, it will be exported with the same UID,
  727. superceding the previous form of it. This is essential for
  728. synchronization services.
  729. This variable is not turned on by default because we want to avoid creating
  730. a property drawer in every entry if people are only playing with this feature,
  731. or if they are only using it locally."
  732. :group 'org-export-icalendar
  733. :type 'boolean)
  734. ;;;; Exporting
  735. ;;; Variables, constants, and parameter plists
  736. (defconst org-level-max 20)
  737. (defvar org-export-html-preamble nil
  738. "Preamble, to be inserted just before <body>. Set by publishing functions.")
  739. (defvar org-export-html-postamble nil
  740. "Preamble, to be inserted just after </body>. Set by publishing functions.")
  741. (defvar org-export-html-auto-preamble t
  742. "Should default preamble be inserted? Set by publishing functions.")
  743. (defvar org-export-html-auto-postamble t
  744. "Should default postamble be inserted? Set by publishing functions.")
  745. (defvar org-current-export-file nil) ; dynamically scoped parameter
  746. (defvar org-current-export-dir nil) ; dynamically scoped parameter
  747. (defconst org-export-plist-vars
  748. '((:link-up nil org-export-html-link-up)
  749. (:link-home nil org-export-html-link-home)
  750. (:language nil org-export-default-language)
  751. (:customtime nil org-display-custom-times)
  752. (:headline-levels "H" org-export-headline-levels)
  753. (:section-numbers "num" org-export-with-section-numbers)
  754. (:section-number-format nil org-export-section-number-format)
  755. (:table-of-contents "toc" org-export-with-toc)
  756. (:preserve-breaks "\\n" org-export-preserve-breaks)
  757. (:archived-trees nil org-export-with-archived-trees)
  758. (:emphasize "*" org-export-with-emphasize)
  759. (:sub-superscript "^" org-export-with-sub-superscripts)
  760. (:special-strings "-" org-export-with-special-strings)
  761. (:footnotes "f" org-export-with-footnotes)
  762. (:drawers "d" org-export-with-drawers)
  763. (:tags "tags" org-export-with-tags)
  764. (:todo-keywords "todo" org-export-with-todo-keywords)
  765. (:priority "pri" org-export-with-priority)
  766. (:TeX-macros "TeX" org-export-with-TeX-macros)
  767. (:LaTeX-fragments "LaTeX" org-export-with-LaTeX-fragments)
  768. (:skip-before-1st-heading "skip" org-export-skip-text-before-1st-heading)
  769. (:fixed-width ":" org-export-with-fixed-width)
  770. (:timestamps "<" org-export-with-timestamps)
  771. (:author-info "author" org-export-author-info)
  772. (:creator-info "creator" org-export-creator-info)
  773. (:time-stamp-file "timestamp" org-export-time-stamp-file)
  774. (:tables "|" org-export-with-tables)
  775. (:table-auto-headline nil org-export-highlight-first-table-line)
  776. (:style-include-default nil org-export-html-style-include-default)
  777. (:style nil org-export-html-style)
  778. (:style-extra nil org-export-html-style-extra)
  779. (:agenda-style nil org-agenda-export-html-style)
  780. (:convert-org-links nil org-export-html-link-org-files-as-html)
  781. (:inline-images nil org-export-html-inline-images)
  782. (:html-extension nil org-export-html-extension)
  783. (:html-table-tag nil org-export-html-table-tag)
  784. (:expand-quoted-html "@" org-export-html-expand)
  785. (:timestamp nil org-export-html-with-timestamp)
  786. (:publishing-directory nil org-export-publishing-directory)
  787. (:preamble nil org-export-html-preamble)
  788. (:postamble nil org-export-html-postamble)
  789. (:auto-preamble nil org-export-html-auto-preamble)
  790. (:auto-postamble nil org-export-html-auto-postamble)
  791. (:author nil user-full-name)
  792. (:email nil user-mail-address)
  793. (:select-tags nil org-export-select-tags)
  794. (:exclude-tags nil org-export-exclude-tags))
  795. "List of properties that represent export/publishing variables.
  796. Each element is a list of 3 items:
  797. 1. The property that is used internally, and also for org-publish-project-alist
  798. 2. The string that can be used in the OPTION lines to set this option,
  799. or nil if this option cannot be changed in this way
  800. 3. The customization variable that sets the default for this option."
  801. )
  802. (defun org-default-export-plist ()
  803. "Return the property list with default settings for the export variables."
  804. (let ((l org-export-plist-vars) rtn e)
  805. (while (setq e (pop l))
  806. (setq rtn (cons (car e) (cons (symbol-value (nth 2 e)) rtn))))
  807. rtn))
  808. (defvar org-export-inbuffer-options-extra nil
  809. "List of additional in-buffer options that should be detected.
  810. Just before export, the buffer is scanned for options like #+TITLE, #+EMAIL,
  811. etc. Extensions can add to this list to get their options detected, and they
  812. can then add a function to `org-export-options-filters' to process these
  813. options.
  814. Each element in this list must be a list, with the in-buffer keyword as car,
  815. and a property (a symbol) as the next element. All occurrences of the
  816. keyword will be found, the values concatenated with a space character
  817. in between, and the result stored in the export options property list.")
  818. (defvar org-export-options-filters nil
  819. "Functions to be called to finalize the export/publishing options.
  820. All these options are stored in a property list, and each of the functions
  821. in this hook gets a chance to modify this property list. Each function
  822. must accept the property list as an argument, and must return the (possibly
  823. modified) list.")
  824. ;; FIXME: should we fold case here?
  825. (defun org-infile-export-plist ()
  826. "Return the property list with file-local settings for export."
  827. (save-excursion
  828. (save-restriction
  829. (widen)
  830. (goto-char (point-min))
  831. (let ((re (org-make-options-regexp
  832. (append
  833. '("TITLE" "AUTHOR" "DATE" "EMAIL" "TEXT" "OPTIONS" "LANGUAGE"
  834. "LINK_UP" "LINK_HOME" "SETUPFILE" "STYLE" "LATEX_HEADER"
  835. "EXPORT_SELECT_TAGS" "EXPORT_EXCLUDE_TAGS")
  836. (mapcar 'car org-export-inbuffer-options-extra))))
  837. p key val text options js-up js-main js-css js-opt a pr style
  838. latex-header
  839. ext-setup-or-nil setup-contents (start 0))
  840. (while (or (and ext-setup-or-nil
  841. (string-match re ext-setup-or-nil start)
  842. (setq start (match-end 0)))
  843. (and (setq ext-setup-or-nil nil start 0)
  844. (re-search-forward re nil t)))
  845. (setq key (upcase (org-match-string-no-properties 1 ext-setup-or-nil))
  846. val (org-match-string-no-properties 2 ext-setup-or-nil))
  847. (cond
  848. ((setq a (assoc key org-export-inbuffer-options-extra))
  849. (setq pr (nth 1 a))
  850. (setq p (plist-put p pr (concat (plist-get p pr) " " val))))
  851. ((string-equal key "TITLE") (setq p (plist-put p :title val)))
  852. ((string-equal key "AUTHOR")(setq p (plist-put p :author val)))
  853. ((string-equal key "EMAIL") (setq p (plist-put p :email val)))
  854. ((string-equal key "DATE") (setq p (plist-put p :date val)))
  855. ((string-equal key "LANGUAGE") (setq p (plist-put p :language val)))
  856. ((string-equal key "STYLE")
  857. (setq style (concat style "\n" val)))
  858. ((string-equal key "LATEX_HEADER")
  859. (setq latex-header (concat latex-header "\n" val)))
  860. ((string-equal key "TEXT")
  861. (setq text (if text (concat text "\n" val) val)))
  862. ((string-equal key "OPTIONS")
  863. (setq options (concat val " " options)))
  864. ((string-equal key "LINK_UP")
  865. (setq p (plist-put p :link-up val)))
  866. ((string-equal key "LINK_HOME")
  867. (setq p (plist-put p :link-home val)))
  868. ((string-equal key "EXPORT_SELECT_TAGS")
  869. (setq p (plist-put p :select-tags (org-split-string val))))
  870. ((string-equal key "EXPORT_EXCLUDE_TAGS")
  871. (setq p (plist-put p :exclude-tags (org-split-string val))))
  872. ((equal key "SETUPFILE")
  873. (setq setup-contents (org-file-contents
  874. (expand-file-name
  875. (org-remove-double-quotes
  876. (org-trim val)))
  877. 'noerror))
  878. (if (not ext-setup-or-nil)
  879. (setq ext-setup-or-nil setup-contents start 0)
  880. (setq ext-setup-or-nil
  881. (concat (substring ext-setup-or-nil 0 start)
  882. "\n" setup-contents "\n"
  883. (substring ext-setup-or-nil start)))))))
  884. (setq p (plist-put p :text text))
  885. (when style (setq p (plist-put p :style-extra style)))
  886. (when latex-header
  887. (setq p (plist-put p :latex-header-extra (substring latex-header 1))))
  888. (when options
  889. (setq p (org-export-add-options-to-plist p options)))
  890. p))))
  891. (defun org-export-add-options-to-plist (p options)
  892. "Parse an OPTIONS line and set values in the property list P."
  893. (let (o)
  894. (when options
  895. (let ((op org-export-plist-vars) a)
  896. (while (setq o (pop op))
  897. (if (and (nth 1 o)
  898. (string-match (concat (regexp-quote (nth 1 o))
  899. ":\\([^ \t\n\r;,.]*\\)")
  900. options))
  901. (setq p (plist-put p (car o)
  902. (car (read-from-string
  903. (match-string 1 options))))))))))
  904. p)
  905. (defun org-export-add-subtree-options (p pos)
  906. "Add options in subtree at position POS to property list P."
  907. (save-excursion
  908. (goto-char pos)
  909. (when (org-at-heading-p)
  910. (let (a)
  911. ;; This is actually read in `org-export-get-title-from-subtree'
  912. ;; (when (setq a (org-entry-get pos "EXPORT_TITLE"))
  913. ;; (setq p (plist-put p :title a)))
  914. (when (setq a (org-entry-get pos "EXPORT_TEXT"))
  915. (setq p (plist-put p :text a)))
  916. (when (setq a (org-entry-get pos "EXPORT_OPTIONS"))
  917. (setq p (org-export-add-options-to-plist p a)))))
  918. p))
  919. (defun org-export-directory (type plist)
  920. (let* ((val (plist-get plist :publishing-directory))
  921. (dir (if (listp val)
  922. (or (cdr (assoc type val)) ".")
  923. val)))
  924. dir))
  925. (defun org-export-process-option-filters (plist)
  926. (let ((functions org-export-options-filters) f)
  927. (while (setq f (pop functions))
  928. (setq plist (funcall f plist))))
  929. plist)
  930. ;;;###autoload
  931. (defun org-export (&optional arg)
  932. "Export dispatcher for Org-mode.
  933. When `org-export-run-in-background' is non-nil, try to run the command
  934. in the background. This will be done only for commands that write
  935. to a file. For details see the docstring of `org-export-run-in-background'.
  936. The prefix argument ARG will be passed to the exporter. However, if
  937. ARG is a double universal prefix `C-u C-u', that means to inverse the
  938. value of `org-export-run-in-background'."
  939. (interactive "P")
  940. (let* ((bg (org-xor (equal arg '(16)) org-export-run-in-background))
  941. (help "[t] insert the export option template
  942. \[v] limit export to visible part of outline tree
  943. \[a] export as ASCII
  944. \[h] export as HTML
  945. \[H] export as HTML to temporary buffer
  946. \[R] export region as HTML
  947. \[b] export as HTML and browse immediately
  948. \[x] export as XOXO
  949. \[l] export as LaTeX
  950. \[p] export as LaTeX and process to PDF
  951. \[d] export as LaTeX, process to PDF, and open the resulting PDF document
  952. \[L] export as LaTeX to temporary buffer
  953. \[i] export current file as iCalendar file
  954. \[I] export all agenda files as iCalendar files
  955. \[c] export agenda files into combined iCalendar file
  956. \[F] publish current file
  957. \[P] publish current project
  958. \[X] publish... (project will be prompted for)
  959. \[A] publish all projects")
  960. (cmds
  961. '((?t org-insert-export-options-template nil)
  962. (?v org-export-visible nil)
  963. (?a org-export-as-ascii t)
  964. (?h org-export-as-html t)
  965. (?b org-export-as-html-and-open t)
  966. (?H org-export-as-html-to-buffer nil)
  967. (?R org-export-region-as-html nil)
  968. (?x org-export-as-xoxo t)
  969. (?l org-export-as-latex t)
  970. (?p org-export-as-pdf t)
  971. (?d org-export-as-pdf-and-open t)
  972. (?L org-export-as-latex-to-buffer nil)
  973. (?i org-export-icalendar-this-file t)
  974. (?I org-export-icalendar-all-agenda-files t)
  975. (?c org-export-icalendar-combine-agenda-files t)
  976. (?F org-publish-current-file t)
  977. (?P org-publish-current-project t)
  978. (?X org-publish t)
  979. (?A org-publish-all t)))
  980. r1 r2 ass)
  981. (save-window-excursion
  982. (delete-other-windows)
  983. (with-output-to-temp-buffer "*Org Export/Publishing Help*"
  984. (princ help))
  985. (org-fit-window-to-buffer (get-buffer-window
  986. "*Org Export/Publishing Help*"))
  987. (message "Select command: ")
  988. (setq r1 (read-char-exclusive)))
  989. (setq r2 (if (< r1 27) (+ r1 96) r1))
  990. (unless (setq ass (assq r2 cmds))
  991. (error "No command associated with key %c" r1))
  992. (if (and bg (nth 2 ass)
  993. (not (buffer-base-buffer))
  994. (not (org-region-active-p)))
  995. ;; execute in background
  996. (let ((p (start-process
  997. (concat "Exporting " (file-name-nondirectory (buffer-file-name)))
  998. "*Org Processes*"
  999. (expand-file-name invocation-name invocation-directory)
  1000. "-batch"
  1001. "-l" user-init-file
  1002. "--eval" "(require 'org-exp)"
  1003. "--eval" "(setq org-wait .2)"
  1004. (buffer-file-name)
  1005. "-f" (symbol-name (nth 1 ass)))))
  1006. (set-process-sentinel p 'org-export-process-sentinel)
  1007. (message "Background process \"%s\": started" p))
  1008. ;; background processing not requested, or not possible
  1009. (call-interactively (nth 1 ass)))))
  1010. (defun org-export-process-sentinel (process status)
  1011. (if (string-match "\n+\\'" status)
  1012. (setq status (substring status 0 -1)))
  1013. (message "Background process \"%s\": %s" process status))
  1014. (defconst org-html-entities
  1015. '(("nbsp")
  1016. ("iexcl")
  1017. ("cent")
  1018. ("pound")
  1019. ("curren")
  1020. ("yen")
  1021. ("brvbar")
  1022. ("vert" . "&#124;")
  1023. ("sect")
  1024. ("uml")
  1025. ("copy")
  1026. ("ordf")
  1027. ("laquo")
  1028. ("not")
  1029. ("shy")
  1030. ("reg")
  1031. ("macr")
  1032. ("deg")
  1033. ("plusmn")
  1034. ("sup2")
  1035. ("sup3")
  1036. ("acute")
  1037. ("micro")
  1038. ("para")
  1039. ("middot")
  1040. ("odot"."o")
  1041. ("star"."*")
  1042. ("cedil")
  1043. ("sup1")
  1044. ("ordm")
  1045. ("raquo")
  1046. ("frac14")
  1047. ("frac12")
  1048. ("frac34")
  1049. ("iquest")
  1050. ("Agrave")
  1051. ("Aacute")
  1052. ("Acirc")
  1053. ("Atilde")
  1054. ("Auml")
  1055. ("Aring") ("AA"."&Aring;")
  1056. ("AElig")
  1057. ("Ccedil")
  1058. ("Egrave")
  1059. ("Eacute")
  1060. ("Ecirc")
  1061. ("Euml")
  1062. ("Igrave")
  1063. ("Iacute")
  1064. ("Icirc")
  1065. ("Iuml")
  1066. ("ETH")
  1067. ("Ntilde")
  1068. ("Ograve")
  1069. ("Oacute")
  1070. ("Ocirc")
  1071. ("Otilde")
  1072. ("Ouml")
  1073. ("times")
  1074. ("Oslash")
  1075. ("Ugrave")
  1076. ("Uacute")
  1077. ("Ucirc")
  1078. ("Uuml")
  1079. ("Yacute")
  1080. ("THORN")
  1081. ("szlig")
  1082. ("agrave")
  1083. ("aacute")
  1084. ("acirc")
  1085. ("atilde")
  1086. ("auml")
  1087. ("aring")
  1088. ("aelig")
  1089. ("ccedil")
  1090. ("egrave")
  1091. ("eacute")
  1092. ("ecirc")
  1093. ("euml")
  1094. ("igrave")
  1095. ("iacute")
  1096. ("icirc")
  1097. ("iuml")
  1098. ("eth")
  1099. ("ntilde")
  1100. ("ograve")
  1101. ("oacute")
  1102. ("ocirc")
  1103. ("otilde")
  1104. ("ouml")
  1105. ("divide")
  1106. ("oslash")
  1107. ("ugrave")
  1108. ("uacute")
  1109. ("ucirc")
  1110. ("uuml")
  1111. ("yacute")
  1112. ("thorn")
  1113. ("yuml")
  1114. ("fnof")
  1115. ("Alpha")
  1116. ("Beta")
  1117. ("Gamma")
  1118. ("Delta")
  1119. ("Epsilon")
  1120. ("Zeta")
  1121. ("Eta")
  1122. ("Theta")
  1123. ("Iota")
  1124. ("Kappa")
  1125. ("Lambda")
  1126. ("Mu")
  1127. ("Nu")
  1128. ("Xi")
  1129. ("Omicron")
  1130. ("Pi")
  1131. ("Rho")
  1132. ("Sigma")
  1133. ("Tau")
  1134. ("Upsilon")
  1135. ("Phi")
  1136. ("Chi")
  1137. ("Psi")
  1138. ("Omega")
  1139. ("alpha")
  1140. ("beta")
  1141. ("gamma")
  1142. ("delta")
  1143. ("epsilon")
  1144. ("varepsilon"."&epsilon;")
  1145. ("zeta")
  1146. ("eta")
  1147. ("theta")
  1148. ("iota")
  1149. ("kappa")
  1150. ("lambda")
  1151. ("mu")
  1152. ("nu")
  1153. ("xi")
  1154. ("omicron")
  1155. ("pi")
  1156. ("rho")
  1157. ("sigmaf") ("varsigma"."&sigmaf;")
  1158. ("sigma")
  1159. ("tau")
  1160. ("upsilon")
  1161. ("phi")
  1162. ("chi")
  1163. ("psi")
  1164. ("omega")
  1165. ("thetasym") ("vartheta"."&thetasym;")
  1166. ("upsih")
  1167. ("piv")
  1168. ("bull") ("bullet"."&bull;")
  1169. ("hellip") ("dots"."&hellip;")
  1170. ("prime")
  1171. ("Prime")
  1172. ("oline")
  1173. ("frasl")
  1174. ("weierp")
  1175. ("image")
  1176. ("real")
  1177. ("trade")
  1178. ("alefsym")
  1179. ("larr") ("leftarrow"."&larr;") ("gets"."&larr;")
  1180. ("uarr") ("uparrow"."&uarr;")
  1181. ("rarr") ("to"."&rarr;") ("rightarrow"."&rarr;")
  1182. ("darr")("downarrow"."&darr;")
  1183. ("harr") ("leftrightarrow"."&harr;")
  1184. ("crarr") ("hookleftarrow"."&crarr;") ; has round hook, not quite CR
  1185. ("lArr") ("Leftarrow"."&lArr;")
  1186. ("uArr") ("Uparrow"."&uArr;")
  1187. ("rArr") ("Rightarrow"."&rArr;")
  1188. ("dArr") ("Downarrow"."&dArr;")
  1189. ("hArr") ("Leftrightarrow"."&hArr;")
  1190. ("forall")
  1191. ("part") ("partial"."&part;")
  1192. ("exist") ("exists"."&exist;")
  1193. ("empty") ("emptyset"."&empty;")
  1194. ("nabla")
  1195. ("isin") ("in"."&isin;")
  1196. ("notin")
  1197. ("ni")
  1198. ("prod")
  1199. ("sum")
  1200. ("minus")
  1201. ("lowast") ("ast"."&lowast;")
  1202. ("radic")
  1203. ("prop") ("proptp"."&prop;")
  1204. ("infin") ("infty"."&infin;")
  1205. ("ang") ("angle"."&ang;")
  1206. ("and") ("wedge"."&and;")
  1207. ("or") ("vee"."&or;")
  1208. ("cap")
  1209. ("cup")
  1210. ("int")
  1211. ("there4")
  1212. ("sim")
  1213. ("cong") ("simeq"."&cong;")
  1214. ("asymp")("approx"."&asymp;")
  1215. ("ne") ("neq"."&ne;")
  1216. ("equiv")
  1217. ("le")
  1218. ("ge")
  1219. ("sub") ("subset"."&sub;")
  1220. ("sup") ("supset"."&sup;")
  1221. ("nsub")
  1222. ("sube")
  1223. ("supe")
  1224. ("oplus")
  1225. ("otimes")
  1226. ("perp")
  1227. ("sdot") ("cdot"."&sdot;")
  1228. ("lceil")
  1229. ("rceil")
  1230. ("lfloor")
  1231. ("rfloor")
  1232. ("lang")
  1233. ("rang")
  1234. ("loz") ("Diamond"."&loz;")
  1235. ("spades") ("spadesuit"."&spades;")
  1236. ("clubs") ("clubsuit"."&clubs;")
  1237. ("hearts") ("diamondsuit"."&hearts;")
  1238. ("diams") ("diamondsuit"."&diams;")
  1239. ("smile"."&#9786;") ("blacksmile"."&#9787;") ("sad"."&#9785;")
  1240. ("quot")
  1241. ("amp")
  1242. ("lt")
  1243. ("gt")
  1244. ("OElig")
  1245. ("oelig")
  1246. ("Scaron")
  1247. ("scaron")
  1248. ("Yuml")
  1249. ("circ")
  1250. ("tilde")
  1251. ("ensp")
  1252. ("emsp")
  1253. ("thinsp")
  1254. ("zwnj")
  1255. ("zwj")
  1256. ("lrm")
  1257. ("rlm")
  1258. ("ndash")
  1259. ("mdash")
  1260. ("lsquo")
  1261. ("rsquo")
  1262. ("sbquo")
  1263. ("ldquo")
  1264. ("rdquo")
  1265. ("bdquo")
  1266. ("dagger")
  1267. ("Dagger")
  1268. ("permil")
  1269. ("lsaquo")
  1270. ("rsaquo")
  1271. ("euro")
  1272. ("arccos"."arccos")
  1273. ("arcsin"."arcsin")
  1274. ("arctan"."arctan")
  1275. ("arg"."arg")
  1276. ("cos"."cos")
  1277. ("cosh"."cosh")
  1278. ("cot"."cot")
  1279. ("coth"."coth")
  1280. ("csc"."csc")
  1281. ("deg"."deg")
  1282. ("det"."det")
  1283. ("dim"."dim")
  1284. ("exp"."exp")
  1285. ("gcd"."gcd")
  1286. ("hom"."hom")
  1287. ("inf"."inf")
  1288. ("ker"."ker")
  1289. ("lg"."lg")
  1290. ("lim"."lim")
  1291. ("liminf"."liminf")
  1292. ("limsup"."limsup")
  1293. ("ln"."ln")
  1294. ("log"."log")
  1295. ("max"."max")
  1296. ("min"."min")
  1297. ("Pr"."Pr")
  1298. ("sec"."sec")
  1299. ("sin"."sin")
  1300. ("sinh"."sinh")
  1301. ("sup"."sup")
  1302. ("tan"."tan")
  1303. ("tanh"."tanh")
  1304. )
  1305. "Entities for TeX->HTML translation.
  1306. Entries can be like (\"ent\"), in which case \"\\ent\" will be translated to
  1307. \"&ent;\". An entry can also be a dotted pair like (\"ent\".\"&other;\").
  1308. In that case, \"\\ent\" will be translated to \"&other;\".
  1309. The list contains HTML entities for Latin-1, Greek and other symbols.
  1310. It is supplemented by a number of commonly used TeX macros with appropriate
  1311. translations. There is currently no way for users to extend this.")
  1312. ;;; General functions for all backends
  1313. (defvar org-export-target-aliases nil
  1314. "Alist of targets with invisible aliases.")
  1315. (defvar org-export-code-refs nil
  1316. "Alist of code references and line numbers")
  1317. (defun org-export-preprocess-string (string &rest parameters)
  1318. "Cleanup STRING so that that the true exported has a more consistent source.
  1319. This function takes STRING, which should be a buffer-string of an org-file
  1320. to export. It then creates a temporary buffer where it does its job.
  1321. The result is then again returned as a string, and the exporter works
  1322. on this string to produce the exported version."
  1323. (interactive)
  1324. (let* ((htmlp (plist-get parameters :for-html))
  1325. (asciip (plist-get parameters :for-ascii))
  1326. (latexp (plist-get parameters :for-LaTeX))
  1327. (backend (cond (htmlp 'html) (latexp 'latex) (asciip 'ascii)))
  1328. (archived-trees (plist-get parameters :archived-trees))
  1329. (inhibit-read-only t)
  1330. (drawers org-drawers)
  1331. (outline-regexp "\\*+ ")
  1332. target-alist rtn)
  1333. (setq org-export-target-aliases nil)
  1334. (setq org-export-code-refs nil)
  1335. (with-current-buffer (get-buffer-create " org-mode-tmp")
  1336. (erase-buffer)
  1337. (insert string)
  1338. (setq case-fold-search t)
  1339. ;; Remove license-to-kill stuff
  1340. ;; The caller marks some stuff for killing, stuff that has been
  1341. ;; used to create the page title, for example.
  1342. (org-export-kill-licensed-text)
  1343. (let ((org-inhibit-startup t)) (org-mode))
  1344. (setq case-fold-search t)
  1345. ;; Call the hook
  1346. (run-hooks 'org-export-preprocess-hook)
  1347. (untabify (point-min) (point-max))
  1348. ;; Handle include files, and call a hook
  1349. (org-export-handle-include-files)
  1350. (run-hooks 'org-export-preprocess-after-include-files-hook)
  1351. ;; Get rid of archived trees
  1352. (org-export-remove-archived-trees archived-trees)
  1353. ;; Remove comment environment and comment subtrees
  1354. (org-export-remove-comment-blocks-and-subtrees)
  1355. ;; Get rid of excluded trees, and call a hook
  1356. (org-export-handle-export-tags (plist-get parameters :select-tags)
  1357. (plist-get parameters :exclude-tags))
  1358. (run-hooks 'org-export-preprocess-after-tree-selection-hook)
  1359. ;; Handle source code snippets
  1360. (org-export-replace-src-segments-and-examples backend)
  1361. ;; Normalize footnotes
  1362. (when (plist-get parameters :footnotes)
  1363. (org-footnote-normalize nil t))
  1364. ;; Find all headings and compute the targets for them
  1365. (setq target-alist (org-export-define-heading-targets target-alist))
  1366. ;; Get rid of drawers
  1367. (org-export-remove-or-extract-drawers drawers
  1368. (plist-get parameters :drawers))
  1369. ;; Get the correct stuff before the first headline
  1370. (when (plist-get parameters :skip-before-1st-heading)
  1371. (goto-char (point-min))
  1372. (when (re-search-forward "\\(^#.*\n\\)^\\*+[ \t]" nil t)
  1373. (delete-region (point-min) (match-beginning 0))
  1374. (goto-char (point-min))
  1375. (insert "\n")))
  1376. (when (plist-get parameters :add-text)
  1377. (goto-char (point-min))
  1378. (insert (plist-get parameters :add-text) "\n"))
  1379. ;; Remove todo-keywords before exporting, if the user has requested so
  1380. (org-export-remove-headline-metadata parameters)
  1381. ;; Remove timestamps, if the user has requested so
  1382. (org-export-remove-clock-lines)
  1383. (unless (plist-get parameters :timestamps)
  1384. (org-export-remove-timestamps))
  1385. ;; Find targets in comments and move them out of comments,
  1386. ;; but mark them as targets that should be invisible
  1387. (setq target-alist (org-export-handle-invisible-targets target-alist))
  1388. ;; Protect short examples
  1389. (org-export-protect-colon-examples)
  1390. ;; Protect backend specific stuff, throw away the others.
  1391. (org-export-select-backend-specific-text backend)
  1392. ;; Protect quoted subtrees
  1393. (org-export-protect-quoted-subtrees)
  1394. ;; Protect verbatim elements
  1395. (org-export-protect-verbatim)
  1396. ;; Blockquotes and verse
  1397. (org-export-mark-blockquote-and-verse)
  1398. ;; Attach captions to the correct object
  1399. (setq target-alist (org-export-attach-captions-and-attributes
  1400. backend target-alist))
  1401. ;; Find matches for radio targets and turn them into internal links
  1402. (org-export-mark-radio-links)
  1403. ;; Find all links that contain a newline and put them into a single line
  1404. (org-export-concatenate-multiline-links)
  1405. ;; Normalize links: Convert angle and plain links into bracket links
  1406. ;; and expand link abbreviations
  1407. (org-export-normalize-links)
  1408. ;; Find all internal links. If they have a fuzzy match (i.e. not
  1409. ;; a *dedicated* target match, let the link point to the
  1410. ;; corresponding section.
  1411. (org-export-target-internal-links target-alist)
  1412. ;; Find multiline emphasis and put them into single line
  1413. (when (plist-get parameters :emph-multiline)
  1414. (org-export-concatenate-multiline-emphasis))
  1415. ;; Remove special table lines
  1416. (when org-export-table-remove-special-lines
  1417. (org-export-remove-special-table-lines))
  1418. ;; Another hook
  1419. (run-hooks 'org-export-preprocess-before-backend-specifics-hook)
  1420. ;; Specific LaTeX stuff
  1421. (when latexp
  1422. (require 'org-export-latex nil)
  1423. (org-export-latex-preprocess))
  1424. ;; Specific ASCII stuff
  1425. (when asciip
  1426. (org-export-ascii-preprocess))
  1427. ;; Specific HTML stuff
  1428. (when htmlp
  1429. (org-export-html-preprocess parameters))
  1430. ;; Remove or replace comments
  1431. (org-export-handle-comments (plist-get parameters :comments))
  1432. ;; Run the final hook
  1433. (run-hooks 'org-export-preprocess-final-hook)
  1434. (setq rtn (buffer-string)))
  1435. (kill-buffer " org-mode-tmp")
  1436. rtn))
  1437. (defun org-export-kill-licensed-text ()
  1438. "Remove all text that is marked with a :org-license-to-kill property."
  1439. (let (p q)
  1440. (while (setq p (text-property-any (point-min) (point-max)
  1441. :org-license-to-kill t))
  1442. (delete-region
  1443. p (or (next-single-property-change p :org-license-to-kill)
  1444. (point-max))))))
  1445. (defun org-export-define-heading-targets (target-alist)
  1446. "Find all headings and define the targets for them.
  1447. The new targets are added to TARGET-ALIST, which is also returned."
  1448. (goto-char (point-min))
  1449. (org-init-section-numbers)
  1450. (let ((re (concat "^" org-outline-regexp
  1451. "\\| [ \t]*:ID:[ \t]*\\([^ \t\r\n]+\\)"))
  1452. level target)
  1453. (while (re-search-forward re nil t)
  1454. (if (match-end 1)
  1455. (push (cons (org-match-string-no-properties 1)
  1456. target) target-alist)
  1457. (setq level (org-reduced-level
  1458. (save-excursion (goto-char (point-at-bol))
  1459. (org-outline-level))))
  1460. (setq target (org-solidify-link-text
  1461. (format "sec-%s" (org-section-number level))))
  1462. (push (cons target target) target-alist)
  1463. (add-text-properties
  1464. (point-at-bol) (point-at-eol)
  1465. (list 'target target)))))
  1466. target-alist)
  1467. (defun org-export-handle-invisible-targets (target-alist)
  1468. "Find targets in comments and move them out of comments.
  1469. Mark them as invisible targets."
  1470. (let (target tmp a)
  1471. (goto-char (point-min))
  1472. (while (re-search-forward "^#.*?\\(<<<?\\([^>\r\n]+\\)>>>?\\).*" nil t)
  1473. ;; Check if the line before or after is a headline with a target
  1474. (if (setq target (or (get-text-property (point-at-bol 0) 'target)
  1475. (get-text-property (point-at-bol 2) 'target)))
  1476. (progn
  1477. ;; use the existing target in a neighboring line
  1478. (setq tmp (match-string 2))
  1479. (replace-match "")
  1480. (and (looking-at "\n") (delete-char 1))
  1481. (push (cons (setq tmp (org-solidify-link-text tmp)) target)
  1482. target-alist)
  1483. (setq a (or (assoc target org-export-target-aliases)
  1484. (progn
  1485. (push (list target) org-export-target-aliases)
  1486. (car org-export-target-aliases))))
  1487. (push tmp (cdr a)))
  1488. ;; Make an invisible target
  1489. (replace-match "\\1(INVISIBLE)"))))
  1490. target-alist)
  1491. (defun org-export-target-internal-links (target-alist)
  1492. "Find all internal links and assign targets to them.
  1493. If a link has a fuzzy match (i.e. not a *dedicated* target match),
  1494. let the link point to the corresponding section.
  1495. This function also handles the id links, if they have a match in
  1496. the current file."
  1497. (goto-char (point-min))
  1498. (while (re-search-forward org-bracket-link-regexp nil t)
  1499. (org-if-unprotected
  1500. (let* ((md (match-data))
  1501. (desc (match-end 2))
  1502. (link (org-link-unescape (match-string 1)))
  1503. (slink (org-solidify-link-text link))
  1504. found props pos cref
  1505. (target
  1506. (cond
  1507. ((cdr (assoc slink target-alist)))
  1508. ((and (string-match "^id:" link)
  1509. (cdr (assoc (substring link 3) target-alist))))
  1510. ((string-match "^(\\(.*\\))$" link)
  1511. (setq cref (match-string 1 link))
  1512. (concat "coderef:" cref))
  1513. ((string-match org-link-types-re link) nil)
  1514. ((or (file-name-absolute-p link)
  1515. (string-match "^\\." link))
  1516. nil)
  1517. (t
  1518. (save-excursion
  1519. (setq found (condition-case nil (org-link-search link)
  1520. (error nil)))
  1521. (when (and found
  1522. (or (org-on-heading-p)
  1523. (not (eq found 'dedicated))))
  1524. (or (get-text-property (point) 'target)
  1525. (get-text-property
  1526. (max (point-min)
  1527. (1- (or (previous-single-property-change
  1528. (point) 'target) 0)))
  1529. 'target))))))))
  1530. (when target
  1531. (set-match-data md)
  1532. (goto-char (match-beginning 1))
  1533. (setq props (text-properties-at (point)))
  1534. (delete-region (match-beginning 1) (match-end 1))
  1535. (setq pos (point))
  1536. (insert target)
  1537. (unless desc (insert "][" link))
  1538. (add-text-properties pos (point) props))))))
  1539. (defun org-export-remove-or-extract-drawers (all-drawers exp-drawers)
  1540. "Remove drawers, or extract the content.
  1541. ALL-DRAWERS is a list of all drawer names valid in the current buffer.
  1542. EXP-DRAWERS can be t to keep all drawer contents, or a list of drawers
  1543. whose content to keep."
  1544. (unless (eq t exp-drawers)
  1545. (goto-char (point-min))
  1546. (let ((re (concat "^[ \t]*:\\("
  1547. (mapconcat
  1548. 'identity
  1549. (org-delete-all exp-drawers
  1550. (copy-sequence all-drawers))
  1551. "\\|")
  1552. "\\):[ \t]*\n\\([^@]*?\n\\)?[ \t]*:END:[ \t]*\n")))
  1553. (while (re-search-forward re nil t)
  1554. (replace-match "")))))
  1555. (defun org-export-handle-export-tags (select-tags exclude-tags)
  1556. "Modify the buffer, honoring SELECT-TAGS and EXCLUDE-TAGS.
  1557. Both arguments are lists of tags.
  1558. If any of SELECT-TAGS is found, all trees not marked by a SELECT-TAG
  1559. will be removed.
  1560. After that, all subtrees that are marked by EXCLUDE-TAGS will be
  1561. removed as well."
  1562. (remove-text-properties (point-min) (point-max) '(:org-delete t))
  1563. (let* ((re-sel (concat ":\\(" (mapconcat 'regexp-quote
  1564. select-tags "\\|")
  1565. "\\):"))
  1566. (re-excl (concat ":\\(" (mapconcat 'regexp-quote
  1567. exclude-tags "\\|")
  1568. "\\):"))
  1569. beg end cont)
  1570. (goto-char (point-min))
  1571. (when (and select-tags
  1572. (re-search-forward
  1573. (concat "^\\*+[ \t].*" re-sel "[^ \t\n]*[ \t]*$") nil t))
  1574. ;; At least one tree is marked for export, this means
  1575. ;; all the unmarked stuff needs to go.
  1576. ;; Dig out the trees that should be exported
  1577. (goto-char (point-min))
  1578. (outline-next-heading)
  1579. (setq beg (point))
  1580. (put-text-property beg (point-max) :org-delete t)
  1581. (while (re-search-forward re-sel nil t)
  1582. (when (org-on-heading-p)
  1583. (org-back-to-heading)
  1584. (remove-text-properties
  1585. (max (1- (point)) (point-min))
  1586. (setq cont (save-excursion (org-end-of-subtree t t)))
  1587. '(:org-delete t))
  1588. (while (and (org-up-heading-safe)
  1589. (get-text-property (point) :org-delete))
  1590. (remove-text-properties (max (1- (point)) (point-min))
  1591. (point-at-eol) '(:org-delete t)))
  1592. (goto-char cont))))
  1593. ;; Remove the trees explicitly marked for noexport
  1594. (when exclude-tags
  1595. (goto-char (point-min))
  1596. (while (re-search-forward re-excl nil t)
  1597. (when (org-at-heading-p)
  1598. (org-back-to-heading t)
  1599. (setq beg (point))
  1600. (org-end-of-subtree t)
  1601. (delete-region beg (point)))))
  1602. ;; Remove everything that is now still marked for deletion
  1603. (goto-char (point-min))
  1604. (while (setq beg (text-property-any (point-min) (point-max) :org-delete t))
  1605. (setq end (or (next-single-property-change beg :org-delete)
  1606. (point-max)))
  1607. (delete-region beg end))))
  1608. (defun org-export-remove-archived-trees (export-archived-trees)
  1609. "Remove archived trees.
  1610. When EXPORT-ARCHIVED-TREES is `headline;, only the headline will be exported.
  1611. When it is t, the entire archived tree will be exported.
  1612. When it is nil the entire tree including the headline will be removed
  1613. from the buffer."
  1614. (let ((re-archive (concat ":" org-archive-tag ":"))
  1615. a b)
  1616. (when (not (eq export-archived-trees t))
  1617. (goto-char (point-min))
  1618. (while (re-search-forward re-archive nil t)
  1619. (if (not (org-on-heading-p t))
  1620. (org-end-of-subtree t)
  1621. (beginning-of-line 1)
  1622. (setq a (if export-archived-trees
  1623. (1+ (point-at-eol)) (point))
  1624. b (org-end-of-subtree t))
  1625. (if (> b a) (delete-region a b)))))))
  1626. (defun org-export-remove-headline-metadata (opts)
  1627. "Remove meta data from the headline, according to user options."
  1628. (let ((re org-complex-heading-regexp)
  1629. (todo (plist-get opts :todo-keywords))
  1630. (tags (plist-get opts :tags))
  1631. (pri (plist-get opts :priority))
  1632. (elts '(1 2 3 4 5))
  1633. rpl props)
  1634. (setq elts (delq nil (list 1 (if todo 2) (if pri 3) 4 (if tags 5))))
  1635. (when (or (not todo) (not tags) (not pri))
  1636. (goto-char (point-min))
  1637. (while (re-search-forward re nil t)
  1638. (org-if-unprotected
  1639. (setq rpl (mapconcat (lambda (i) (if (match-end i) (match-string i) ""))
  1640. elts " "))
  1641. (replace-match rpl t t))))))
  1642. (defun org-export-remove-timestamps ()
  1643. "Remove timestamps and keywords for export."
  1644. (while (re-search-forward org-maybe-keyword-time-regexp nil t)
  1645. (org-if-unprotected
  1646. (replace-match "")
  1647. (beginning-of-line 1)
  1648. (if (looking-at "[- \t]*\\(=>[- \t0-9:]*\\)?[ \t]*\n")
  1649. (replace-match "")))))
  1650. (defun org-export-remove-clock-lines ()
  1651. "Remove timestamps and keywords for export."
  1652. (let ((re (concat "^[ \t]*" org-clock-string ".*\n?")))
  1653. (while (re-search-forward re nil t)
  1654. (org-if-unprotected
  1655. (replace-match "")))))
  1656. (defun org-export-protect-quoted-subtrees ()
  1657. "Mark quoted subtrees with the protection property."
  1658. (let ((re-quote (concat "^\\*+[ \t]+" org-quote-string "\\>")))
  1659. (goto-char (point-min))
  1660. (while (re-search-forward re-quote nil t)
  1661. (goto-char (match-beginning 0))
  1662. (end-of-line 1)
  1663. (add-text-properties (point) (org-end-of-subtree t)
  1664. '(org-protected t)))))
  1665. (defun org-export-protect-verbatim ()
  1666. "Mark verbatim snippets with the protection property."
  1667. (goto-char (point-min))
  1668. (while (re-search-forward org-verbatim-re nil t)
  1669. (add-text-properties (match-beginning 4) (match-end 4)
  1670. '(org-protected t))
  1671. (goto-char (1+ (match-end 4)))))
  1672. (defun org-export-protect-colon-examples ()
  1673. "Protect lines starting with a colon."
  1674. (goto-char (point-min))
  1675. (while (re-search-forward "^[ \t]*:.*\\(\n[ \t]*:.*\\)*" nil t)
  1676. (add-text-properties (match-beginning 0) (match-end 0)
  1677. '(org-protected t))))
  1678. (defun org-export-select-backend-specific-text (backend)
  1679. (let ((formatters
  1680. '((html "HTML" "BEGIN_HTML" "END_HTML")
  1681. (ascii "ASCII" "BEGIN_ASCII" "END_ASCII")
  1682. (latex "LaTeX" "BEGIN_LaTeX" "END_LaTeX")))
  1683. (case-fold-search t)
  1684. fmt)
  1685. (while formatters
  1686. (setq fmt (pop formatters))
  1687. (when (eq (car fmt) backend)
  1688. ;; This is selected code, put it into the file for real
  1689. (goto-char (point-min))
  1690. (while (re-search-forward (concat "^#\\+" (cadr fmt)
  1691. ":[ \t]*\\(.*\\)") nil t)
  1692. (replace-match "\\1" t)
  1693. (add-text-properties
  1694. (point-at-bol) (min (1+ (point-at-eol)) (point-max))
  1695. '(org-protected t))))
  1696. (goto-char (point-min))
  1697. (while (re-search-forward
  1698. (concat "^#\\+"
  1699. (caddr fmt) "\\>.*\\(\\(\n.*\\)*?\n\\)#\\+"
  1700. (cadddr fmt) "\\>.*\n?") nil t)
  1701. (if (eq (car fmt) backend)
  1702. ;; yes, keep this
  1703. (add-text-properties (match-beginning 1) (1+ (match-end 1))
  1704. '(org-protected t))
  1705. ;; No, this is for a different backend, kill it
  1706. (delete-region (match-beginning 0) (match-end 0)))))))
  1707. (defun org-export-mark-blockquote-and-verse ()
  1708. "Mark block quote and verse environments with special cookies.
  1709. These special cookies will later be interpreted by the backend."
  1710. ;; Blockquotes
  1711. (goto-char (point-min))
  1712. (while (re-search-forward "^#\\+\\(begin\\|end\\)_\\(block\\)?quote\\>.*"
  1713. nil t)
  1714. (replace-match (if (equal (downcase (match-string 1)) "end")
  1715. "ORG-BLOCKQUOTE-END" "ORG-BLOCKQUOTE-START")
  1716. t t))
  1717. ;; Verse
  1718. (goto-char (point-min))
  1719. (while (re-search-forward "^#\\+\\(begin\\|end\\)_verse\\>.*" nil t)
  1720. (replace-match (if (equal (downcase (match-string 1)) "end")
  1721. "ORG-VERSE-END" "ORG-VERSE-START")
  1722. t t)))
  1723. (defun org-export-attach-captions-and-attributes (backend target-alist)
  1724. "Move #+CAPTION, #+ATTR_BACKEND, and #+LABEL text into text properties.
  1725. If the next thing following is a table, add the text properties to the first
  1726. table line. If it is a link, add it to the line containing the link."
  1727. (goto-char (point-min))
  1728. (remove-text-properties (point-min) (point-max)
  1729. '(org-caption nil org-attributes nil))
  1730. (let ((case-fold-search t)
  1731. (re (concat "^#\\+caption:[ \t]+\\(.*\\)"
  1732. "\\|"
  1733. "^#\\+attr_" (symbol-name backend) ":[ \t]+\\(.*\\)"
  1734. "\\|"
  1735. "^#\\+label:[ \t]+\\(.*\\)"
  1736. "\\|"
  1737. "^[ \t]*|[^-]"
  1738. "\\|"
  1739. "^[ \t]*\\[\\[.*\\]\\][ \t]*$"))
  1740. cap attr label)
  1741. (while (re-search-forward re nil t)
  1742. (cond
  1743. ((match-end 1)
  1744. (setq cap (concat cap (if cap " " "") (org-trim (match-string 1)))))
  1745. ((match-end 2)
  1746. (setq attr (concat attr (if attr " " "") (org-trim (match-string 2)))))
  1747. ((match-end 3)
  1748. (setq label (org-trim (match-string 3))))
  1749. (t
  1750. (add-text-properties (point-at-bol) (point-at-eol)
  1751. (list 'org-caption cap
  1752. 'org-attributes attr
  1753. 'org-label label))
  1754. (if label (push (cons label label) target-alist))
  1755. (setq cap nil attr nil label nil)))))
  1756. target-alist)
  1757. (defun org-export-remove-comment-blocks-and-subtrees ()
  1758. "Remove the comment environment, and also commented subtrees."
  1759. (let ((re-commented (concat "^\\*+[ \t]+" org-comment-string "\\>"))
  1760. (case-fold-search nil))
  1761. ;; Remove comment environment
  1762. (goto-char (point-min))
  1763. (while (re-search-forward
  1764. "^#\\+BEGIN_COMMENT[ \t]*\n[^\000]*?^#\\+END_COMMENT\\>.*" nil t)
  1765. (replace-match "" t t))
  1766. ;; Remove subtrees that are commented
  1767. (goto-char (point-min))
  1768. (while (re-search-forward re-commented nil t)
  1769. (goto-char (match-beginning 0))
  1770. (delete-region (point) (org-end-of-subtree t)))))
  1771. (defun org-export-handle-comments (commentsp)
  1772. "Remove comments, or convert to backend-specific format.
  1773. COMMENTSP can be a format string for publishing comments.
  1774. When it is nil, all comments will be removed."
  1775. (let ((re "^#\\(.*\n?\\)")
  1776. pos)
  1777. (goto-char (point-min))
  1778. (while (or (looking-at re)
  1779. (re-search-forward re nil t))
  1780. (setq pos (match-beginning 0))
  1781. (if commentsp
  1782. (progn (add-text-properties
  1783. (match-beginning 0) (match-end 0) '(org-protected t))
  1784. (replace-match (format commentsp (match-string 1)) t t))
  1785. (goto-char (1+ pos))
  1786. (org-if-unprotected
  1787. (replace-match "")
  1788. (goto-char (max (point-min) (1- pos))))))))
  1789. (defun org-export-mark-radio-links ()
  1790. "Find all matches for radio targets and turn them into internal links."
  1791. (let ((re-radio (and org-target-link-regexp
  1792. (concat "\\([^<]\\)\\(" org-target-link-regexp "\\)"))))
  1793. (goto-char (point-min))
  1794. (when re-radio
  1795. (while (re-search-forward re-radio nil t)
  1796. (org-if-unprotected
  1797. (replace-match "\\1[[\\2]]"))))))
  1798. (defun org-export-remove-special-table-lines ()
  1799. "Remove tables lines that are used for internal purposes."
  1800. (goto-char (point-min))
  1801. (while (re-search-forward "^[ \t]*|" nil t)
  1802. (beginning-of-line 1)
  1803. (if (or (looking-at "[ \t]*| *[!_^] *|")
  1804. (and (looking-at ".*?| *<[0-9]+> *|")
  1805. (not (looking-at ".*?| *[^ <|]"))))
  1806. (delete-region (max (point-min) (1- (point-at-bol)))
  1807. (point-at-eol))
  1808. (end-of-line 1))))
  1809. (defun org-export-normalize-links ()
  1810. "Convert all links to bracket links, and expand link abbreviations."
  1811. (let ((re-plain-link (concat "\\([^[<]\\)" org-plain-link-re))
  1812. (re-angle-link (concat "\\([^[]\\)" org-angle-link-re)))
  1813. (goto-char (point-min))
  1814. (while (re-search-forward re-plain-link nil t)
  1815. (goto-char (1- (match-end 0)))
  1816. (org-if-unprotected
  1817. (let* ((s (concat (match-string 1) "[[" (match-string 2)
  1818. ":" (match-string 3) "]]")))
  1819. ;; added 'org-link face to links
  1820. (put-text-property 0 (length s) 'face 'org-link s)
  1821. (replace-match s t t))))
  1822. (goto-char (point-min))
  1823. (while (re-search-forward re-angle-link nil t)
  1824. (goto-char (1- (match-end 0)))
  1825. (org-if-unprotected
  1826. (let* ((s (concat (match-string 1) "[[" (match-string 2)
  1827. ":" (match-string 3) "]]")))
  1828. (put-text-property 0 (length s) 'face 'org-link s)
  1829. (replace-match s t t))))
  1830. (goto-char (point-min))
  1831. (while (re-search-forward org-bracket-link-regexp nil t)
  1832. (goto-char (1- (match-end 0)))
  1833. (org-if-unprotected
  1834. (let* ((xx (save-match-data
  1835. (org-translate-link
  1836. (org-link-expand-abbrev (match-string 1)))))
  1837. (s (concat
  1838. "[[" xx "]"
  1839. (if (match-end 3)
  1840. (match-string 2)
  1841. (concat "[" (org-add-props
  1842. (copy-sequence xx)
  1843. '(org-protected t))
  1844. "]"))
  1845. "]")))
  1846. (put-text-property 0 (length s) 'face 'org-link s)
  1847. (replace-match s t t))))))
  1848. (defun org-export-concatenate-multiline-links ()
  1849. "Find multi-line links and put it all into a single line.
  1850. This is to make sure that the line-processing export backends
  1851. can work correctly."
  1852. (goto-char (point-min))
  1853. (while (re-search-forward "\\(\\(\\[\\|\\]\\)\\[[^]]*?\\)[ \t]*\n[ \t]*\\([^]]*\\]\\(\\[\\|\\]\\)\\)" nil t)
  1854. (org-if-unprotected
  1855. (replace-match "\\1 \\3")
  1856. (goto-char (match-beginning 0)))))
  1857. (defun org-export-concatenate-multiline-emphasis ()
  1858. "Find multi-line emphasis and put it all into a single line.
  1859. This is to make sure that the line-processing export backends
  1860. can work correctly."
  1861. (goto-char (point-min))
  1862. (while (re-search-forward org-emph-re nil t)
  1863. (if (not (= (char-after (match-beginning 3))
  1864. (char-after (match-beginning 4))))
  1865. (org-if-unprotected
  1866. (subst-char-in-region (match-beginning 0) (match-end 0)
  1867. ?\n ?\ t)
  1868. (goto-char (1- (match-end 0))))
  1869. (goto-char (1+ (match-beginning 0))))))
  1870. (defun org-export-grab-title-from-buffer ()
  1871. "Get a title for the current document, from looking at the buffer."
  1872. (let ((inhibit-read-only t))
  1873. (save-excursion
  1874. (goto-char (point-min))
  1875. (let ((end (if (looking-at org-outline-regexp)
  1876. (point)
  1877. (save-excursion (outline-next-heading) (point)))))
  1878. (when (re-search-forward "^[ \t]*[^|# \t\r\n].*\n" end t)
  1879. ;; Mark the line so that it will not be exported as normal text.
  1880. (org-unmodified
  1881. (add-text-properties (match-beginning 0) (match-end 0)
  1882. (list :org-license-to-kill t)))
  1883. ;; Return the title string
  1884. (org-trim (match-string 0)))))))
  1885. (defun org-export-get-title-from-subtree ()
  1886. "Return subtree title and exclude it from export."
  1887. (let (title (m (mark)) (rbeg (region-beginning)) (rend (region-end)))
  1888. (save-excursion
  1889. (goto-char rbeg)
  1890. (when (and (org-at-heading-p)
  1891. (>= (org-end-of-subtree t t) rend))
  1892. ;; This is a subtree, we take the title from the first heading
  1893. (goto-char rbeg)
  1894. (looking-at org-todo-line-regexp)
  1895. (setq title (match-string 3))
  1896. (org-unmodified
  1897. (add-text-properties (point) (1+ (point-at-eol))
  1898. (list :org-license-to-kill t)))
  1899. (setq title (or (org-entry-get nil "EXPORT_TITLE") title))))
  1900. title))
  1901. (defun org-solidify-link-text (s &optional alist)
  1902. "Take link text and make a safe target out of it."
  1903. (save-match-data
  1904. (let* ((rtn
  1905. (mapconcat
  1906. 'identity
  1907. (org-split-string s "[ \t\r\n]+") "=="))
  1908. (a (assoc rtn alist)))
  1909. (or (cdr a) rtn))))
  1910. (defun org-get-min-level (lines)
  1911. "Get the minimum level in LINES."
  1912. (let ((re "^\\(\\*+\\) ") l min)
  1913. (catch 'exit
  1914. (while (setq l (pop lines))
  1915. (if (string-match re l)
  1916. (throw 'exit (org-tr-level (length (match-string 1 l))))))
  1917. 1)))
  1918. ;; Variable holding the vector with section numbers
  1919. (defvar org-section-numbers (make-vector org-level-max 0))
  1920. (defun org-init-section-numbers ()
  1921. "Initialize the vector for the section numbers."
  1922. (let* ((level -1)
  1923. (numbers (nreverse (org-split-string "" "\\.")))
  1924. (depth (1- (length org-section-numbers)))
  1925. (i depth) number-string)
  1926. (while (>= i 0)
  1927. (if (> i level)
  1928. (aset org-section-numbers i 0)
  1929. (setq number-string (or (car numbers) "0"))
  1930. (if (string-match "\\`[A-Z]\\'" number-string)
  1931. (aset org-section-numbers i
  1932. (- (string-to-char number-string) ?A -1))
  1933. (aset org-section-numbers i (string-to-number number-string)))
  1934. (pop numbers))
  1935. (setq i (1- i)))))
  1936. (defun org-section-number (&optional level)
  1937. "Return a string with the current section number.
  1938. When LEVEL is non-nil, increase section numbers on that level."
  1939. (let* ((depth (1- (length org-section-numbers)))
  1940. (string "")
  1941. (fmts (car org-export-section-number-format))
  1942. (term (cdr org-export-section-number-format))
  1943. (sep "")
  1944. ctype fmt idx n)
  1945. (when level
  1946. (when (> level -1)
  1947. (aset org-section-numbers
  1948. level (1+ (aref org-section-numbers level))))
  1949. (setq idx (1+ level))
  1950. (while (<= idx depth)
  1951. (if (not (= idx 1))
  1952. (aset org-section-numbers idx 0))
  1953. (setq idx (1+ idx))))
  1954. (setq idx 0)
  1955. (while (<= idx depth)
  1956. (when (> (aref org-section-numbers idx) 0)
  1957. (setq fmt (or (pop fmts) fmt)
  1958. ctype (car fmt)
  1959. n (aref org-section-numbers idx)
  1960. string (if (> n 0)
  1961. (concat string sep (org-number-to-counter n ctype))
  1962. (concat string ".0"))
  1963. sep (nth 1 fmt)))
  1964. (setq idx (1+ idx)))
  1965. (save-match-data
  1966. (if (string-match "\\`\\([@0]\\.\\)+" string)
  1967. (setq string (replace-match "" t nil string)))
  1968. (if (string-match "\\(\\.0\\)+\\'" string)
  1969. (setq string (replace-match "" t nil string))))
  1970. (concat string term)))
  1971. (defun org-number-to-counter (n type)
  1972. "Concert number N to a string counter, according to TYPE.
  1973. TYPE must be a string, any of:
  1974. 1 number
  1975. A A,B,....
  1976. a a,b,....
  1977. I upper case roman numeral
  1978. i lower case roman numeral"
  1979. (cond
  1980. ((equal type "1") (number-to-string n))
  1981. ((equal type "A") (char-to-string (+ ?A n -1)))
  1982. ((equal type "a") (char-to-string (+ ?a n -1)))
  1983. ((equal type "I") (org-number-to-roman n))
  1984. ((equal type "i") (downcase (org-number-to-roman n)))
  1985. (t (error "Invalid counter type `%s'" type))))
  1986. (defun org-number-to-roman (n)
  1987. "Convert integer N into a roman numeral."
  1988. (let ((roman '((1000 . "M") (900 . "CM") (500 . "D") (400 . "CD")
  1989. ( 100 . "C") ( 90 . "XC") ( 50 . "L") ( 40 . "XL")
  1990. ( 10 . "X") ( 9 . "IX") ( 5 . "V") ( 4 . "IV")
  1991. ( 1 . "I")))
  1992. (res ""))
  1993. (if (<= n 0)
  1994. (number-to-string n)
  1995. (while roman
  1996. (if (>= n (caar roman))
  1997. (setq n (- n (caar roman))
  1998. res (concat res (cdar roman)))
  1999. (pop roman)))
  2000. res)))
  2001. (org-number-to-roman 1961)
  2002. ;;; Include files
  2003. (defun org-export-handle-include-files ()
  2004. "Include the contents of include files, with proper formatting."
  2005. (let ((case-fold-search t)
  2006. params file markup lang start end prefix prefix1)
  2007. (goto-char (point-min))
  2008. (while (re-search-forward "^#\\+INCLUDE:?[ \t]+\\(.*\\)" nil t)
  2009. (setq params (read (concat "(" (match-string 1) ")"))
  2010. prefix (org-get-and-remove-property 'params :prefix)
  2011. prefix1 (org-get-and-remove-property 'params :prefix1)
  2012. file (org-symname-or-string (pop params))
  2013. markup (org-symname-or-string (pop params))
  2014. lang (org-symname-or-string (pop params)))
  2015. (delete-region (match-beginning 0) (match-end 0))
  2016. (if (or (not file)
  2017. (not (file-exists-p file))
  2018. (not (file-readable-p file)))
  2019. (insert (format "CANNOT INCLUDE FILE %s" file))
  2020. (when markup
  2021. (if (equal (downcase markup) "src")
  2022. (setq start (format "#+begin_src %s\n" (or lang "fundamental"))
  2023. end "#+end_src")
  2024. (setq start (format "#+begin_%s\n" markup)
  2025. end (format "#+end_%s" markup))))
  2026. (insert (or start ""))
  2027. (insert (org-get-file-contents (expand-file-name file) prefix prefix1))
  2028. (or (bolp) (newline))
  2029. (insert (or end ""))))))
  2030. (defun org-get-file-contents (file &optional prefix prefix1)
  2031. "Get the contents of FILE and return them as a string.
  2032. If PREFIX is a string, prepend it to each line. If PREFIX1
  2033. is a string, prepend it to the first line instead of PREFIX."
  2034. (with-temp-buffer
  2035. (insert-file-contents file)
  2036. (when (or prefix prefix1)
  2037. (goto-char (point-min))
  2038. (while (not (eobp))
  2039. (insert (or prefix1 prefix))
  2040. (setq prefix1 nil)
  2041. (beginning-of-line 2)))
  2042. (buffer-string)))
  2043. (defun org-get-and-remove-property (listvar prop)
  2044. "Check if the value of LISTVAR contains PROP as a property.
  2045. If yes, return the value of that property (i.e. the element following
  2046. in the list) and remove property and value from the list in LISTVAR."
  2047. (let ((list (symbol-value listvar)) m v)
  2048. (when (setq m (member prop list))
  2049. (setq v (nth 1 m))
  2050. (if (equal (car list) prop)
  2051. (set listvar (cddr list))
  2052. (setcdr (nthcdr (- (length list) (length m) 1) list)
  2053. (cddr m))
  2054. (set listvar list)))
  2055. v))
  2056. (defun org-symname-or-string (s)
  2057. (if (symbolp s)
  2058. (if s (symbol-name s) s)
  2059. s))
  2060. ;;; Fontification and line numbers for code examples
  2061. (defvar org-export-last-code-line-counter-value 0)
  2062. (defun org-export-replace-src-segments-and-examples (backend)
  2063. "Replace source code segments with special code for export."
  2064. (setq org-export-last-code-line-counter-value 0)
  2065. (let ((case-fold-search t)
  2066. lang code trans opts)
  2067. (goto-char (point-min))
  2068. (while (re-search-forward
  2069. "\\(^#\\+BEGIN_SRC:?[ \t]+\\([^ \t\n]+\\)\\(.*\\)\n\\([^\000]+?\n\\)#\\+END_SRC.*\\)\\|\\(^#\\+BEGIN_EXAMPLE:?\\(?:[ \t]+\\(.*\\)\\)?\n\\([^\000]+?\n\\)#\\+END_EXAMPLE.*\\)"
  2070. nil t)
  2071. (if (match-end 1)
  2072. ;; src segments
  2073. (setq lang (match-string 2)
  2074. opts (match-string 3)
  2075. code (match-string 4))
  2076. (setq lang nil
  2077. opts (match-string 6)
  2078. code (match-string 7)))
  2079. (setq trans (org-export-format-source-code-or-example
  2080. backend lang code opts))
  2081. (replace-match trans t t))))
  2082. (defvar htmlp) ;; dynamically scoped
  2083. (defvar latexp) ;; dynamically scoped
  2084. (defun org-export-format-source-code-or-example (backend
  2085. lang code &optional opts)
  2086. "Format CODE from language LANG and return it formatted for export.
  2087. If LANG is nil, do not add any fontification.
  2088. OPTS contains formatting optons, like `-n' for triggering numbering lines,
  2089. and `+n' for continuing previous numering.
  2090. Code formatting according to language currently only works for HTML.
  2091. Numbering lines works for all three major backends (html, latex, and ascii)."
  2092. (save-match-data
  2093. (let (num cont rtn named rpllbl keepp fmt)
  2094. (setq opts (or opts "")
  2095. num (string-match "[-+]n\\>" opts)
  2096. cont (string-match "\\+n\\>" opts)
  2097. rpllbl (string-match "-r\\>" opts)
  2098. keepp (string-match "-k\\>" opts)
  2099. fmt (if (string-match "-l[ \t]+\"\\([^\"\n]+\\)\"" opts)
  2100. (match-string 1 opts)))
  2101. (if keepp (setq rpllbl 'keep))
  2102. (setq rtn code)
  2103. (when (equal lang "org")
  2104. (setq rtn (with-temp-buffer
  2105. (insert rtn)
  2106. ;; Free up the protected lines
  2107. (goto-char (point-min))
  2108. (while (re-search-forward "^," nil t)
  2109. (replace-match "")
  2110. (end-of-line 1))
  2111. (buffer-string))))
  2112. ;; Now backend-specific coding
  2113. (cond
  2114. ((eq backend 'html)
  2115. ;; We are exporting to HTML
  2116. (when lang
  2117. (require 'htmlize nil t)
  2118. (when (not (fboundp 'htmlize-region-for-paste))
  2119. ;; we do not have htmlize.el, or an old version of it
  2120. (message
  2121. "htmlize.el 1.34 or later is needed for source code formatting")))
  2122. (if lang
  2123. (let* ((mode (and lang (intern (concat lang "-mode"))))
  2124. (org-inhibit-startup t)
  2125. (org-startup-folded nil))
  2126. (setq rtn
  2127. (with-temp-buffer
  2128. (insert rtn)
  2129. (if (functionp mode)
  2130. (funcall mode)
  2131. (fundamental-mode))
  2132. (font-lock-fontify-buffer)
  2133. (org-export-htmlize-region-for-paste
  2134. (point-min) (point-max))))
  2135. (if (string-match "<pre\\([^>]*\\)>\n?" rtn)
  2136. (setq rtn (replace-match
  2137. (format "<pre class=\"src src-%s\">\n" lang)
  2138. t t rtn))))
  2139. (setq rtn (concat "<pre class=\"example\">\n" rtn "</pre>\n")))
  2140. (setq rtn (org-export-number-lines rtn 'html 1 1 num cont rpllbl fmt))
  2141. (concat "\n#+BEGIN_HTML\n" (org-add-props rtn '(org-protected t)) "\n#+END_HTML\n\n"))
  2142. ((eq backend 'latex)
  2143. (setq rtn (org-export-number-lines rtn 'latex 0 0 num cont rpllbl fmt))
  2144. (concat "\n#+BEGIN_LaTeX\n"
  2145. (org-add-props (concat "\\begin{verbatim}\n" rtn "\n\\end{verbatim}\n")
  2146. '(org-protected t))
  2147. "#+END_LaTeX\n\n"))
  2148. ((eq backend 'ascii)
  2149. ;; This is not HTML or LaTeX, so just make it an example.
  2150. (setq rtn (org-export-number-lines rtn 'ascii 0 0 num cont rpllbl fmt))
  2151. (concat "#+BEGIN_ASCII\n"
  2152. (org-add-props
  2153. (concat
  2154. (mapconcat
  2155. (lambda (l) (concat " " l))
  2156. (org-split-string rtn "\n")
  2157. "\n")
  2158. "\n")
  2159. '(org-protected t))
  2160. "#+END_ASCII\n"))))))
  2161. (defun org-export-number-lines (text backend
  2162. &optional skip1 skip2 number cont
  2163. replace-labels label-format)
  2164. (if (and (not number) (not (eq replace-labels 'keep)))
  2165. (setq replace-labels nil)) ;; must use names if no numbers
  2166. (setq skip1 (or skip1 0) skip2 (or skip2 0))
  2167. (if (not cont) (setq org-export-last-code-line-counter-value 0))
  2168. (with-temp-buffer
  2169. (insert text)
  2170. (goto-char (point-max))
  2171. (skip-chars-backward " \t\n\r")
  2172. (delete-region (point) (point-max))
  2173. (beginning-of-line (- 1 skip2))
  2174. (let* ((last (org-current-line))
  2175. (n org-export-last-code-line-counter-value)
  2176. (nmax (+ n (- last skip1)))
  2177. (fmt (format "%%%dd: " (length (number-to-string nmax))))
  2178. (fm
  2179. (cond
  2180. ((eq backend 'html) (format "<span class=\"linenr\">%s</span>"
  2181. fmt))
  2182. ((eq backend 'ascii) fmt)
  2183. ((eq backend 'latex) fmt)
  2184. (t "")))
  2185. (label-format (or label-format org-coderef-label-format))
  2186. (label-pre (if (string-match "%s" label-format)
  2187. (substring label-format 0 (match-beginning 0))
  2188. label-format))
  2189. (label-post (if (string-match "%s" label-format)
  2190. (substring label-format (match-end 0))
  2191. ""))
  2192. (lbl-re
  2193. (concat
  2194. ".*?\\S-.*?\\([ \t]*\\("
  2195. (regexp-quote label-pre)
  2196. "\\([-a-zA-Z0-9_]+\\)"
  2197. (regexp-quote label-post)
  2198. "\\)\\)"))
  2199. ref)
  2200. (goto-line (1+ skip1))
  2201. (while (and (re-search-forward "^" nil t) (not (eobp)) (< n nmax))
  2202. (if number
  2203. (insert (format fm (incf n)))
  2204. (forward-char 1))
  2205. (when (and (not (eq replace-labels 'keep))
  2206. (looking-at lbl-re))
  2207. (setq ref (match-string 3))
  2208. (if replace-labels
  2209. (progn
  2210. (delete-region (match-beginning 1) (match-end 1))
  2211. (push (cons ref n) org-export-code-refs))
  2212. (goto-char (match-beginning 2))
  2213. (delete-region (match-beginning 2) (match-end 2))
  2214. (insert "(" ref ")")
  2215. (push (cons ref (concat "(" ref ")")) org-export-code-refs))
  2216. (when (eq backend 'html)
  2217. (save-excursion
  2218. (beginning-of-line 1)
  2219. (insert (format "<span id=\"coderef-%s\" class=\"coderef-off\">"
  2220. ref))
  2221. (end-of-line 1)
  2222. (insert "</span>")))))
  2223. (setq org-export-last-code-line-counter-value n)
  2224. (goto-char (point-max))
  2225. (newline)
  2226. (buffer-string))))
  2227. ;;; ASCII export
  2228. (defvar org-last-level nil) ; dynamically scoped variable
  2229. (defvar org-min-level nil) ; dynamically scoped variable
  2230. (defvar org-levels-open nil) ; dynamically scoped parameter
  2231. (defvar org-ascii-current-indentation nil) ; For communication
  2232. ;;;###autoload
  2233. (defun org-export-as-ascii (arg)
  2234. "Export the outline as a pretty ASCII file.
  2235. If there is an active region, export only the region.
  2236. The prefix ARG specifies how many levels of the outline should become
  2237. underlined headlines. The default is 3."
  2238. (interactive "P")
  2239. (setq-default org-todo-line-regexp org-todo-line-regexp)
  2240. (let* ((opt-plist (org-combine-plists (org-default-export-plist)
  2241. (org-infile-export-plist)))
  2242. (region-p (org-region-active-p))
  2243. (rbeg (and region-p (region-beginning)))
  2244. (rend (and region-p (region-end)))
  2245. (subtree-p
  2246. (when region-p
  2247. (save-excursion
  2248. (goto-char rbeg)
  2249. (and (org-at-heading-p)
  2250. (>= (org-end-of-subtree t t) rend)))))
  2251. (opt-plist (if subtree-p
  2252. (org-export-add-subtree-options opt-plist rbeg)
  2253. opt-plist))
  2254. (custom-times org-display-custom-times)
  2255. (org-ascii-current-indentation '(0 . 0))
  2256. (level 0) line txt
  2257. (umax nil)
  2258. (umax-toc nil)
  2259. (case-fold-search nil)
  2260. (bfname (buffer-file-name (or (buffer-base-buffer) (current-buffer))))
  2261. (filename (concat (file-name-as-directory
  2262. (org-export-directory :ascii opt-plist))
  2263. (file-name-sans-extension
  2264. (or (and subtree-p
  2265. (org-entry-get (region-beginning)
  2266. "EXPORT_FILE_NAME" t))
  2267. (file-name-nondirectory bfname)))
  2268. ".txt"))
  2269. (filename (if (equal (file-truename filename)
  2270. (file-truename bfname))
  2271. (concat filename ".txt")
  2272. filename))
  2273. (buffer (find-file-noselect filename))
  2274. (org-levels-open (make-vector org-level-max nil))
  2275. (odd org-odd-levels-only)
  2276. (date (plist-get opt-plist :date))
  2277. (author (plist-get opt-plist :author))
  2278. (title (or (and subtree-p (org-export-get-title-from-subtree))
  2279. (plist-get opt-plist :title)
  2280. (and (not
  2281. (plist-get opt-plist :skip-before-1st-heading))
  2282. (org-export-grab-title-from-buffer))
  2283. (file-name-sans-extension
  2284. (file-name-nondirectory bfname))))
  2285. (email (plist-get opt-plist :email))
  2286. (language (plist-get opt-plist :language))
  2287. (quote-re0 (concat "^[ \t]*" org-quote-string "\\>"))
  2288. ; (quote-re (concat "^\\(\\*+\\)\\([ \t]*" org-quote-string "\\>\\)"))
  2289. (todo nil)
  2290. (lang-words nil)
  2291. (region
  2292. (buffer-substring
  2293. (if (org-region-active-p) (region-beginning) (point-min))
  2294. (if (org-region-active-p) (region-end) (point-max))))
  2295. (lines (org-split-string
  2296. (org-export-preprocess-string
  2297. region
  2298. :for-ascii t
  2299. :skip-before-1st-heading
  2300. (plist-get opt-plist :skip-before-1st-heading)
  2301. :drawers (plist-get opt-plist :drawers)
  2302. :tags (plist-get opt-plist :tags)
  2303. :priority (plist-get opt-plist :priority)
  2304. :footnotes (plist-get opt-plist :footnotes)
  2305. :timestamps (plist-get opt-plist :timestamps)
  2306. :todo-keywords (plist-get opt-plist :todo-keywords)
  2307. :verbatim-multiline t
  2308. :select-tags (plist-get opt-plist :select-tags)
  2309. :exclude-tags (plist-get opt-plist :exclude-tags)
  2310. :archived-trees
  2311. (plist-get opt-plist :archived-trees)
  2312. :add-text (plist-get opt-plist :text))
  2313. "\n"))
  2314. thetoc have-headings first-heading-pos
  2315. table-open table-buffer link desc)
  2316. (let ((inhibit-read-only t))
  2317. (org-unmodified
  2318. (remove-text-properties (point-min) (point-max)
  2319. '(:org-license-to-kill t))))
  2320. (setq org-min-level (org-get-min-level lines))
  2321. (setq org-last-level org-min-level)
  2322. (org-init-section-numbers)
  2323. (find-file-noselect filename)
  2324. (setq lang-words (or (assoc language org-export-language-setup)
  2325. (assoc "en" org-export-language-setup)))
  2326. (switch-to-buffer-other-window buffer)
  2327. (erase-buffer)
  2328. (fundamental-mode)
  2329. ;; create local variables for all options, to make sure all called
  2330. ;; functions get the correct information
  2331. (mapc (lambda (x)
  2332. (set (make-local-variable (nth 2 x))
  2333. (plist-get opt-plist (car x))))
  2334. org-export-plist-vars)
  2335. (org-set-local 'org-odd-levels-only odd)
  2336. (setq umax (if arg (prefix-numeric-value arg)
  2337. org-export-headline-levels))
  2338. (setq umax-toc (if (integerp org-export-with-toc)
  2339. (min org-export-with-toc umax)
  2340. umax))
  2341. ;; File header
  2342. (if title (org-insert-centered title ?=))
  2343. (insert "\n")
  2344. (if (and (or author email)
  2345. org-export-author-info)
  2346. (insert (concat (nth 1 lang-words) ": " (or author "")
  2347. (if email (concat " <" email ">") "")
  2348. "\n")))
  2349. (cond
  2350. ((and date (string-match "%" date))
  2351. (setq date (format-time-string date)))
  2352. (date)
  2353. (t (setq date (format-time-string "%Y-%m-%d %T %Z"))))
  2354. (if (and date org-export-time-stamp-file)
  2355. (insert (concat (nth 2 lang-words) ": " date"\n")))
  2356. (insert "\n\n")
  2357. (if org-export-with-toc
  2358. (progn
  2359. (push (concat (nth 3 lang-words) "\n") thetoc)
  2360. (push (concat (make-string (string-width (nth 3 lang-words)) ?=)
  2361. "\n") thetoc)
  2362. (mapc '(lambda (line)
  2363. (if (string-match org-todo-line-regexp
  2364. line)
  2365. ;; This is a headline
  2366. (progn
  2367. (setq have-headings t)
  2368. (setq level (- (match-end 1) (match-beginning 1))
  2369. level (org-tr-level level)
  2370. txt (match-string 3 line)
  2371. todo
  2372. (or (and org-export-mark-todo-in-toc
  2373. (match-beginning 2)
  2374. (not (member (match-string 2 line)
  2375. org-done-keywords)))
  2376. ; TODO, not DONE
  2377. (and org-export-mark-todo-in-toc
  2378. (= level umax-toc)
  2379. (org-search-todo-below
  2380. line lines level))))
  2381. (setq txt (org-html-expand-for-ascii txt))
  2382. (while (string-match org-bracket-link-regexp txt)
  2383. (setq txt
  2384. (replace-match
  2385. (match-string (if (match-end 2) 3 1) txt)
  2386. t t txt)))
  2387. (if (and (memq org-export-with-tags '(not-in-toc nil))
  2388. (string-match
  2389. (org-re "[ \t]+:[[:alnum:]_@:]+:[ \t]*$")
  2390. txt))
  2391. (setq txt (replace-match "" t t txt)))
  2392. (if (string-match quote-re0 txt)
  2393. (setq txt (replace-match "" t t txt)))
  2394. (if org-export-with-section-numbers
  2395. (setq txt (concat (org-section-number level)
  2396. " " txt)))
  2397. (if (<= level umax-toc)
  2398. (progn
  2399. (push
  2400. (concat
  2401. (make-string
  2402. (* (max 0 (- level org-min-level)) 4) ?\ )
  2403. (format (if todo "%s (*)\n" "%s\n") txt))
  2404. thetoc)
  2405. (setq org-last-level level))
  2406. ))))
  2407. lines)
  2408. (setq thetoc (if have-headings (nreverse thetoc) nil))))
  2409. (org-init-section-numbers)
  2410. (while (setq line (pop lines))
  2411. ;; Remove the quoted HTML tags.
  2412. (setq line (org-html-expand-for-ascii line))
  2413. ;; Replace links with the description when possible
  2414. (while (string-match org-bracket-link-regexp line)
  2415. (setq link (match-string 1 line)
  2416. desc (match-string (if (match-end 3) 3 1) line))
  2417. (if (and (> (length link) 8)
  2418. (equal (substring link 0 8) "coderef:"))
  2419. (setq line (replace-match
  2420. (format (org-export-get-coderef-format (substring link 8) desc)
  2421. (cdr (assoc
  2422. (substring link 8)
  2423. org-export-code-refs)))
  2424. t t line))
  2425. (setq line (replace-match
  2426. (if (match-end 3) "[\\3]" "[\\1]")
  2427. t nil line))))
  2428. (when custom-times
  2429. (setq line (org-translate-time line)))
  2430. (cond
  2431. ((string-match "^\\(\\*+\\)[ \t]+\\(.*\\)" line)
  2432. ;; a Headline
  2433. (setq first-heading-pos (or first-heading-pos (point)))
  2434. (setq level (org-tr-level (- (match-end 1) (match-beginning 1)))
  2435. txt (match-string 2 line))
  2436. (org-ascii-level-start level txt umax lines))
  2437. ((and org-export-with-tables
  2438. (string-match "^\\([ \t]*\\)\\(|\\|\\+-+\\+\\)" line))
  2439. (if (not table-open)
  2440. ;; New table starts
  2441. (setq table-open t table-buffer nil))
  2442. ;; Accumulate lines
  2443. (setq table-buffer (cons line table-buffer))
  2444. (when (or (not lines)
  2445. (not (string-match "^\\([ \t]*\\)\\(|\\|\\+-+\\+\\)"
  2446. (car lines))))
  2447. (setq table-open nil
  2448. table-buffer (nreverse table-buffer))
  2449. (insert (mapconcat
  2450. (lambda (x)
  2451. (org-fix-indentation x org-ascii-current-indentation))
  2452. (org-format-table-ascii table-buffer)
  2453. "\n") "\n")))
  2454. (t
  2455. (setq line (org-fix-indentation line org-ascii-current-indentation))
  2456. ;; Remove forced line breaks
  2457. (if (string-match "\\\\\\\\[ \t]*$" line)
  2458. (setq line (replace-match "" t t line)))
  2459. (if (and org-export-with-fixed-width
  2460. (string-match "^\\([ \t]*\\)\\(:\\)" line))
  2461. (setq line (replace-match "\\1" nil nil line)))
  2462. (insert line "\n"))))
  2463. (normal-mode)
  2464. ;; insert the table of contents
  2465. (when thetoc
  2466. (goto-char (point-min))
  2467. (if (re-search-forward "^[ \t]*\\[TABLE-OF-CONTENTS\\][ \t]*$" nil t)
  2468. (progn
  2469. (goto-char (match-beginning 0))
  2470. (replace-match ""))
  2471. (goto-char first-heading-pos))
  2472. (mapc 'insert thetoc)
  2473. (or (looking-at "[ \t]*\n[ \t]*\n")
  2474. (insert "\n\n")))
  2475. ;; Convert whitespace place holders
  2476. (goto-char (point-min))
  2477. (let (beg end)
  2478. (while (setq beg (next-single-property-change (point) 'org-whitespace))
  2479. (setq end (next-single-property-change beg 'org-whitespace))
  2480. (goto-char beg)
  2481. (delete-region beg end)
  2482. (insert (make-string (- end beg) ?\ ))))
  2483. (save-buffer)
  2484. ;; remove display and invisible chars
  2485. (let (beg end)
  2486. (goto-char (point-min))
  2487. (while (setq beg (next-single-property-change (point) 'display))
  2488. (setq end (next-single-property-change beg 'display))
  2489. (delete-region beg end)
  2490. (goto-char beg)
  2491. (insert "=>"))
  2492. (goto-char (point-min))
  2493. (while (setq beg (next-single-property-change (point) 'org-cwidth))
  2494. (setq end (next-single-property-change beg 'org-cwidth))
  2495. (delete-region beg end)
  2496. (goto-char beg)))
  2497. (goto-char (point-min))))
  2498. (defun org-export-ascii-preprocess ()
  2499. "Do extra work for ASCII export"
  2500. ;; Put quotes around verbatim text
  2501. (goto-char (point-min))
  2502. (while (re-search-forward org-verbatim-re nil t)
  2503. (goto-char (match-end 2))
  2504. (backward-delete-char 1) (insert "'")
  2505. (goto-char (match-beginning 2))
  2506. (delete-char 1) (insert "`")
  2507. (goto-char (match-end 2)))
  2508. (goto-char (point-min))
  2509. ;; Remove target markers
  2510. (while (re-search-forward "<<<?\\([^<>]*\\)>>>?\\([ \t]*\\)" nil t)
  2511. (replace-match "\\1\\2")))
  2512. (defun org-search-todo-below (line lines level)
  2513. "Search the subtree below LINE for any TODO entries."
  2514. (let ((rest (cdr (memq line lines)))
  2515. (re org-todo-line-regexp)
  2516. line lv todo)
  2517. (catch 'exit
  2518. (while (setq line (pop rest))
  2519. (if (string-match re line)
  2520. (progn
  2521. (setq lv (- (match-end 1) (match-beginning 1))
  2522. todo (and (match-beginning 2)
  2523. (not (member (match-string 2 line)
  2524. org-done-keywords))))
  2525. ; TODO, not DONE
  2526. (if (<= lv level) (throw 'exit nil))
  2527. (if todo (throw 'exit t))))))))
  2528. (defun org-html-expand-for-ascii (line)
  2529. "Handle quoted HTML for ASCII export."
  2530. (if org-export-html-expand
  2531. (while (string-match "@<[^<>\n]*>" line)
  2532. ;; We just remove the tags for now.
  2533. (setq line (replace-match "" nil nil line))))
  2534. line)
  2535. (defun org-insert-centered (s &optional underline)
  2536. "Insert the string S centered and underline it with character UNDERLINE."
  2537. (let ((ind (max (/ (- fill-column (string-width s)) 2) 0)))
  2538. (insert (make-string ind ?\ ) s "\n")
  2539. (if underline
  2540. (insert (make-string ind ?\ )
  2541. (make-string (string-width s) underline)
  2542. "\n"))))
  2543. (defun org-ascii-level-start (level title umax &optional lines)
  2544. "Insert a new level in ASCII export."
  2545. (let (char (n (- level umax 1)) (ind 0))
  2546. (if (> level umax)
  2547. (progn
  2548. (insert (make-string (* 2 n) ?\ )
  2549. (char-to-string (nth (% n (length org-export-ascii-bullets))
  2550. org-export-ascii-bullets))
  2551. " " title "\n")
  2552. ;; find the indentation of the next non-empty line
  2553. (catch 'stop
  2554. (while lines
  2555. (if (string-match "^\\* " (car lines)) (throw 'stop nil))
  2556. (if (string-match "^\\([ \t]*\\)\\S-" (car lines))
  2557. (throw 'stop (setq ind (org-get-indentation (car lines)))))
  2558. (pop lines)))
  2559. (setq org-ascii-current-indentation (cons (* 2 (1+ n)) ind)))
  2560. (if (or (not (equal (char-before) ?\n))
  2561. (not (equal (char-before (1- (point))) ?\n)))
  2562. (insert "\n"))
  2563. (setq char (nth (- umax level) (reverse org-export-ascii-underline)))
  2564. (unless org-export-with-tags
  2565. (if (string-match (org-re "[ \t]+\\(:[[:alnum:]_@:]+:\\)[ \t]*$") title)
  2566. (setq title (replace-match "" t t title))))
  2567. (if org-export-with-section-numbers
  2568. (setq title (concat (org-section-number level) " " title)))
  2569. (insert title "\n" (make-string (string-width title) char) "\n")
  2570. (setq org-ascii-current-indentation '(0 . 0)))))
  2571. ;;;###autoload
  2572. (defun org-export-visible (type arg)
  2573. "Create a copy of the visible part of the current buffer, and export it.
  2574. The copy is created in a temporary buffer and removed after use.
  2575. TYPE is the final key (as a string) that also select the export command in
  2576. the `C-c C-e' export dispatcher.
  2577. As a special case, if the you type SPC at the prompt, the temporary
  2578. org-mode file will not be removed but presented to you so that you can
  2579. continue to use it. The prefix arg ARG is passed through to the exporting
  2580. command."
  2581. (interactive
  2582. (list (progn
  2583. (message "Export visible: [a]SCII [h]tml [b]rowse HTML [H/R]uffer with HTML [x]OXO [ ]keep buffer")
  2584. (read-char-exclusive))
  2585. current-prefix-arg))
  2586. (if (not (member type '(?a ?\C-a ?b ?\C-b ?h ?x ?\ )))
  2587. (error "Invalid export key"))
  2588. (let* ((binding (cdr (assoc type
  2589. '((?a . org-export-as-ascii)
  2590. (?\C-a . org-export-as-ascii)
  2591. (?b . org-export-as-html-and-open)
  2592. (?\C-b . org-export-as-html-and-open)
  2593. (?h . org-export-as-html)
  2594. (?H . org-export-as-html-to-buffer)
  2595. (?R . org-export-region-as-html)
  2596. (?x . org-export-as-xoxo)))))
  2597. (keepp (equal type ?\ ))
  2598. (file buffer-file-name)
  2599. (buffer (get-buffer-create "*Org Export Visible*"))
  2600. s e)
  2601. ;; Need to hack the drawers here.
  2602. (save-excursion
  2603. (goto-char (point-min))
  2604. (while (re-search-forward org-drawer-regexp nil t)
  2605. (goto-char (match-beginning 1))
  2606. (or (org-invisible-p) (org-flag-drawer nil))))
  2607. (with-current-buffer buffer (erase-buffer))
  2608. (save-excursion
  2609. (setq s (goto-char (point-min)))
  2610. (while (not (= (point) (point-max)))
  2611. (goto-char (org-find-invisible))
  2612. (append-to-buffer buffer s (point))
  2613. (setq s (goto-char (org-find-visible))))
  2614. (org-cycle-hide-drawers 'all)
  2615. (goto-char (point-min))
  2616. (unless keepp
  2617. ;; Copy all comment lines to the end, to make sure #+ settings are
  2618. ;; still available for the second export step. Kind of a hack, but
  2619. ;; does do the trick.
  2620. (if (looking-at "#[^\r\n]*")
  2621. (append-to-buffer buffer (match-beginning 0) (1+ (match-end 0))))
  2622. (while (re-search-forward "[\n\r]#[^\n\r]*" nil t)
  2623. (append-to-buffer buffer (1+ (match-beginning 0))
  2624. (min (point-max) (1+ (match-end 0))))))
  2625. (set-buffer buffer)
  2626. (let ((buffer-file-name file)
  2627. (org-inhibit-startup t))
  2628. (org-mode)
  2629. (show-all)
  2630. (unless keepp (funcall binding arg))))
  2631. (if (not keepp)
  2632. (kill-buffer buffer)
  2633. (switch-to-buffer-other-window buffer)
  2634. (goto-char (point-min)))))
  2635. (defun org-find-visible ()
  2636. (let ((s (point)))
  2637. (while (and (not (= (point-max) (setq s (next-overlay-change s))))
  2638. (get-char-property s 'invisible)))
  2639. s))
  2640. (defun org-find-invisible ()
  2641. (let ((s (point)))
  2642. (while (and (not (= (point-max) (setq s (next-overlay-change s))))
  2643. (not (get-char-property s 'invisible))))
  2644. s))
  2645. ;;; HTML export
  2646. (defvar org-archive-location) ;; gets loaded with the org-archive require.
  2647. (defun org-get-current-options ()
  2648. "Return a string with current options as keyword options.
  2649. Does include HTML export options as well as TODO and CATEGORY stuff."
  2650. (require 'org-archive)
  2651. (format
  2652. "#+TITLE: %s
  2653. #+AUTHOR: %s
  2654. #+EMAIL: %s
  2655. #+DATE: %s
  2656. #+LANGUAGE: %s
  2657. #+OPTIONS: H:%d num:%s toc:%s \\n:%s @:%s ::%s |:%s ^:%s -:%s f:%s *:%s TeX:%s LaTeX:%s skip:%s d:%s todo:%s pri:%s tags:%s
  2658. %s
  2659. #+EXPORT_SELECT_TAGS: %s
  2660. #+EXPORT_EXCLUDE_TAGS: %s
  2661. #+LINK_UP: %s
  2662. #+LINK_HOME: %s
  2663. #+CATEGORY: %s
  2664. #+SEQ_TODO: %s
  2665. #+TYP_TODO: %s
  2666. #+PRIORITIES: %c %c %c
  2667. #+DRAWERS: %s
  2668. #+STARTUP: %s %s %s %s %s
  2669. #+TAGS: %s
  2670. #+FILETAGS: %s
  2671. #+ARCHIVE: %s
  2672. #+LINK: %s
  2673. "
  2674. (buffer-name) (user-full-name) user-mail-address
  2675. (format-time-string (substring (car org-time-stamp-formats) 1 -1))
  2676. org-export-default-language
  2677. org-export-headline-levels
  2678. org-export-with-section-numbers
  2679. org-export-with-toc
  2680. org-export-preserve-breaks
  2681. org-export-html-expand
  2682. org-export-with-fixed-width
  2683. org-export-with-tables
  2684. org-export-with-sub-superscripts
  2685. org-export-with-special-strings
  2686. org-export-with-footnotes
  2687. org-export-with-emphasize
  2688. org-export-with-TeX-macros
  2689. org-export-with-LaTeX-fragments
  2690. org-export-skip-text-before-1st-heading
  2691. org-export-with-drawers
  2692. org-export-with-todo-keywords
  2693. org-export-with-priority
  2694. org-export-with-tags
  2695. (if (featurep 'org-jsinfo) (org-infojs-options-inbuffer-template) "")
  2696. (mapconcat 'identity org-export-select-tags " ")
  2697. (mapconcat 'identity org-export-exclude-tags " ")
  2698. org-export-html-link-up
  2699. org-export-html-link-home
  2700. (file-name-nondirectory buffer-file-name)
  2701. "TODO FEEDBACK VERIFY DONE"
  2702. "Me Jason Marie DONE"
  2703. org-highest-priority org-lowest-priority org-default-priority
  2704. (mapconcat 'identity org-drawers " ")
  2705. (cdr (assoc org-startup-folded
  2706. '((nil . "showall") (t . "overview") (content . "content"))))
  2707. (if org-odd-levels-only "odd" "oddeven")
  2708. (if org-hide-leading-stars "hidestars" "showstars")
  2709. (if org-startup-align-all-tables "align" "noalign")
  2710. (cond ((eq org-log-done t) "logdone")
  2711. ((equal org-log-done 'note) "lognotedone")
  2712. ((not org-log-done) "nologdone"))
  2713. (or (mapconcat (lambda (x)
  2714. (cond
  2715. ((equal '(:startgroup) x) "{")
  2716. ((equal '(:endgroup) x) "}")
  2717. ((cdr x) (format "%s(%c)" (car x) (cdr x)))
  2718. (t (car x))))
  2719. (or org-tag-alist (org-get-buffer-tags)) " ") "")
  2720. (mapconcat 'identity org-file-tags " ")
  2721. org-archive-location
  2722. "org file:~/org/%s.org"
  2723. ))
  2724. (defun org-export-html-preprocess (parameters)
  2725. ;; Convert LaTeX fragments to images
  2726. (when (plist-get parameters :LaTeX-fragments)
  2727. (org-format-latex
  2728. (concat "ltxpng/" (file-name-sans-extension
  2729. (file-name-nondirectory
  2730. org-current-export-file)))
  2731. org-current-export-dir nil "Creating LaTeX image %s"))
  2732. (message "Exporting..."))
  2733. ;;;###autoload
  2734. (defun org-insert-export-options-template ()
  2735. "Insert into the buffer a template with information for exporting."
  2736. (interactive)
  2737. (if (not (bolp)) (newline))
  2738. (let ((s (org-get-current-options)))
  2739. (and (string-match "#\\+CATEGORY" s)
  2740. (setq s (substring s 0 (match-beginning 0))))
  2741. (insert s)))
  2742. ;;;###autoload
  2743. (defun org-export-as-html-and-open (arg)
  2744. "Export the outline as HTML and immediately open it with a browser.
  2745. If there is an active region, export only the region.
  2746. The prefix ARG specifies how many levels of the outline should become
  2747. headlines. The default is 3. Lower levels will become bulleted lists."
  2748. (interactive "P")
  2749. (org-export-as-html arg 'hidden)
  2750. (org-open-file buffer-file-name))
  2751. ;;;###autoload
  2752. (defun org-export-as-html-batch ()
  2753. "Call `org-export-as-html', may be used in batch processing as
  2754. emacs --batch
  2755. --load=$HOME/lib/emacs/org.el
  2756. --eval \"(setq org-export-headline-levels 2)\"
  2757. --visit=MyFile --funcall org-export-as-html-batch"
  2758. (org-export-as-html org-export-headline-levels 'hidden))
  2759. ;;;###autoload
  2760. (defun org-export-as-html-to-buffer (arg)
  2761. "Call `org-export-as-html` with output to a temporary buffer.
  2762. No file is created. The prefix ARG is passed through to `org-export-as-html'."
  2763. (interactive "P")
  2764. (org-export-as-html arg nil nil "*Org HTML Export*")
  2765. (switch-to-buffer-other-window "*Org HTML Export*"))
  2766. ;;;###autoload
  2767. (defun org-replace-region-by-html (beg end)
  2768. "Assume the current region has org-mode syntax, and convert it to HTML.
  2769. This can be used in any buffer. For example, you could write an
  2770. itemized list in org-mode syntax in an HTML buffer and then use this
  2771. command to convert it."
  2772. (interactive "r")
  2773. (let (reg html buf pop-up-frames)
  2774. (save-window-excursion
  2775. (if (org-mode-p)
  2776. (setq html (org-export-region-as-html
  2777. beg end t 'string))
  2778. (setq reg (buffer-substring beg end)
  2779. buf (get-buffer-create "*Org tmp*"))
  2780. (with-current-buffer buf
  2781. (erase-buffer)
  2782. (insert reg)
  2783. (org-mode)
  2784. (setq html (org-export-region-as-html
  2785. (point-min) (point-max) t 'string)))
  2786. (kill-buffer buf)))
  2787. (delete-region beg end)
  2788. (insert html)))
  2789. ;;;###autoload
  2790. (defun org-export-region-as-html (beg end &optional body-only buffer)
  2791. "Convert region from BEG to END in org-mode buffer to HTML.
  2792. If prefix arg BODY-ONLY is set, omit file header, footer, and table of
  2793. contents, and only produce the region of converted text, useful for
  2794. cut-and-paste operations.
  2795. If BUFFER is a buffer or a string, use/create that buffer as a target
  2796. of the converted HTML. If BUFFER is the symbol `string', return the
  2797. produced HTML as a string and leave not buffer behind. For example,
  2798. a Lisp program could call this function in the following way:
  2799. (setq html (org-export-region-as-html beg end t 'string))
  2800. When called interactively, the output buffer is selected, and shown
  2801. in a window. A non-interactive call will only return the buffer."
  2802. (interactive "r\nP")
  2803. (when (interactive-p)
  2804. (setq buffer "*Org HTML Export*"))
  2805. (let ((transient-mark-mode t) (zmacs-regions t)
  2806. ext-plist rtn)
  2807. (setq ext-plist (plist-put ext-plist :ignore-subree-p t))
  2808. (goto-char end)
  2809. (set-mark (point)) ;; to activate the region
  2810. (goto-char beg)
  2811. (setq rtn (org-export-as-html
  2812. nil nil ext-plist
  2813. buffer body-only))
  2814. (if (fboundp 'deactivate-mark) (deactivate-mark))
  2815. (if (and (interactive-p) (bufferp rtn))
  2816. (switch-to-buffer-other-window rtn)
  2817. rtn)))
  2818. (defvar html-table-tag nil) ; dynamically scoped into this.
  2819. (defvar org-par-open nil)
  2820. ;;;###autoload
  2821. (defun org-export-as-html (arg &optional hidden ext-plist
  2822. to-buffer body-only pub-dir)
  2823. "Export the outline as a pretty HTML file.
  2824. If there is an active region, export only the region. The prefix
  2825. ARG specifies how many levels of the outline should become
  2826. headlines. The default is 3. Lower levels will become bulleted
  2827. lists. When HIDDEN is non-nil, don't display the HTML buffer.
  2828. EXT-PLIST is a property list with external parameters overriding
  2829. org-mode's default settings, but still inferior to file-local
  2830. settings. When TO-BUFFER is non-nil, create a buffer with that
  2831. name and export to that buffer. If TO-BUFFER is the symbol
  2832. `string', don't leave any buffer behind but just return the
  2833. resulting HTML as a string. When BODY-ONLY is set, don't produce
  2834. the file header and footer, simply return the content of
  2835. <body>...</body>, without even the body tags themselves. When
  2836. PUB-DIR is set, use this as the publishing directory."
  2837. (interactive "P")
  2838. ;; Make sure we have a file name when we need it.
  2839. (when (and (not (or to-buffer body-only))
  2840. (not buffer-file-name))
  2841. (if (buffer-base-buffer)
  2842. (org-set-local 'buffer-file-name
  2843. (with-current-buffer (buffer-base-buffer)
  2844. buffer-file-name))
  2845. (error "Need a file name to be able to export.")))
  2846. (message "Exporting...")
  2847. (setq-default org-todo-line-regexp org-todo-line-regexp)
  2848. (setq-default org-deadline-line-regexp org-deadline-line-regexp)
  2849. (setq-default org-done-keywords org-done-keywords)
  2850. (setq-default org-maybe-keyword-time-regexp org-maybe-keyword-time-regexp)
  2851. (let* ((opt-plist
  2852. (org-export-process-option-filters
  2853. (org-combine-plists (org-default-export-plist)
  2854. ext-plist
  2855. (org-infile-export-plist))))
  2856. (style (concat (if (plist-get opt-plist :style-include-default)
  2857. org-export-html-style-default)
  2858. (plist-get opt-plist :style)
  2859. (plist-get opt-plist :style-extra)
  2860. "\n" org-export-html-scripts))
  2861. (html-extension (plist-get opt-plist :html-extension))
  2862. (link-validate (plist-get opt-plist :link-validation-function))
  2863. valid thetoc have-headings first-heading-pos
  2864. (odd org-odd-levels-only)
  2865. (region-p (org-region-active-p))
  2866. (rbeg (and region-p (region-beginning)))
  2867. (rend (and region-p (region-end)))
  2868. (subtree-p
  2869. (if (plist-get opt-plist :ignore-subree-p)
  2870. nil
  2871. (when region-p
  2872. (save-excursion
  2873. (goto-char rbeg)
  2874. (and (org-at-heading-p)
  2875. (>= (org-end-of-subtree t t) rend))))))
  2876. (opt-plist (if subtree-p
  2877. (org-export-add-subtree-options opt-plist rbeg)
  2878. opt-plist))
  2879. ;; The following two are dynamically scoped into other
  2880. ;; routines below.
  2881. (org-current-export-dir
  2882. (or pub-dir (org-export-directory :html opt-plist)))
  2883. (org-current-export-file buffer-file-name)
  2884. (level 0) (line "") (origline "") txt todo
  2885. (umax nil)
  2886. (umax-toc nil)
  2887. (filename (if to-buffer nil
  2888. (expand-file-name
  2889. (concat
  2890. (file-name-sans-extension
  2891. (or (and subtree-p
  2892. (org-entry-get (region-beginning)
  2893. "EXPORT_FILE_NAME" t))
  2894. (file-name-nondirectory buffer-file-name)))
  2895. "." html-extension)
  2896. (file-name-as-directory
  2897. (or pub-dir (org-export-directory :html opt-plist))))))
  2898. (current-dir (if buffer-file-name
  2899. (file-name-directory buffer-file-name)
  2900. default-directory))
  2901. (buffer (if to-buffer
  2902. (cond
  2903. ((eq to-buffer 'string) (get-buffer-create "*Org HTML Export*"))
  2904. (t (get-buffer-create to-buffer)))
  2905. (find-file-noselect filename)))
  2906. (org-levels-open (make-vector org-level-max nil))
  2907. (date (plist-get opt-plist :date))
  2908. (author (plist-get opt-plist :author))
  2909. (title (or (and subtree-p (org-export-get-title-from-subtree))
  2910. (plist-get opt-plist :title)
  2911. (and (not
  2912. (plist-get opt-plist :skip-before-1st-heading))
  2913. (org-export-grab-title-from-buffer))
  2914. (and buffer-file-name
  2915. (file-name-sans-extension
  2916. (file-name-nondirectory buffer-file-name)))
  2917. "UNTITLED"))
  2918. (html-table-tag (plist-get opt-plist :html-table-tag))
  2919. (quote-re0 (concat "^[ \t]*" org-quote-string "\\>"))
  2920. (quote-re (concat "^\\(\\*+\\)\\([ \t]+" org-quote-string "\\>\\)"))
  2921. (inquote nil)
  2922. (infixed nil)
  2923. (inverse nil)
  2924. (in-local-list nil)
  2925. (local-list-type nil)
  2926. (local-list-indent nil)
  2927. (llt org-plain-list-ordered-item-terminator)
  2928. (email (plist-get opt-plist :email))
  2929. (language (plist-get opt-plist :language))
  2930. (lang-words nil)
  2931. (head-count 0) cnt
  2932. (start 0)
  2933. (coding-system (and (boundp 'buffer-file-coding-system)
  2934. buffer-file-coding-system))
  2935. (coding-system-for-write (or org-export-html-coding-system
  2936. coding-system))
  2937. (save-buffer-coding-system (or org-export-html-coding-system
  2938. coding-system))
  2939. (charset (and coding-system-for-write
  2940. (fboundp 'coding-system-get)
  2941. (coding-system-get coding-system-for-write
  2942. 'mime-charset)))
  2943. (region
  2944. (buffer-substring
  2945. (if region-p (region-beginning) (point-min))
  2946. (if region-p (region-end) (point-max))))
  2947. (lines
  2948. (org-split-string
  2949. (org-export-preprocess-string
  2950. region
  2951. :emph-multiline t
  2952. :for-html t
  2953. :skip-before-1st-heading
  2954. (plist-get opt-plist :skip-before-1st-heading)
  2955. :drawers (plist-get opt-plist :drawers)
  2956. :todo-keywords (plist-get opt-plist :todo-keywords)
  2957. :tags (plist-get opt-plist :tags)
  2958. :priority (plist-get opt-plist :priority)
  2959. :footnotes (plist-get opt-plist :footnotes)
  2960. :timestamps (plist-get opt-plist :timestamps)
  2961. :archived-trees
  2962. (plist-get opt-plist :archived-trees)
  2963. :select-tags (plist-get opt-plist :select-tags)
  2964. :exclude-tags (plist-get opt-plist :exclude-tags)
  2965. :add-text
  2966. (plist-get opt-plist :text)
  2967. :LaTeX-fragments
  2968. (plist-get opt-plist :LaTeX-fragments))
  2969. "[\r\n]"))
  2970. table-open type
  2971. table-buffer table-orig-buffer
  2972. ind item-type starter didclose
  2973. rpl path attr desc descp desc1 desc2 link
  2974. snumber fnc item-tag
  2975. footnotes footref-seen
  2976. )
  2977. (let ((inhibit-read-only t))
  2978. (org-unmodified
  2979. (remove-text-properties (point-min) (point-max)
  2980. '(:org-license-to-kill t))))
  2981. (message "Exporting...")
  2982. (setq org-min-level (org-get-min-level lines))
  2983. (setq org-last-level org-min-level)
  2984. (org-init-section-numbers)
  2985. (cond
  2986. ((and date (string-match "%" date))
  2987. (setq date (format-time-string date)))
  2988. (date)
  2989. (t (setq date (format-time-string "%Y-%m-%d %T %Z"))))
  2990. ;; Get the language-dependent settings
  2991. (setq lang-words (or (assoc language org-export-language-setup)
  2992. (assoc "en" org-export-language-setup)))
  2993. ;; Switch to the output buffer
  2994. (set-buffer buffer)
  2995. (let ((inhibit-read-only t)) (erase-buffer))
  2996. (fundamental-mode)
  2997. (and (fboundp 'set-buffer-file-coding-system)
  2998. (set-buffer-file-coding-system coding-system-for-write))
  2999. (let ((case-fold-search nil)
  3000. (org-odd-levels-only odd))
  3001. ;; create local variables for all options, to make sure all called
  3002. ;; functions get the correct information
  3003. (mapc (lambda (x)
  3004. (set (make-local-variable (nth 2 x))
  3005. (plist-get opt-plist (car x))))
  3006. org-export-plist-vars)
  3007. (setq umax (if arg (prefix-numeric-value arg)
  3008. org-export-headline-levels))
  3009. (setq umax-toc (if (integerp org-export-with-toc)
  3010. (min org-export-with-toc umax)
  3011. umax))
  3012. (unless body-only
  3013. ;; File header
  3014. (insert (format
  3015. "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"
  3016. \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">
  3017. <html xmlns=\"http://www.w3.org/1999/xhtml\"
  3018. lang=\"%s\" xml:lang=\"%s\">
  3019. <head>
  3020. <title>%s</title>
  3021. <meta http-equiv=\"Content-Type\" content=\"text/html;charset=%s\"/>
  3022. <meta name=\"generator\" content=\"Org-mode\"/>
  3023. <meta name=\"generated\" content=\"%s\"/>
  3024. <meta name=\"author\" content=\"%s\"/>
  3025. %s
  3026. </head><body>
  3027. "
  3028. language language (org-html-expand title)
  3029. (or charset "iso-8859-1") date author style))
  3030. (insert (or (plist-get opt-plist :preamble) ""))
  3031. (when (plist-get opt-plist :auto-preamble)
  3032. (if title (insert (format org-export-html-title-format
  3033. (org-html-expand title))))))
  3034. (if (and org-export-with-toc (not body-only))
  3035. (progn
  3036. (push (format "<h%d>%s</h%d>\n"
  3037. org-export-html-toplevel-hlevel
  3038. (nth 3 lang-words)
  3039. org-export-html-toplevel-hlevel)
  3040. thetoc)
  3041. (push "<div id=\"text-table-of-contents\">\n" thetoc)
  3042. (push "<ul>\n<li>" thetoc)
  3043. (setq lines
  3044. (mapcar '(lambda (line)
  3045. (if (string-match org-todo-line-regexp line)
  3046. ;; This is a headline
  3047. (progn
  3048. (setq have-headings t)
  3049. (setq level (- (match-end 1) (match-beginning 1))
  3050. level (org-tr-level level)
  3051. txt (save-match-data
  3052. (org-html-expand
  3053. (org-export-cleanup-toc-line
  3054. (match-string 3 line))))
  3055. todo
  3056. (or (and org-export-mark-todo-in-toc
  3057. (match-beginning 2)
  3058. (not (member (match-string 2 line)
  3059. org-done-keywords)))
  3060. ; TODO, not DONE
  3061. (and org-export-mark-todo-in-toc
  3062. (= level umax-toc)
  3063. (org-search-todo-below
  3064. line lines level))))
  3065. (if (string-match
  3066. (org-re "[ \t]+:\\([[:alnum:]_@:]+\\):[ \t]*$") txt)
  3067. (setq txt (replace-match "&nbsp;&nbsp;&nbsp;<span class=\"tag\"> \\1</span>" t nil txt)))
  3068. (if (string-match quote-re0 txt)
  3069. (setq txt (replace-match "" t t txt)))
  3070. (setq snumber (org-section-number level))
  3071. (if org-export-with-section-numbers
  3072. (setq txt (concat snumber " " txt)))
  3073. (if (<= level (max umax umax-toc))
  3074. (setq head-count (+ head-count 1)))
  3075. (if (<= level umax-toc)
  3076. (progn
  3077. (if (> level org-last-level)
  3078. (progn
  3079. (setq cnt (- level org-last-level))
  3080. (while (>= (setq cnt (1- cnt)) 0)
  3081. (push "\n<ul>\n<li>" thetoc))
  3082. (push "\n" thetoc)))
  3083. (if (< level org-last-level)
  3084. (progn
  3085. (setq cnt (- org-last-level level))
  3086. (while (>= (setq cnt (1- cnt)) 0)
  3087. (push "</li>\n</ul>" thetoc))
  3088. (push "\n" thetoc)))
  3089. ;; Check for targets
  3090. (while (string-match org-any-target-regexp line)
  3091. (setq line (replace-match
  3092. (concat "@<span class=\"target\">" (match-string 1 line) "@</span> ")
  3093. t t line)))
  3094. (while (string-match "&lt;\\(&lt;\\)+\\|&gt;\\(&gt;\\)+" txt)
  3095. (setq txt (replace-match "" t t txt)))
  3096. (push
  3097. (format
  3098. (if todo
  3099. "</li>\n<li><a href=\"#sec-%s\"><span class=\"todo\">%s</span></a>"
  3100. "</li>\n<li><a href=\"#sec-%s\">%s</a>")
  3101. snumber txt) thetoc)
  3102. (setq org-last-level level))
  3103. )))
  3104. line)
  3105. lines))
  3106. (while (> org-last-level (1- org-min-level))
  3107. (setq org-last-level (1- org-last-level))
  3108. (push "</li>\n</ul>\n" thetoc))
  3109. (push "</div>\n" thetoc)
  3110. (setq thetoc (if have-headings (nreverse thetoc) nil))))
  3111. (setq head-count 0)
  3112. (org-init-section-numbers)
  3113. (org-open-par)
  3114. (while (setq line (pop lines) origline line)
  3115. (catch 'nextline
  3116. ;; end of quote section?
  3117. (when (and inquote (string-match "^\\*+ " line))
  3118. (insert "</pre>\n")
  3119. (setq inquote nil))
  3120. ;; inside a quote section?
  3121. (when inquote
  3122. (insert (org-html-protect line) "\n")
  3123. (throw 'nextline nil))
  3124. ;; Fixed-width, verbatim lines (examples)
  3125. (when (and org-export-with-fixed-width
  3126. (string-match "^[ \t]*:\\(.*\\)" line))
  3127. (when (not infixed)
  3128. (setq infixed t)
  3129. (org-close-par-maybe)
  3130. (insert "<pre class=\"example\">\n"))
  3131. (insert (org-html-protect (match-string 1 line)) "\n")
  3132. (when (or (not lines)
  3133. (not (string-match "^[ \t]*\\(:.*\\)"
  3134. (car lines))))
  3135. (setq infixed nil)
  3136. (insert "</pre>\n"))
  3137. (throw 'nextline nil))
  3138. ;; Protected HTML
  3139. (when (get-text-property 0 'org-protected line)
  3140. (let (par)
  3141. (when (re-search-backward
  3142. "\\(<p>\\)\\([ \t\r\n]*\\)\\=" (- (point) 100) t)
  3143. (setq par (match-string 1))
  3144. (replace-match "\\2\n"))
  3145. (insert line "\n")
  3146. (while (and lines
  3147. (or (= (length (car lines)) 0)
  3148. (get-text-property 0 'org-protected (car lines))))
  3149. (insert (pop lines) "\n"))
  3150. (and par (insert "<p>\n")))
  3151. (throw 'nextline nil))
  3152. ;; Horizontal line
  3153. (when (string-match "^[ \t]*-\\{5,\\}[ \t]*$" line)
  3154. (if org-par-open
  3155. (insert "\n</p>\n<hr/>\n<p>\n")
  3156. (insert "\n<hr/>\n"))
  3157. (throw 'nextline nil))
  3158. ;; Blockquotes and verse
  3159. (when (equal "ORG-BLOCKQUOTE-START" line)
  3160. (org-close-par-maybe)
  3161. (insert "<blockquote>\n<p>\n")
  3162. (throw 'nextline nil))
  3163. (when (equal "ORG-BLOCKQUOTE-END" line)
  3164. (insert "</p>\n</blockquote>\n")
  3165. (throw 'nextline nil))
  3166. (when (equal "ORG-VERSE-START" line)
  3167. (org-close-par-maybe)
  3168. (insert "\n<p class=\"verse\">\n")
  3169. (setq inverse t)
  3170. (throw 'nextline nil))
  3171. (when (equal "ORG-VERSE-END" line)
  3172. (insert "</p>\n")
  3173. (setq inverse nil)
  3174. (throw 'nextline nil))
  3175. (when inverse
  3176. (let ((i (org-get-string-indentation line)))
  3177. (if (> i 0)
  3178. (setq line (concat (mapconcat 'identity
  3179. (make-list (* 2 i) "\\nbsp") "")
  3180. " " (org-trim line))))
  3181. (setq line (concat line "\\\\"))))
  3182. ;; make targets to anchors
  3183. (while (string-match "<<<?\\([^<>]*\\)>>>?\\((INVISIBLE)\\)?[ \t]*\n?" line)
  3184. (cond
  3185. ((match-end 2)
  3186. (setq line (replace-match
  3187. (format
  3188. "@<a name=\"%s\" id=\"%s\">@</a>"
  3189. (org-solidify-link-text (match-string 1 line))
  3190. (org-solidify-link-text (match-string 1 line)))
  3191. t t line)))
  3192. ((and org-export-with-toc (equal (string-to-char line) ?*))
  3193. ;; FIXME: NOT DEPENDENT on TOC?????????????????????
  3194. (setq line (replace-match
  3195. (concat "@<span class=\"target\">" (match-string 1 line) "@</span> ")
  3196. ; (concat "@<i>" (match-string 1 line) "@</i> ")
  3197. t t line)))
  3198. (t
  3199. (setq line (replace-match
  3200. (concat "@<a name=\""
  3201. (org-solidify-link-text (match-string 1 line))
  3202. "\" class=\"target\">" (match-string 1 line) "@</a> ")
  3203. t t line)))))
  3204. (setq line (org-html-handle-time-stamps line))
  3205. ;; replace "&" by "&amp;", "<" and ">" by "&lt;" and "&gt;"
  3206. ;; handle @<..> HTML tags (replace "@&gt;..&lt;" by "<..>")
  3207. ;; Also handle sub_superscripts and checkboxes
  3208. (or (string-match org-table-hline-regexp line)
  3209. (setq line (org-html-expand line)))
  3210. ;; Format the links
  3211. (setq start 0)
  3212. (while (string-match org-bracket-link-analytic-regexp++ line start)
  3213. (setq start (match-beginning 0))
  3214. (setq path (save-match-data (org-link-unescape
  3215. (match-string 3 line))))
  3216. (setq type (cond
  3217. ((match-end 2) (match-string 2 line))
  3218. ((save-match-data
  3219. (or (file-name-absolute-p path)
  3220. (string-match "^\\.\\.?/" path)))
  3221. "file")
  3222. (t "internal")))
  3223. (setq path (org-extract-attributes (org-link-unescape path)))
  3224. (setq attr (get-text-property 0 'org-attributes path))
  3225. (setq desc1 (if (match-end 5) (match-string 5 line))
  3226. desc2 (if (match-end 2) (concat type ":" path) path)
  3227. descp (and desc1 (not (equal desc1 desc2)))
  3228. desc (or desc1 desc2))
  3229. ;; Make an image out of the description if that is so wanted
  3230. (when (and descp (org-file-image-p desc))
  3231. (save-match-data
  3232. (if (string-match "^file:" desc)
  3233. (setq desc (substring desc (match-end 0)))))
  3234. (setq desc (org-add-props
  3235. (concat "<img src=\"" desc "\"/>")
  3236. '(org-protected t))))
  3237. ;; FIXME: do we need to unescape here somewhere?
  3238. (cond
  3239. ((equal type "internal")
  3240. (setq rpl
  3241. (concat
  3242. "<a href=\"#"
  3243. (org-solidify-link-text
  3244. (save-match-data (org-link-unescape path)) nil)
  3245. "\"" attr ">"
  3246. (org-export-html-format-desc desc)
  3247. "</a>")))
  3248. ((member type '("http" "https"))
  3249. ;; standard URL, just check if we need to inline an image
  3250. (if (and (or (eq t org-export-html-inline-images)
  3251. (and org-export-html-inline-images (not descp)))
  3252. (org-file-image-p path))
  3253. (setq rpl (org-export-html-format-image
  3254. (concat type ":" path)))
  3255. (setq link (concat type ":" path))
  3256. (setq rpl (concat "<a href=\""
  3257. (org-export-html-format-href link)
  3258. "\"" attr ">"
  3259. (org-export-html-format-desc desc)
  3260. "</a>"))))
  3261. ((member type '("ftp" "mailto" "news"))
  3262. ;; standard URL
  3263. (setq link (concat type ":" path))
  3264. (setq rpl (concat "<a href=\""
  3265. (org-export-html-format-href link)
  3266. "\"" attr ">"
  3267. (org-export-html-format-desc desc)
  3268. "</a>")))
  3269. ((string= type "coderef")
  3270. (setq rpl (format "<a href=\"#coderef-%s\" class=\"coderef\" onmouseover=\"CodeHighlightOn(this, 'coderef-%s');\" onmouseout=\"CodeHighlightOff(this, 'coderef-%s');\">%s</a>"
  3271. path path path
  3272. (format (org-export-get-coderef-format path (and descp desc))
  3273. (cdr (assoc path org-export-code-refs))))))
  3274. ((functionp (setq fnc (nth 2 (assoc type org-link-protocols))))
  3275. ;; The link protocol has a function for format the link
  3276. (setq rpl
  3277. (save-match-data
  3278. (funcall fnc (org-link-unescape path) desc1 'html))))
  3279. ((string= type "file")
  3280. ;; FILE link
  3281. (let* ((filename path)
  3282. (abs-p (file-name-absolute-p filename))
  3283. thefile file-is-image-p search)
  3284. (save-match-data
  3285. (if (string-match "::\\(.*\\)" filename)
  3286. (setq search (match-string 1 filename)
  3287. filename (replace-match "" t nil filename)))
  3288. (setq valid
  3289. (if (functionp link-validate)
  3290. (funcall link-validate filename current-dir)
  3291. t))
  3292. (setq file-is-image-p (org-file-image-p filename))
  3293. (setq thefile (if abs-p (expand-file-name filename) filename))
  3294. (when (and org-export-html-link-org-files-as-html
  3295. (string-match "\\.org$" thefile))
  3296. (setq thefile (concat (substring thefile 0
  3297. (match-beginning 0))
  3298. "." html-extension))
  3299. (if (and search
  3300. ;; make sure this is can be used as target search
  3301. (not (string-match "^[0-9]*$" search))
  3302. (not (string-match "^\\*" search))
  3303. (not (string-match "^/.*/$" search)))
  3304. (setq thefile (concat thefile "#"
  3305. (org-solidify-link-text
  3306. (org-link-unescape search)))))
  3307. (when (string-match "^file:" desc)
  3308. (setq desc (replace-match "" t t desc))
  3309. (if (string-match "\\.org$" desc)
  3310. (setq desc (replace-match "" t t desc))))))
  3311. (setq rpl (if (and file-is-image-p
  3312. (or (eq t org-export-html-inline-images)
  3313. (and org-export-html-inline-images
  3314. (not descp))))
  3315. (org-export-html-format-image thefile)
  3316. (concat "<a href=\"" thefile "\"" attr ">"
  3317. (org-export-html-format-desc desc)
  3318. "</a>")))
  3319. (if (not valid) (setq rpl desc))))
  3320. (t
  3321. ;; just publish the path, as default
  3322. (setq rpl (concat "<i>&lt;" type ":"
  3323. (save-match-data (org-link-unescape path))
  3324. "&gt;</i>"))))
  3325. (setq line (replace-match rpl t t line)
  3326. start (+ start (length rpl))))
  3327. ;; TODO items
  3328. (if (and (string-match org-todo-line-regexp line)
  3329. (match-beginning 2))
  3330. (setq line
  3331. (concat (substring line 0 (match-beginning 2))
  3332. "<span class=\""
  3333. (if (member (match-string 2 line)
  3334. org-done-keywords)
  3335. "done" "todo")
  3336. "\">" (match-string 2 line)
  3337. "</span>" (substring line (match-end 2)))))
  3338. ;; Does this contain a reference to a footnote?
  3339. (when org-export-with-footnotes
  3340. (setq start 0)
  3341. (while (string-match "\\([^* \t].*?\\)\\[\\([0-9]+\\)\\]" line start)
  3342. (if (get-text-property (match-beginning 2) 'org-protected line)
  3343. (setq start (match-end 2))
  3344. (let ((n (match-string 2 line)) extra a)
  3345. (if (setq a (assoc n footref-seen))
  3346. (progn
  3347. (setcdr a (1+ (cdr a)))
  3348. (setq extra (format ".%d" (cdr a))))
  3349. (setq extra "")
  3350. (push (cons n 1) footref-seen))
  3351. (setq line
  3352. (replace-match
  3353. (format
  3354. "%s<sup><a class=\"footref\" name=\"fnr.%s%s\" href=\"#fn.%s\">%s</a></sup>"
  3355. (match-string 1 line) n extra n n)
  3356. t t line))))))
  3357. (cond
  3358. ((string-match "^\\(\\*+\\)[ \t]+\\(.*\\)" line)
  3359. ;; This is a headline
  3360. (setq level (org-tr-level (- (match-end 1) (match-beginning 1)))
  3361. txt (match-string 2 line))
  3362. (if (string-match quote-re0 txt)
  3363. (setq txt (replace-match "" t t txt)))
  3364. (if (<= level (max umax umax-toc))
  3365. (setq head-count (+ head-count 1)))
  3366. (when in-local-list
  3367. ;; Close any local lists before inserting a new header line
  3368. (while local-list-type
  3369. (org-close-li (car local-list-type))
  3370. (insert (format "</%sl>\n" (car local-list-type)))
  3371. (pop local-list-type))
  3372. (setq local-list-indent nil
  3373. in-local-list nil))
  3374. (setq first-heading-pos (or first-heading-pos (point)))
  3375. (org-html-level-start level txt umax
  3376. (and org-export-with-toc (<= level umax))
  3377. head-count)
  3378. ;; QUOTES
  3379. (when (string-match quote-re line)
  3380. (org-close-par-maybe)
  3381. (insert "<pre>")
  3382. (setq inquote t)))
  3383. ((and org-export-with-tables
  3384. (string-match "^\\([ \t]*\\)\\(|\\|\\+-+\\+\\)" line))
  3385. (if (not table-open)
  3386. ;; New table starts
  3387. (setq table-open t table-buffer nil table-orig-buffer nil))
  3388. ;; Accumulate lines
  3389. (setq table-buffer (cons line table-buffer)
  3390. table-orig-buffer (cons origline table-orig-buffer))
  3391. (when (or (not lines)
  3392. (not (string-match "^\\([ \t]*\\)\\(|\\|\\+-+\\+\\)"
  3393. (car lines))))
  3394. (setq table-open nil
  3395. table-buffer (nreverse table-buffer)
  3396. table-orig-buffer (nreverse table-orig-buffer))
  3397. (org-close-par-maybe)
  3398. (insert (org-format-table-html table-buffer table-orig-buffer))))
  3399. (t
  3400. ;; Normal lines
  3401. (when (string-match
  3402. (cond
  3403. ((eq llt t) "^\\([ \t]*\\)\\(\\([-+*] \\)\\|\\([0-9]+[.)]\\) \\)?\\( *[^ \t\n\r]\\|[ \t]*$\\)")
  3404. ((= llt ?.) "^\\([ \t]*\\)\\(\\([-+*] \\)\\|\\([0-9]+\\.\\) \\)?\\( *[^ \t\n\r]\\|[ \t]*$\\)")
  3405. ((= llt ?\)) "^\\([ \t]*\\)\\(\\([-+*] \\)\\|\\([0-9]+)\\) \\)?\\( *[^ \t\n\r]\\|[ \t]*$\\)")
  3406. (t (error "Invalid value of `org-plain-list-ordered-item-terminator'")))
  3407. line)
  3408. (setq ind (org-get-string-indentation line)
  3409. item-type (if (match-beginning 4) "o" "u")
  3410. starter (if (match-beginning 2)
  3411. (substring (match-string 2 line) 0 -1))
  3412. line (substring line (match-beginning 5))
  3413. item-tag nil)
  3414. (if (and starter (string-match "\\(.*?\\) ::[ \t]*" line))
  3415. (setq item-type "d"
  3416. item-tag (match-string 1 line)
  3417. line (substring line (match-end 0))))
  3418. (when (and (not (equal item-type "d"))
  3419. (not (string-match "[^ \t]" line)))
  3420. ;; empty line. Pretend indentation is large.
  3421. (setq ind (if org-empty-line-terminates-plain-lists
  3422. 0
  3423. (1+ (or (car local-list-indent) 1)))))
  3424. (setq didclose nil)
  3425. (while (and in-local-list
  3426. (or (and (= ind (car local-list-indent))
  3427. (not starter))
  3428. (< ind (car local-list-indent))))
  3429. (setq didclose t)
  3430. (org-close-li (car local-list-type))
  3431. (insert (format "</%sl>\n" (car local-list-type)))
  3432. (pop local-list-type) (pop local-list-indent)
  3433. (setq in-local-list local-list-indent))
  3434. (cond
  3435. ((and starter
  3436. (or (not in-local-list)
  3437. (> ind (car local-list-indent))))
  3438. ;; Start new (level of) list
  3439. (org-close-par-maybe)
  3440. (insert (cond
  3441. ((equal item-type "u") "<ul>\n<li>\n")
  3442. ((equal item-type "o") "<ol>\n<li>\n")
  3443. ((equal item-type "d")
  3444. (format "<dl>\n<dt>%s</dt><dd>\n" item-tag))))
  3445. (push item-type local-list-type)
  3446. (push ind local-list-indent)
  3447. (setq in-local-list t))
  3448. (starter
  3449. ;; continue current list
  3450. (org-close-li (car local-list-type))
  3451. (insert (cond
  3452. ((equal (car local-list-type) "d")
  3453. (format "<dt>%s</dt><dd>\n" (or item-tag "???")))
  3454. (t "<li>\n"))))
  3455. (didclose
  3456. ;; we did close a list, normal text follows: need <p>
  3457. (org-open-par)))
  3458. (if (string-match "^[ \t]*\\[\\([X ]\\)\\]" line)
  3459. (setq line
  3460. (replace-match
  3461. (if (equal (match-string 1 line) "X")
  3462. "<b>[X]</b>"
  3463. "<b>[<span style=\"visibility:hidden;\">X</span>]</b>")
  3464. t t line))))
  3465. ;; Empty lines start a new paragraph. If hand-formatted lists
  3466. ;; are not fully interpreted, lines starting with "-", "+", "*"
  3467. ;; also start a new paragraph.
  3468. (if (string-match "^ [-+*]-\\|^[ \t]*$" line) (org-open-par))
  3469. ;; Is this the start of a footnote?
  3470. (when org-export-with-footnotes
  3471. (when (and (boundp 'footnote-section-tag-regexp)
  3472. (string-match (concat "^" footnote-section-tag-regexp)
  3473. line))
  3474. ;; ignore this line
  3475. (throw 'nextline nil))
  3476. (when (string-match "^[ \t]*\\[\\([0-9]+\\)\\]" line)
  3477. (org-close-par-maybe)
  3478. (let ((n (match-string 1 line)))
  3479. (setq org-par-open t
  3480. line (replace-match
  3481. (format "<p class=\"footnote\"><sup><a class=\"footnum\" name=\"fn.%s\" href=\"#fnr.%s\">%s</a></sup>" n n n) t t line)))))
  3482. ;; Check if the line break needs to be conserved
  3483. (cond
  3484. ((string-match "\\\\\\\\[ \t]*$" line)
  3485. (setq line (replace-match "<br/>" t t line)))
  3486. (org-export-preserve-breaks
  3487. (setq line (concat line "<br/>"))))
  3488. (insert line "\n")))))
  3489. ;; Properly close all local lists and other lists
  3490. (when inquote
  3491. (insert "</pre>\n")
  3492. (org-open-par))
  3493. (when in-local-list
  3494. ;; Close any local lists before inserting a new header line
  3495. (while local-list-type
  3496. (org-close-li (car local-list-type))
  3497. (insert (format "</%sl>\n" (car local-list-type)))
  3498. (pop local-list-type))
  3499. (setq local-list-indent nil
  3500. in-local-list nil))
  3501. (org-html-level-start 1 nil umax
  3502. (and org-export-with-toc (<= level umax))
  3503. head-count)
  3504. ;; the </div> to close the last text-... div.
  3505. (when (and (> umax 0) first-heading-pos) (insert "</div>\n"))
  3506. (save-excursion
  3507. (goto-char (point-min))
  3508. (while (re-search-forward "<p class=\"footnote\">[^\000]*?\\(</p>\\|\\'\\)" nil t)
  3509. (push (match-string 0) footnotes)
  3510. (replace-match "" t t)))
  3511. (when footnotes
  3512. (insert (format org-export-html-footnotes-section
  3513. (or (nth 4 lang-words) "Footnotes")
  3514. (mapconcat 'identity (nreverse footnotes) "\n"))
  3515. "\n"))
  3516. (unless body-only
  3517. (when (plist-get opt-plist :auto-postamble)
  3518. (insert "<div id=\"postamble\">")
  3519. (when (and org-export-author-info author)
  3520. (insert "<p class=\"author\"> "
  3521. (nth 1 lang-words) ": " author "\n")
  3522. (when email
  3523. (if (listp (split-string email ",+ *"))
  3524. (mapc (lambda(e)
  3525. (insert "<a href=\"mailto:" e "\">&lt;"
  3526. e "&gt;</a>\n"))
  3527. (split-string email ",+ *"))
  3528. (insert "<a href=\"mailto:" email "\">&lt;"
  3529. email "&gt;</a>\n")))
  3530. (insert "</p>\n"))
  3531. (when (and date org-export-time-stamp-file)
  3532. (insert "<p class=\"date\"> "
  3533. (nth 2 lang-words) ": "
  3534. date "</p>\n"))
  3535. (when org-export-creator-info
  3536. (insert (format "<p>HTML generated by org-mode %s in emacs %s</p>\n"
  3537. org-version emacs-major-version)))
  3538. (insert "</div>"))
  3539. (if org-export-html-with-timestamp
  3540. (insert org-export-html-html-helper-timestamp))
  3541. (insert (or (plist-get opt-plist :postamble) ""))
  3542. (insert "</body>\n</html>\n"))
  3543. (unless (plist-get opt-plist :buffer-will-be-killed)
  3544. (normal-mode)
  3545. (if (eq major-mode default-major-mode) (html-mode)))
  3546. ;; insert the table of contents
  3547. (goto-char (point-min))
  3548. (when thetoc
  3549. (if (or (re-search-forward
  3550. "<p>\\s-*\\[TABLE-OF-CONTENTS\\]\\s-*</p>" nil t)
  3551. (re-search-forward
  3552. "\\[TABLE-OF-CONTENTS\\]" nil t))
  3553. (progn
  3554. (goto-char (match-beginning 0))
  3555. (replace-match ""))
  3556. (goto-char first-heading-pos)
  3557. (when (looking-at "\\s-*</p>")
  3558. (goto-char (match-end 0))
  3559. (insert "\n")))
  3560. (insert "<div id=\"table-of-contents\">\n")
  3561. (mapc 'insert thetoc)
  3562. (insert "</div>\n"))
  3563. ;; remove empty paragraphs and lists
  3564. (goto-char (point-min))
  3565. (while (re-search-forward "<p>[ \r\n\t]*</p>" nil t)
  3566. (replace-match ""))
  3567. (goto-char (point-min))
  3568. (while (re-search-forward "<li>[ \r\n\t]*</li>\n?" nil t)
  3569. (replace-match ""))
  3570. (goto-char (point-min))
  3571. (while (re-search-forward "</ul>\\s-*<ul>\n?" nil t)
  3572. (replace-match ""))
  3573. ;; Convert whitespace place holders
  3574. (goto-char (point-min))
  3575. (let (beg end n)
  3576. (while (setq beg (next-single-property-change (point) 'org-whitespace))
  3577. (setq n (get-text-property beg 'org-whitespace)
  3578. end (next-single-property-change beg 'org-whitespace))
  3579. (goto-char beg)
  3580. (delete-region beg end)
  3581. (insert (format "<span style=\"visibility:hidden;\">%s</span>"
  3582. (make-string n ?x)))))
  3583. (or to-buffer (save-buffer))
  3584. (goto-char (point-min))
  3585. (message "Exporting... done")
  3586. (if (eq to-buffer 'string)
  3587. (prog1 (buffer-substring (point-min) (point-max))
  3588. (kill-buffer (current-buffer)))
  3589. (current-buffer)))))
  3590. (defun org-export-get-coderef-format (path desc)
  3591. (save-match-data
  3592. (if (and desc (string-match
  3593. (regexp-quote (concat "(" path ")"))
  3594. desc))
  3595. (replace-match "%s" t t desc)
  3596. "%s")))
  3597. (defun org-export-html-format-href (s)
  3598. "Make sure the S is valid as a href reference in an XHTML document."
  3599. (save-match-data
  3600. (let ((start 0))
  3601. (while (string-match "&" s start)
  3602. (setq start (+ (match-beginning 0) 3)
  3603. s (replace-match "&amp;" t t s)))))
  3604. s)
  3605. (defun org-export-html-format-desc (s)
  3606. "Make sure the S is valid as a description in a link."
  3607. (if (and s (not (get-text-property 1 'org-protected s)))
  3608. (save-match-data
  3609. (org-html-do-expand s))
  3610. s))
  3611. (defun org-export-html-format-image (src)
  3612. "Create image tag with source and attributes."
  3613. (save-match-data
  3614. (let* ((caption (org-find-text-property-in-string 'org-caption src))
  3615. (attr (org-find-text-property-in-string 'org-attributes src))
  3616. (label (org-find-text-property-in-string 'org-label src)))
  3617. (format "<div %sclass=\"figure\">
  3618. <p><img src=\"%s\"%s /></p>%s
  3619. </div>"
  3620. (if label (format "id=\"%s\" " label) "")
  3621. src
  3622. (if (string-match "\\<alt=" (or attr ""))
  3623. (concat " " attr )
  3624. (concat " " attr " alt=\"" src "\""))
  3625. (if caption (concat "\n<p>" caption "</p>") "")))))
  3626. (defvar org-table-colgroup-info nil)
  3627. (defun org-format-table-ascii (lines)
  3628. "Format a table for ascii export."
  3629. (if (stringp lines)
  3630. (setq lines (org-split-string lines "\n")))
  3631. (if (not (string-match "^[ \t]*|" (car lines)))
  3632. ;; Table made by table.el - test for spanning
  3633. lines
  3634. ;; A normal org table
  3635. ;; Get rid of hlines at beginning and end
  3636. (if (string-match "^[ \t]*|-" (car lines)) (setq lines (cdr lines)))
  3637. (setq lines (nreverse lines))
  3638. (if (string-match "^[ \t]*|-" (car lines)) (setq lines (cdr lines)))
  3639. (setq lines (nreverse lines))
  3640. (when org-export-table-remove-special-lines
  3641. ;; Check if the table has a marking column. If yes remove the
  3642. ;; column and the special lines
  3643. (setq lines (org-table-clean-before-export lines)))
  3644. ;; Get rid of the vertical lines except for grouping
  3645. (let ((vl (org-colgroup-info-to-vline-list org-table-colgroup-info))
  3646. rtn line vl1 start)
  3647. (while (setq line (pop lines))
  3648. (if (string-match org-table-hline-regexp line)
  3649. (and (string-match "|\\(.*\\)|" line)
  3650. (setq line (replace-match " \\1" t nil line)))
  3651. (setq start 0 vl1 vl)
  3652. (while (string-match "|" line start)
  3653. (setq start (match-end 0))
  3654. (or (pop vl1) (setq line (replace-match " " t t line)))))
  3655. (push line rtn))
  3656. (nreverse rtn))))
  3657. (defun org-colgroup-info-to-vline-list (info)
  3658. (let (vl new last)
  3659. (while info
  3660. (setq last new new (pop info))
  3661. (if (or (memq last '(:end :startend))
  3662. (memq new '(:start :startend)))
  3663. (push t vl)
  3664. (push nil vl)))
  3665. (setq vl (nreverse vl))
  3666. (and vl (setcar vl nil))
  3667. vl))
  3668. (defvar org-table-number-regexp) ; defined in org-table.el
  3669. (defun org-format-table-html (lines olines)
  3670. "Find out which HTML converter to use and return the HTML code."
  3671. (if (stringp lines)
  3672. (setq lines (org-split-string lines "\n")))
  3673. (if (string-match "^[ \t]*|" (car lines))
  3674. ;; A normal org table
  3675. (org-format-org-table-html lines)
  3676. ;; Table made by table.el - test for spanning
  3677. (let* ((hlines (delq nil (mapcar
  3678. (lambda (x)
  3679. (if (string-match "^[ \t]*\\+-" x) x
  3680. nil))
  3681. lines)))
  3682. (first (car hlines))
  3683. (ll (and (string-match "\\S-+" first)
  3684. (match-string 0 first)))
  3685. (re (concat "^[ \t]*" (regexp-quote ll)))
  3686. (spanning (delq nil (mapcar (lambda (x) (not (string-match re x)))
  3687. hlines))))
  3688. (if (and (not spanning)
  3689. (not org-export-prefer-native-exporter-for-tables))
  3690. ;; We can use my own converter with HTML conversions
  3691. (org-format-table-table-html lines)
  3692. ;; Need to use the code generator in table.el, with the original text.
  3693. (org-format-table-table-html-using-table-generate-source olines)))))
  3694. (defvar org-table-number-fraction) ; defined in org-table.el
  3695. (defun org-format-org-table-html (lines &optional splice)
  3696. "Format a table into HTML."
  3697. (require 'org-table)
  3698. ;; Get rid of hlines at beginning and end
  3699. (if (string-match "^[ \t]*|-" (car lines)) (setq lines (cdr lines)))
  3700. (setq lines (nreverse lines))
  3701. (if (string-match "^[ \t]*|-" (car lines)) (setq lines (cdr lines)))
  3702. (setq lines (nreverse lines))
  3703. (when org-export-table-remove-special-lines
  3704. ;; Check if the table has a marking column. If yes remove the
  3705. ;; column and the special lines
  3706. (setq lines (org-table-clean-before-export lines)))
  3707. (let ((caption (or (get-text-property 0 'org-caption (car lines))
  3708. (get-text-property (or (next-single-property-change
  3709. 0 'org-caption (car lines))
  3710. 0)
  3711. 'org-caption (car lines))))
  3712. (head (and org-export-highlight-first-table-line
  3713. (delq nil (mapcar
  3714. (lambda (x) (string-match "^[ \t]*|-" x))
  3715. (cdr lines)))))
  3716. (nlines 0) fnum i
  3717. tbopen line fields html gr colgropen)
  3718. (if splice (setq head nil))
  3719. (unless splice (push (if head "<thead>" "<tbody>") html))
  3720. (setq tbopen t)
  3721. (while (setq line (pop lines))
  3722. (catch 'next-line
  3723. (if (string-match "^[ \t]*|-" line)
  3724. (progn
  3725. (unless splice
  3726. (push (if head "</thead>" "</tbody>") html)
  3727. (if lines (push "<tbody>" html) (setq tbopen nil)))
  3728. (setq head nil) ;; head ends here, first time around
  3729. ;; ignore this line
  3730. (throw 'next-line t)))
  3731. ;; Break the line into fields
  3732. (setq fields (org-split-string line "[ \t]*|[ \t]*"))
  3733. (unless fnum (setq fnum (make-vector (length fields) 0)))
  3734. (setq nlines (1+ nlines) i -1)
  3735. (push (concat "<tr>"
  3736. (mapconcat
  3737. (lambda (x)
  3738. (setq i (1+ i))
  3739. (if (and (< i nlines)
  3740. (string-match org-table-number-regexp x))
  3741. (incf (aref fnum i)))
  3742. (if head
  3743. (concat (car org-export-table-header-tags) x
  3744. (cdr org-export-table-header-tags))
  3745. (concat (car org-export-table-data-tags) x
  3746. (cdr org-export-table-data-tags))))
  3747. fields "")
  3748. "</tr>")
  3749. html)))
  3750. (unless splice (if tbopen (push "</tbody>" html)))
  3751. (unless splice (push "</table>\n" html))
  3752. (setq html (nreverse html))
  3753. (unless splice
  3754. ;; Put in col tags with the alignment (unfortunately often ignored...)
  3755. (push (mapconcat
  3756. (lambda (x)
  3757. (setq gr (pop org-table-colgroup-info))
  3758. (format "%s<col align=\"%s\"></col>%s"
  3759. (if (memq gr '(:start :startend))
  3760. (prog1
  3761. (if colgropen "</colgroup>\n<colgroup>" "<colgroup>")
  3762. (setq colgropen t))
  3763. "")
  3764. (if (> (/ (float x) nlines) org-table-number-fraction)
  3765. "right" "left")
  3766. (if (memq gr '(:end :startend))
  3767. (progn (setq colgropen nil) "</colgroup>")
  3768. "")))
  3769. fnum "")
  3770. html)
  3771. (if colgropen (setq html (cons (car html) (cons "</colgroup>" (cdr html)))))
  3772. (if caption (push (format "<caption>%s</caption>" caption) html))
  3773. (push html-table-tag html))
  3774. (concat (mapconcat 'identity html "\n") "\n")))
  3775. (defun org-table-clean-before-export (lines)
  3776. "Check if the table has a marking column.
  3777. If yes remove the column and the special lines."
  3778. (setq org-table-colgroup-info nil)
  3779. (if (memq nil
  3780. (mapcar
  3781. (lambda (x) (or (string-match "^[ \t]*|-" x)
  3782. (string-match "^[ \t]*| *\\([#!$*_^ /]\\) *|" x)))
  3783. lines))
  3784. (progn
  3785. (setq org-table-clean-did-remove-column nil)
  3786. (delq nil
  3787. (mapcar
  3788. (lambda (x)
  3789. (cond
  3790. ((string-match "^[ \t]*| */ *|" x)
  3791. (setq org-table-colgroup-info
  3792. (mapcar (lambda (x)
  3793. (cond ((member x '("<" "&lt;")) :start)
  3794. ((member x '(">" "&gt;")) :end)
  3795. ((member x '("<>" "&lt;&gt;")) :startend)
  3796. (t nil)))
  3797. (org-split-string x "[ \t]*|[ \t]*")))
  3798. nil)
  3799. (t x)))
  3800. lines)))
  3801. (setq org-table-clean-did-remove-column t)
  3802. (delq nil
  3803. (mapcar
  3804. (lambda (x)
  3805. (cond
  3806. ((string-match "^[ \t]*| */ *|" x)
  3807. (setq org-table-colgroup-info
  3808. (mapcar (lambda (x)
  3809. (cond ((member x '("<" "&lt;")) :start)
  3810. ((member x '(">" "&gt;")) :end)
  3811. ((member x '("<>" "&lt;&gt;")) :startend)
  3812. (t nil)))
  3813. (cdr (org-split-string x "[ \t]*|[ \t]*"))))
  3814. nil)
  3815. ((string-match "^[ \t]*| *[!_^/] *|" x)
  3816. nil) ; ignore this line
  3817. ((or (string-match "^\\([ \t]*\\)|-+\\+" x)
  3818. (string-match "^\\([ \t]*\\)|[^|]*|" x))
  3819. ;; remove the first column
  3820. (replace-match "\\1|" t nil x))))
  3821. lines))))
  3822. (defun org-format-table-table-html (lines)
  3823. "Format a table generated by table.el into HTML.
  3824. This conversion does *not* use `table-generate-source' from table.el.
  3825. This has the advantage that Org-mode's HTML conversions can be used.
  3826. But it has the disadvantage, that no cell- or row-spanning is allowed."
  3827. (let (line field-buffer
  3828. (head org-export-highlight-first-table-line)
  3829. fields html empty)
  3830. (setq html (concat html-table-tag "\n"))
  3831. (while (setq line (pop lines))
  3832. (setq empty "&nbsp;")
  3833. (catch 'next-line
  3834. (if (string-match "^[ \t]*\\+-" line)
  3835. (progn
  3836. (if field-buffer
  3837. (progn
  3838. (setq
  3839. html
  3840. (concat
  3841. html
  3842. "<tr>"
  3843. (mapconcat
  3844. (lambda (x)
  3845. (if (equal x "") (setq x empty))
  3846. (if head
  3847. (concat (car org-export-table-header-tags) x
  3848. (cdr org-export-table-header-tags))
  3849. (concat (car org-export-table-data-tags) x
  3850. (cdr org-export-table-data-tags))))
  3851. field-buffer "\n")
  3852. "</tr>\n"))
  3853. (setq head nil)
  3854. (setq field-buffer nil)))
  3855. ;; Ignore this line
  3856. (throw 'next-line t)))
  3857. ;; Break the line into fields and store the fields
  3858. (setq fields (org-split-string line "[ \t]*|[ \t]*"))
  3859. (if field-buffer
  3860. (setq field-buffer (mapcar
  3861. (lambda (x)
  3862. (concat x "<br/>" (pop fields)))
  3863. field-buffer))
  3864. (setq field-buffer fields))))
  3865. (setq html (concat html "</table>\n"))
  3866. html))
  3867. (defun org-format-table-table-html-using-table-generate-source (lines)
  3868. "Format a table into html, using `table-generate-source' from table.el.
  3869. This has the advantage that cell- or row-spanning is allowed.
  3870. But it has the disadvantage, that Org-mode's HTML conversions cannot be used."
  3871. (require 'table)
  3872. (with-current-buffer (get-buffer-create " org-tmp1 ")
  3873. (erase-buffer)
  3874. (insert (mapconcat 'identity lines "\n"))
  3875. (goto-char (point-min))
  3876. (if (not (re-search-forward "|[^+]" nil t))
  3877. (error "Error processing table"))
  3878. (table-recognize-table)
  3879. (with-current-buffer (get-buffer-create " org-tmp2 ") (erase-buffer))
  3880. (table-generate-source 'html " org-tmp2 ")
  3881. (set-buffer " org-tmp2 ")
  3882. (buffer-substring (point-min) (point-max))))
  3883. (defun org-export-splice-style (style extra)
  3884. "Splice EXTRA into STYLE, just before \"</style>\"."
  3885. (if (and (stringp extra)
  3886. (string-match "\\S-" extra)
  3887. (string-match "</style>" style))
  3888. (concat (substring style 0 (match-beginning 0))
  3889. "\n" extra "\n"
  3890. (substring style (match-beginning 0)))
  3891. style))
  3892. (defun org-html-handle-time-stamps (s)
  3893. "Format time stamps in string S, or remove them."
  3894. (catch 'exit
  3895. (let (r b)
  3896. (while (string-match org-maybe-keyword-time-regexp s)
  3897. (or b (setq b (substring s 0 (match-beginning 0))))
  3898. (setq r (concat
  3899. r (substring s 0 (match-beginning 0))
  3900. (if (match-end 1)
  3901. (format "@<span class=\"timestamp-kwd\">%s @</span>"
  3902. (match-string 1 s)))
  3903. (format " @<span class=\"timestamp\">%s@</span>"
  3904. (substring
  3905. (org-translate-time (match-string 3 s)) 1 -1)))
  3906. s (substring s (match-end 0))))
  3907. ;; Line break if line started and ended with time stamp stuff
  3908. (if (not r)
  3909. s
  3910. (setq r (concat r s))
  3911. (unless (string-match "\\S-" (concat b s))
  3912. (setq r (concat r "@<br/>")))
  3913. r))))
  3914. (defun org-export-htmlize-region-for-paste (beg end)
  3915. "Convert the region to HTML, using htmlize.el.
  3916. This is much like `htmlize-region-for-paste', only that it uses
  3917. the settings define in the org-... variables."
  3918. (let* ((htmlize-output-type org-export-htmlize-output-type)
  3919. (htmlize-css-name-prefix org-export-htmlize-css-font-prefix)
  3920. (htmlbuf (htmlize-region beg end)))
  3921. (unwind-protect
  3922. (with-current-buffer htmlbuf
  3923. (buffer-substring (plist-get htmlize-buffer-places 'content-start)
  3924. (plist-get htmlize-buffer-places 'content-end)))
  3925. (kill-buffer htmlbuf))))
  3926. ;;;###autoload
  3927. (defun org-export-htmlize-generate-css ()
  3928. "Create the CSS for all font definitions in the current Emacs session.
  3929. Use this to create face definitions in your CSS style file that can then
  3930. be used by code snippets transformed by htmlize.
  3931. This command just produces a buffer that contains class definitions for all
  3932. faces used in the current Emacs session. You can copy and paste the ones you
  3933. need into your CSS file.
  3934. If you then set `org-export-htmlize-output-type' to `css', calls to
  3935. the function `org-export-htmlize-region-for-paste' will produce code
  3936. that uses these same face definitions."
  3937. (interactive)
  3938. (require 'htmlize)
  3939. (and (get-buffer "*html*") (kill-buffer "*html*"))
  3940. (with-temp-buffer
  3941. (let ((fl (face-list))
  3942. (htmlize-css-name-prefix "org-")
  3943. (htmlize-output-type 'css)
  3944. f i)
  3945. (while (setq f (pop fl)
  3946. i (and f (face-attribute f :inherit)))
  3947. (when (and (symbolp f) (or (not i) (not (listp i))))
  3948. (insert (org-add-props (copy-sequence "1") nil 'face f))))
  3949. (htmlize-region (point-min) (point-max))))
  3950. (switch-to-buffer "*html*")
  3951. (goto-char (point-min))
  3952. (if (re-search-forward "<style" nil t)
  3953. (delete-region (point-min) (match-beginning 0)))
  3954. (if (re-search-forward "</style>" nil t)
  3955. (delete-region (1+ (match-end 0)) (point-max)))
  3956. (beginning-of-line 1)
  3957. (if (looking-at " +") (replace-match ""))
  3958. (goto-char (point-min)))
  3959. (defun org-html-protect (s)
  3960. ;; convert & to &amp;, < to &lt; and > to &gt;
  3961. (let ((start 0))
  3962. (while (string-match "&" s start)
  3963. (setq s (replace-match "&amp;" t t s)
  3964. start (1+ (match-beginning 0))))
  3965. (while (string-match "<" s)
  3966. (setq s (replace-match "&lt;" t t s)))
  3967. (while (string-match ">" s)
  3968. (setq s (replace-match "&gt;" t t s)))
  3969. ; (while (string-match "\"" s)
  3970. ; (setq s (replace-match "&quot;" t t s)))
  3971. )
  3972. s)
  3973. (defun org-export-cleanup-toc-line (s)
  3974. "Remove tags and timestamps from lines going into the toc."
  3975. (when (memq org-export-with-tags '(not-in-toc nil))
  3976. (if (string-match (org-re " +:[[:alnum:]_@:]+: *$") s)
  3977. (setq s (replace-match "" t t s))))
  3978. (when org-export-remove-timestamps-from-toc
  3979. (while (string-match org-maybe-keyword-time-regexp s)
  3980. (setq s (replace-match "" t t s))))
  3981. (while (string-match org-bracket-link-regexp s)
  3982. (setq s (replace-match (match-string (if (match-end 3) 3 1) s)
  3983. t t s)))
  3984. s)
  3985. (defun org-html-expand (string)
  3986. "Prepare STRING for HTML export. Applies all active conversions.
  3987. If there are links in the string, don't modify these."
  3988. (let* ((re (concat org-bracket-link-regexp "\\|"
  3989. (org-re "[ \t]+\\(:[[:alnum:]_@:]+:\\)[ \t]*$")))
  3990. m s l res)
  3991. (while (setq m (string-match re string))
  3992. (setq s (substring string 0 m)
  3993. l (match-string 0 string)
  3994. string (substring string (match-end 0)))
  3995. (push (org-html-do-expand s) res)
  3996. (push l res))
  3997. (push (org-html-do-expand string) res)
  3998. (apply 'concat (nreverse res))))
  3999. (defun org-html-do-expand (s)
  4000. "Apply all active conversions to translate special ASCII to HTML."
  4001. (setq s (org-html-protect s))
  4002. (if org-export-html-expand
  4003. (let ((start 0))
  4004. (while (string-match "@&lt;\\([^&]*\\)&gt;" s)
  4005. (setq s (replace-match "<\\1>" t nil s)))))
  4006. (if org-export-with-emphasize
  4007. (setq s (org-export-html-convert-emphasize s)))
  4008. (if org-export-with-special-strings
  4009. (setq s (org-export-html-convert-special-strings s)))
  4010. (if org-export-with-sub-superscripts
  4011. (setq s (org-export-html-convert-sub-super s)))
  4012. (if org-export-with-TeX-macros
  4013. (let ((start 0) wd ass)
  4014. (while (setq start (string-match "\\\\\\([a-zA-Z]+\\)\\({}\\)?"
  4015. s start))
  4016. (if (get-text-property (match-beginning 0) 'org-protected s)
  4017. (setq start (match-end 0))
  4018. (setq wd (match-string 1 s))
  4019. (if (setq ass (assoc wd org-html-entities))
  4020. (setq s (replace-match (or (cdr ass)
  4021. (concat "&" (car ass) ";"))
  4022. t t s))
  4023. (setq start (+ start (length wd))))))))
  4024. s)
  4025. (defun org-create-multibrace-regexp (left right n)
  4026. "Create a regular expression which will match a balanced sexp.
  4027. Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
  4028. as single character strings.
  4029. The regexp returned will match the entire expression including the
  4030. delimiters. It will also define a single group which contains the
  4031. match except for the outermost delimiters. The maximum depth of
  4032. stacked delimiters is N. Escaping delimiters is not possible."
  4033. (let* ((nothing (concat "[^" "\\" left "\\" right "]*?"))
  4034. (or "\\|")
  4035. (re nothing)
  4036. (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
  4037. (while (> n 1)
  4038. (setq n (1- n)
  4039. re (concat re or next)
  4040. next (concat "\\(?:" nothing left next right "\\)+" nothing)))
  4041. (concat left "\\(" re "\\)" right)))
  4042. (defvar org-match-substring-regexp
  4043. (concat
  4044. "\\([^\\]\\)\\([_^]\\)\\("
  4045. "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
  4046. "\\|"
  4047. "\\(" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
  4048. "\\|"
  4049. "\\(\\(?:\\*\\|[-+]?[^-+*!@#$%^_ \t\r\n,:\"?<>~;./{}=()]+\\)\\)\\)")
  4050. "The regular expression matching a sub- or superscript.")
  4051. (defvar org-match-substring-with-braces-regexp
  4052. (concat
  4053. "\\([^\\]\\)\\([_^]\\)\\("
  4054. "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
  4055. "\\)")
  4056. "The regular expression matching a sub- or superscript, forcing braces.")
  4057. (defconst org-export-html-special-string-regexps
  4058. '(("\\\\-" . "&shy;")
  4059. ("---\\([^-]\\)" . "&mdash;\\1")
  4060. ("--\\([^-]\\)" . "&ndash;\\1")
  4061. ("\\.\\.\\." . "&hellip;"))
  4062. "Regular expressions for special string conversion.")
  4063. (defun org-export-html-convert-special-strings (string)
  4064. "Convert special characters in STRING to HTML."
  4065. (let ((all org-export-html-special-string-regexps)
  4066. e a re rpl start)
  4067. (while (setq a (pop all))
  4068. (setq re (car a) rpl (cdr a) start 0)
  4069. (while (string-match re string start)
  4070. (if (get-text-property (match-beginning 0) 'org-protected string)
  4071. (setq start (match-end 0))
  4072. (setq string (replace-match rpl t nil string)))))
  4073. string))
  4074. (defun org-export-html-convert-sub-super (string)
  4075. "Convert sub- and superscripts in STRING to HTML."
  4076. (let (key c (s 0) (requireb (eq org-export-with-sub-superscripts '{})))
  4077. (while (string-match org-match-substring-regexp string s)
  4078. (cond
  4079. ((and requireb (match-end 8)) (setq s (match-end 2)))
  4080. ((get-text-property (match-beginning 2) 'org-protected string)
  4081. (setq s (match-end 2)))
  4082. (t
  4083. (setq s (match-end 1)
  4084. key (if (string= (match-string 2 string) "_") "sub" "sup")
  4085. c (or (match-string 8 string)
  4086. (match-string 6 string)
  4087. (match-string 5 string))
  4088. string (replace-match
  4089. (concat (match-string 1 string)
  4090. "<" key ">" c "</" key ">")
  4091. t t string)))))
  4092. (while (string-match "\\\\\\([_^]\\)" string)
  4093. (setq string (replace-match (match-string 1 string) t t string)))
  4094. string))
  4095. (defun org-export-html-convert-emphasize (string)
  4096. "Apply emphasis."
  4097. (let ((s 0) rpl)
  4098. (while (string-match org-emph-re string s)
  4099. (if (not (equal
  4100. (substring string (match-beginning 3) (1+ (match-beginning 3)))
  4101. (substring string (match-beginning 4) (1+ (match-beginning 4)))))
  4102. (setq s (match-beginning 0)
  4103. rpl
  4104. (concat
  4105. (match-string 1 string)
  4106. (nth 2 (assoc (match-string 3 string) org-emphasis-alist))
  4107. (match-string 4 string)
  4108. (nth 3 (assoc (match-string 3 string)
  4109. org-emphasis-alist))
  4110. (match-string 5 string))
  4111. string (replace-match rpl t t string)
  4112. s (+ s (- (length rpl) 2)))
  4113. (setq s (1+ s))))
  4114. string))
  4115. (defun org-open-par ()
  4116. "Insert <p>, but first close previous paragraph if any."
  4117. (org-close-par-maybe)
  4118. (insert "\n<p>")
  4119. (setq org-par-open t))
  4120. (defun org-close-par-maybe ()
  4121. "Close paragraph if there is one open."
  4122. (when org-par-open
  4123. (insert "</p>")
  4124. (setq org-par-open nil)))
  4125. (defun org-close-li (&optional type)
  4126. "Close <li> if necessary."
  4127. (org-close-par-maybe)
  4128. (insert (if (equal type "d") "</dd>\n" "</li>\n")))
  4129. (defvar body-only) ; dynamically scoped into this.
  4130. (defun org-html-level-start (level title umax with-toc head-count)
  4131. "Insert a new level in HTML export.
  4132. When TITLE is nil, just close all open levels."
  4133. (org-close-par-maybe)
  4134. (let* ((target (and title (org-get-text-property-any 0 'target title)))
  4135. (extra-targets
  4136. (mapconcat (lambda (x)
  4137. (format "<a name=\"%s\" id=\"%s\"></a>"
  4138. x x))
  4139. (cdr (assoc target org-export-target-aliases))
  4140. ""))
  4141. (l org-level-max)
  4142. snumber)
  4143. (while (>= l level)
  4144. (if (aref org-levels-open (1- l))
  4145. (progn
  4146. (org-html-level-close l umax)
  4147. (aset org-levels-open (1- l) nil)))
  4148. (setq l (1- l)))
  4149. (when title
  4150. ;; If title is nil, this means this function is called to close
  4151. ;; all levels, so the rest is done only if title is given
  4152. (when (string-match (org-re "\\(:[[:alnum:]_@:]+:\\)[ \t]*$") title)
  4153. (setq title (replace-match
  4154. (if org-export-with-tags
  4155. (save-match-data
  4156. (concat
  4157. "&nbsp;&nbsp;&nbsp;<span class=\"tag\">"
  4158. (mapconcat 'identity (org-split-string
  4159. (match-string 1 title) ":")
  4160. "&nbsp;")
  4161. "</span>"))
  4162. "")
  4163. t t title)))
  4164. (if (> level umax)
  4165. (progn
  4166. (if (aref org-levels-open (1- level))
  4167. (progn
  4168. (org-close-li)
  4169. (if target
  4170. (insert (format "<li id=\"%s\">" target) extra-targets title "<br/>\n")
  4171. (insert "<li>" title "<br/>\n")))
  4172. (aset org-levels-open (1- level) t)
  4173. (org-close-par-maybe)
  4174. (if target
  4175. (insert (format "<ul>\n<li id=\"%s\">" target)
  4176. extra-targets title "<br/>\n")
  4177. (insert "<ul>\n<li>" title "<br/>\n"))))
  4178. (aset org-levels-open (1- level) t)
  4179. (setq snumber (org-section-number level))
  4180. (if (and org-export-with-section-numbers (not body-only))
  4181. (setq title (concat snumber " " title)))
  4182. (setq level (+ level org-export-html-toplevel-hlevel -1))
  4183. (unless (= head-count 1) (insert "\n</div>\n"))
  4184. (insert (format "\n<div id=\"outline-container-%s\" class=\"outline-%d\">\n<h%d id=\"sec-%s\">%s%s</h%d>\n<div id=\"text-%s\">\n"
  4185. snumber level level snumber extra-targets title level snumber))
  4186. (org-open-par)))))
  4187. (defun org-get-text-property-any (pos prop &optional object)
  4188. (or (get-text-property pos prop object)
  4189. (and (setq pos (next-single-property-change pos prop object))
  4190. (get-text-property pos prop object))))
  4191. (defun org-html-level-close (level max-outline-level)
  4192. "Terminate one level in HTML export."
  4193. (if (<= level max-outline-level)
  4194. (insert "</div>\n")
  4195. (org-close-li)
  4196. (insert "</ul>\n")))
  4197. ;;; iCalendar export
  4198. ;;;###autoload
  4199. (defun org-export-icalendar-this-file ()
  4200. "Export current file as an iCalendar file.
  4201. The iCalendar file will be located in the same directory as the Org-mode
  4202. file, but with extension `.ics'."
  4203. (interactive)
  4204. (org-export-icalendar nil buffer-file-name))
  4205. ;;;###autoload
  4206. (defun org-export-icalendar-all-agenda-files ()
  4207. "Export all files in `org-agenda-files' to iCalendar .ics files.
  4208. Each iCalendar file will be located in the same directory as the Org-mode
  4209. file, but with extension `.ics'."
  4210. (interactive)
  4211. (apply 'org-export-icalendar nil (org-agenda-files t)))
  4212. ;;;###autoload
  4213. (defun org-export-icalendar-combine-agenda-files ()
  4214. "Export all files in `org-agenda-files' to a single combined iCalendar file.
  4215. The file is stored under the name `org-combined-agenda-icalendar-file'."
  4216. (interactive)
  4217. (apply 'org-export-icalendar t (org-agenda-files t)))
  4218. (defun org-export-icalendar (combine &rest files)
  4219. "Create iCalendar files for all elements of FILES.
  4220. If COMBINE is non-nil, combine all calendar entries into a single large
  4221. file and store it under the name `org-combined-agenda-icalendar-file'."
  4222. (save-excursion
  4223. (org-prepare-agenda-buffers files)
  4224. (let* ((dir (org-export-directory
  4225. :ical (list :publishing-directory
  4226. org-export-publishing-directory)))
  4227. file ical-file ical-buffer category started org-agenda-new-buffers)
  4228. (and (get-buffer "*ical-tmp*") (kill-buffer "*ical-tmp*"))
  4229. (when combine
  4230. (setq ical-file
  4231. (if (file-name-absolute-p org-combined-agenda-icalendar-file)
  4232. org-combined-agenda-icalendar-file
  4233. (expand-file-name org-combined-agenda-icalendar-file dir))
  4234. ical-buffer (org-get-agenda-file-buffer ical-file))
  4235. (set-buffer ical-buffer) (erase-buffer))
  4236. (while (setq file (pop files))
  4237. (catch 'nextfile
  4238. (org-check-agenda-file file)
  4239. (set-buffer (org-get-agenda-file-buffer file))
  4240. (unless combine
  4241. (setq ical-file (concat (file-name-as-directory dir)
  4242. (file-name-sans-extension
  4243. (file-name-nondirectory buffer-file-name))
  4244. ".ics"))
  4245. (setq ical-buffer (org-get-agenda-file-buffer ical-file))
  4246. (with-current-buffer ical-buffer (erase-buffer)))
  4247. (setq category (or org-category
  4248. (file-name-sans-extension
  4249. (file-name-nondirectory buffer-file-name))))
  4250. (if (symbolp category) (setq category (symbol-name category)))
  4251. (let ((standard-output ical-buffer))
  4252. (if combine
  4253. (and (not started) (setq started t)
  4254. (org-start-icalendar-file org-icalendar-combined-name))
  4255. (org-start-icalendar-file category))
  4256. (org-print-icalendar-entries combine)
  4257. (when (or (and combine (not files)) (not combine))
  4258. (org-finish-icalendar-file)
  4259. (set-buffer ical-buffer)
  4260. (run-hooks 'org-before-save-iCalendar-file-hook)
  4261. (save-buffer)
  4262. (run-hooks 'org-after-save-iCalendar-file-hook)
  4263. (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))
  4264. ))))
  4265. (org-release-buffers org-agenda-new-buffers))))
  4266. (defvar org-before-save-iCalendar-file-hook nil
  4267. "Hook run before an iCalendar file has been saved.
  4268. This can be used to modify the result of the export.")
  4269. (defvar org-after-save-iCalendar-file-hook nil
  4270. "Hook run after an iCalendar file has been saved.
  4271. The iCalendar buffer is still current when this hook is run.
  4272. A good way to use this is to tell a desktop calendar application to re-read
  4273. the iCalendar file.")
  4274. (defvar org-agenda-default-appointment-duration) ; defined in org-agenda.el
  4275. (defun org-print-icalendar-entries (&optional combine)
  4276. "Print iCalendar entries for the current Org-mode file to `standard-output'.
  4277. When COMBINE is non nil, add the category to each line."
  4278. (require 'org-agenda)
  4279. (let ((re1 (concat org-ts-regexp "\\|<%%([^>\n]+>"))
  4280. (re2 (concat "--?-?\\(" org-ts-regexp "\\)"))
  4281. (dts (org-ical-ts-to-string
  4282. (format-time-string (cdr org-time-stamp-formats) (current-time))
  4283. "DTSTART"))
  4284. hd ts ts2 state status (inc t) pos b sexp rrule
  4285. scheduledp deadlinep todo prefix due start
  4286. tmp pri categories entry location summary desc uid
  4287. (sexp-buffer (get-buffer-create "*ical-tmp*")))
  4288. (org-refresh-category-properties)
  4289. (save-excursion
  4290. (goto-char (point-min))
  4291. (while (re-search-forward re1 nil t)
  4292. (catch :skip
  4293. (org-agenda-skip)
  4294. (when (boundp 'org-icalendar-verify-function)
  4295. (unless (funcall org-icalendar-verify-function)
  4296. (outline-next-heading)
  4297. (backward-char 1)
  4298. (throw :skip nil)))
  4299. (setq pos (match-beginning 0)
  4300. ts (match-string 0)
  4301. inc t
  4302. hd (condition-case nil
  4303. (org-icalendar-cleanup-string
  4304. (org-get-heading))
  4305. (error (throw :skip nil)))
  4306. summary (org-icalendar-cleanup-string
  4307. (org-entry-get nil "SUMMARY"))
  4308. desc (org-icalendar-cleanup-string
  4309. (or (org-entry-get nil "DESCRIPTION")
  4310. (and org-icalendar-include-body (org-get-entry)))
  4311. t org-icalendar-include-body)
  4312. location (org-icalendar-cleanup-string
  4313. (org-entry-get nil "LOCATION" 'selective))
  4314. uid (if org-icalendar-store-UID
  4315. (org-id-get-create)
  4316. (or (org-id-get) (org-id-new)))
  4317. categories (org-export-get-categories)
  4318. deadlinep nil scheduledp nil)
  4319. (if (looking-at re2)
  4320. (progn
  4321. (goto-char (match-end 0))
  4322. (setq ts2 (match-string 1)
  4323. inc (not (string-match "[0-9]\\{1,2\\}:[0-9][0-9]" ts2))))
  4324. (setq tmp (buffer-substring (max (point-min)
  4325. (- pos org-ds-keyword-length))
  4326. pos)
  4327. ts2 (if (string-match "[0-9]\\{1,2\\}:[0-9][0-9]-\\([0-9]\\{1,2\\}:[0-9][0-9]\\)" ts)
  4328. (progn
  4329. (setq inc nil)
  4330. (replace-match "\\1" t nil ts))
  4331. ts)
  4332. deadlinep (string-match org-deadline-regexp tmp)
  4333. scheduledp (string-match org-scheduled-regexp tmp)
  4334. todo (org-get-todo-state)
  4335. ;; donep (org-entry-is-done-p)
  4336. ))
  4337. (when (and
  4338. deadlinep
  4339. (if todo
  4340. (not (memq 'event-if-todo org-icalendar-use-deadline))
  4341. (not (memq 'event-if-not-todo org-icalendar-use-deadline))))
  4342. (throw :skip t))
  4343. (when (and
  4344. scheduledp
  4345. (if todo
  4346. (not (memq 'event-if-todo org-icalendar-use-scheduled))
  4347. (not (memq 'event-if-not-todo org-icalendar-use-scheduled))))
  4348. (throw :skip t))
  4349. (setq prefix (if deadlinep "DL-" (if scheduledp "SC-" "TS-")))
  4350. (if (or (string-match org-tr-regexp hd)
  4351. (string-match org-ts-regexp hd))
  4352. (setq hd (replace-match "" t t hd)))
  4353. (if (string-match "\\+\\([0-9]+\\)\\([dwmy]\\)>" ts)
  4354. (setq rrule
  4355. (concat "\nRRULE:FREQ="
  4356. (cdr (assoc
  4357. (match-string 2 ts)
  4358. '(("d" . "DAILY")("w" . "WEEKLY")
  4359. ("m" . "MONTHLY")("y" . "YEARLY"))))
  4360. ";INTERVAL=" (match-string 1 ts)))
  4361. (setq rrule ""))
  4362. (setq summary (or summary hd))
  4363. (if (string-match org-bracket-link-regexp summary)
  4364. (setq summary
  4365. (replace-match (if (match-end 3)
  4366. (match-string 3 summary)
  4367. (match-string 1 summary))
  4368. t t summary)))
  4369. (if deadlinep (setq summary (concat "DL: " summary)))
  4370. (if scheduledp (setq summary (concat "S: " summary)))
  4371. (if (string-match "\\`<%%" ts)
  4372. (with-current-buffer sexp-buffer
  4373. (insert (substring ts 1 -1) " " summary "\n"))
  4374. (princ (format "BEGIN:VEVENT
  4375. UID: %s
  4376. %s
  4377. %s%s
  4378. SUMMARY:%s%s%s
  4379. CATEGORIES:%s
  4380. END:VEVENT\n"
  4381. (concat prefix uid)
  4382. (org-ical-ts-to-string ts "DTSTART")
  4383. (org-ical-ts-to-string ts2 "DTEND" inc)
  4384. rrule summary
  4385. (if (and desc (string-match "\\S-" desc))
  4386. (concat "\nDESCRIPTION: " desc) "")
  4387. (if (and location (string-match "\\S-" location))
  4388. (concat "\nLOCATION: " location) "")
  4389. categories)))))
  4390. (when (and org-icalendar-include-sexps
  4391. (condition-case nil (require 'icalendar) (error nil))
  4392. (fboundp 'icalendar-export-region))
  4393. ;; Get all the literal sexps
  4394. (goto-char (point-min))
  4395. (while (re-search-forward "^&?%%(" nil t)
  4396. (catch :skip
  4397. (org-agenda-skip)
  4398. (setq b (match-beginning 0))
  4399. (goto-char (1- (match-end 0)))
  4400. (forward-sexp 1)
  4401. (end-of-line 1)
  4402. (setq sexp (buffer-substring b (point)))
  4403. (with-current-buffer sexp-buffer
  4404. (insert sexp "\n"))))
  4405. (princ (org-diary-to-ical-string sexp-buffer))
  4406. (kill-buffer sexp-buffer))
  4407. (when org-icalendar-include-todo
  4408. (setq prefix "TODO-")
  4409. (goto-char (point-min))
  4410. (while (re-search-forward org-todo-line-regexp nil t)
  4411. (catch :skip
  4412. (org-agenda-skip)
  4413. (when (boundp 'org-icalendar-verify-function)
  4414. (unless (funcall org-icalendar-verify-function)
  4415. (outline-next-heading)
  4416. (backward-char 1)
  4417. (throw :skip nil)))
  4418. (setq state (match-string 2))
  4419. (setq status (if (member state org-done-keywords)
  4420. "COMPLETED" "NEEDS-ACTION"))
  4421. (when (and state
  4422. (or (not (member state org-done-keywords))
  4423. (eq org-icalendar-include-todo 'all))
  4424. (not (member org-archive-tag (org-get-tags-at)))
  4425. )
  4426. (setq hd (match-string 3)
  4427. summary (org-icalendar-cleanup-string
  4428. (org-entry-get nil "SUMMARY"))
  4429. desc (org-icalendar-cleanup-string
  4430. (or (org-entry-get nil "DESCRIPTION")
  4431. (and org-icalendar-include-body (org-get-entry)))
  4432. t org-icalendar-include-body)
  4433. location (org-icalendar-cleanup-string
  4434. (org-entry-get nil "LOCATION" 'selective))
  4435. due (and (member 'todo-due org-icalendar-use-deadline)
  4436. (org-entry-get nil "DEADLINE"))
  4437. start (and (member 'todo-start org-icalendar-use-scheduled)
  4438. (org-entry-get nil "SCHEDULED"))
  4439. categories (org-export-get-categories)
  4440. uid (if org-icalendar-store-UID
  4441. (org-id-get-create)
  4442. (or (org-id-get) (org-id-new))))
  4443. (and due (setq due (org-ical-ts-to-string due "DUE")))
  4444. (and start (setq start (org-ical-ts-to-string start "DTSTART")))
  4445. (if (string-match org-bracket-link-regexp hd)
  4446. (setq hd (replace-match (if (match-end 3) (match-string 3 hd)
  4447. (match-string 1 hd))
  4448. t t hd)))
  4449. (if (string-match org-priority-regexp hd)
  4450. (setq pri (string-to-char (match-string 2 hd))
  4451. hd (concat (substring hd 0 (match-beginning 1))
  4452. (substring hd (match-end 1))))
  4453. (setq pri org-default-priority))
  4454. (setq pri (floor (- 9 (* 8. (/ (float (- org-lowest-priority pri))
  4455. (- org-lowest-priority org-highest-priority))))))
  4456. (princ (format "BEGIN:VTODO
  4457. UID: %s
  4458. %s
  4459. SUMMARY:%s%s%s%s
  4460. CATEGORIES:%s
  4461. SEQUENCE:1
  4462. PRIORITY:%d
  4463. STATUS:%s
  4464. END:VTODO\n"
  4465. (concat prefix uid)
  4466. (or start dts)
  4467. (or summary hd)
  4468. (if (and location (string-match "\\S-" location))
  4469. (concat "\nLOCATION: " location) "")
  4470. (if (and desc (string-match "\\S-" desc))
  4471. (concat "\nDESCRIPTION: " desc) "")
  4472. (if due (concat "\n" due) "")
  4473. categories
  4474. pri status)))))))))
  4475. (defun org-export-get-categories ()
  4476. "Get categories according to `org-icalendar-categories'."
  4477. (let ((cs org-icalendar-categories) c rtn tmp)
  4478. (while (setq c (pop cs))
  4479. (cond
  4480. ((eq c 'category) (push (org-get-category) rtn))
  4481. ((eq c 'todo-state)
  4482. (setq tmp (org-get-todo-state))
  4483. (and tmp (push tmp rtn)))
  4484. ((eq c 'local-tags)
  4485. (setq rtn (append (nreverse (org-get-local-tags-at (point))) rtn)))
  4486. ((eq c 'all-tags)
  4487. (setq rtn (append (nreverse (org-get-tags-at (point))) rtn)))))
  4488. (mapconcat 'identity (nreverse rtn) ",")))
  4489. (defun org-icalendar-cleanup-string (s &optional is-body maxlength)
  4490. "Take out stuff and quote what needs to be quoted.
  4491. When IS-BODY is non-nil, assume that this is the body of an item, clean up
  4492. whitespace, newlines, drawers, and timestamps, and cut it down to MAXLENGTH
  4493. characters."
  4494. (if (not s)
  4495. nil
  4496. (when is-body
  4497. (let ((re (concat "\\(" org-drawer-regexp "\\)[^\000]*?:END:.*\n?"))
  4498. (re2 (concat "^[ \t]*" org-keyword-time-regexp ".*\n?")))
  4499. (while (string-match re s) (setq s (replace-match "" t t s)))
  4500. (while (string-match re2 s) (setq s (replace-match "" t t s)))))
  4501. (let ((start 0))
  4502. (while (string-match "\\([,;]\\)" s start)
  4503. (setq start (+ (match-beginning 0) 2)
  4504. s (replace-match "\\\\\\1" nil nil s))))
  4505. (setq s (org-trim s))
  4506. (when is-body
  4507. (while (string-match "[ \t]*\n[ \t]*" s)
  4508. (setq s (replace-match "\\n" t t s))))
  4509. (if is-body
  4510. (if maxlength
  4511. (if (and (numberp maxlength)
  4512. (> (length s) maxlength))
  4513. (setq s (substring s 0 maxlength)))))
  4514. s))
  4515. (defun org-icalendar-cleanup-string-rfc2455 (s &optional is-body maxlength)
  4516. "Take out stuff and quote what needs to be quoted.
  4517. When IS-BODY is non-nil, assume that this is the body of an item, clean up
  4518. whitespace, newlines, drawers, and timestamps, and cut it down to MAXLENGTH
  4519. characters.
  4520. This seems to be more like RFC 2455, but it causes problems, so it is
  4521. not used right now."
  4522. (if (not s)
  4523. nil
  4524. (if is-body
  4525. (let ((re (concat "\\(" org-drawer-regexp "\\)[^\000]*?:END:.*\n?"))
  4526. (re2 (concat "^[ \t]*" org-keyword-time-regexp ".*\n?")))
  4527. (while (string-match re s) (setq s (replace-match "" t t s)))
  4528. (while (string-match re2 s) (setq s (replace-match "" t t s)))
  4529. (setq s (org-trim s))
  4530. (while (string-match "[ \t]*\n[ \t]*" s)
  4531. (setq s (replace-match "\\n" t t s)))
  4532. (if maxlength
  4533. (if (and (numberp maxlength)
  4534. (> (length s) maxlength))
  4535. (setq s (substring s 0 maxlength)))))
  4536. (setq s (org-trim s)))
  4537. (while (string-match "\"" s) (setq s (replace-match "''" t t s)))
  4538. (when (string-match "[;,:]" s) (setq s (concat "\"" s "\"")))
  4539. s))
  4540. (defun org-get-entry ()
  4541. "Clean-up description string."
  4542. (save-excursion
  4543. (org-back-to-heading t)
  4544. (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
  4545. (defun org-start-icalendar-file (name)
  4546. "Start an iCalendar file by inserting the header."
  4547. (let ((user user-full-name)
  4548. (name (or name "unknown"))
  4549. (timezone (cadr (current-time-zone))))
  4550. (princ
  4551. (format "BEGIN:VCALENDAR
  4552. VERSION:2.0
  4553. X-WR-CALNAME:%s
  4554. PRODID:-//%s//Emacs with Org-mode//EN
  4555. X-WR-TIMEZONE:%s
  4556. CALSCALE:GREGORIAN\n" name user timezone))))
  4557. (defun org-finish-icalendar-file ()
  4558. "Finish an iCalendar file by inserting the END statement."
  4559. (princ "END:VCALENDAR\n"))
  4560. (defun org-ical-ts-to-string (s keyword &optional inc)
  4561. "Take a time string S and convert it to iCalendar format.
  4562. KEYWORD is added in front, to make a complete line like DTSTART....
  4563. When INC is non-nil, increase the hour by two (if time string contains
  4564. a time), or the day by one (if it does not contain a time)."
  4565. (let ((t1 (org-parse-time-string s 'nodefault))
  4566. t2 fmt have-time time)
  4567. (if (and (car t1) (nth 1 t1) (nth 2 t1))
  4568. (setq t2 t1 have-time t)
  4569. (setq t2 (org-parse-time-string s)))
  4570. (let ((s (car t2)) (mi (nth 1 t2)) (h (nth 2 t2))
  4571. (d (nth 3 t2)) (m (nth 4 t2)) (y (nth 5 t2)))
  4572. (when inc
  4573. (if have-time
  4574. (if org-agenda-default-appointment-duration
  4575. (setq mi (+ org-agenda-default-appointment-duration mi))
  4576. (setq h (+ 2 h)))
  4577. (setq d (1+ d))))
  4578. (setq time (encode-time s mi h d m y)))
  4579. (setq fmt (if have-time ":%Y%m%dT%H%M%S" ";VALUE=DATE:%Y%m%d"))
  4580. (concat keyword (format-time-string fmt time))))
  4581. ;;; XOXO export
  4582. (defun org-export-as-xoxo-insert-into (buffer &rest output)
  4583. (with-current-buffer buffer
  4584. (apply 'insert output)))
  4585. (put 'org-export-as-xoxo-insert-into 'lisp-indent-function 1)
  4586. ;;;###autoload
  4587. (defun org-export-as-xoxo (&optional buffer)
  4588. "Export the org buffer as XOXO.
  4589. The XOXO buffer is named *xoxo-<source buffer name>*"
  4590. (interactive (list (current-buffer)))
  4591. ;; A quickie abstraction
  4592. ;; Output everything as XOXO
  4593. (with-current-buffer (get-buffer buffer)
  4594. (let* ((pos (point))
  4595. (opt-plist (org-combine-plists (org-default-export-plist)
  4596. (org-infile-export-plist)))
  4597. (filename (concat (file-name-as-directory
  4598. (org-export-directory :xoxo opt-plist))
  4599. (file-name-sans-extension
  4600. (file-name-nondirectory buffer-file-name))
  4601. ".html"))
  4602. (out (find-file-noselect filename))
  4603. (last-level 1)
  4604. (hanging-li nil))
  4605. (goto-char (point-min)) ;; CD: beginning-of-buffer is not allowed.
  4606. ;; Check the output buffer is empty.
  4607. (with-current-buffer out (erase-buffer))
  4608. ;; Kick off the output
  4609. (org-export-as-xoxo-insert-into out "<ol class='xoxo'>\n")
  4610. (while (re-search-forward "^\\(\\*+\\)[ \t]+\\(.+\\)" (point-max) 't)
  4611. (let* ((hd (match-string-no-properties 1))
  4612. (level (length hd))
  4613. (text (concat
  4614. (match-string-no-properties 2)
  4615. (save-excursion
  4616. (goto-char (match-end 0))
  4617. (let ((str ""))
  4618. (catch 'loop
  4619. (while 't
  4620. (forward-line)
  4621. (if (looking-at "^[ \t]\\(.*\\)")
  4622. (setq str (concat str (match-string-no-properties 1)))
  4623. (throw 'loop str)))))))))
  4624. ;; Handle level rendering
  4625. (cond
  4626. ((> level last-level)
  4627. (org-export-as-xoxo-insert-into out "\n<ol>\n"))
  4628. ((< level last-level)
  4629. (dotimes (- (- last-level level) 1)
  4630. (if hanging-li
  4631. (org-export-as-xoxo-insert-into out "</li>\n"))
  4632. (org-export-as-xoxo-insert-into out "</ol>\n"))
  4633. (when hanging-li
  4634. (org-export-as-xoxo-insert-into out "</li>\n")
  4635. (setq hanging-li nil)))
  4636. ((equal level last-level)
  4637. (if hanging-li
  4638. (org-export-as-xoxo-insert-into out "</li>\n")))
  4639. )
  4640. (setq last-level level)
  4641. ;; And output the new li
  4642. (setq hanging-li 't)
  4643. (if (equal ?+ (elt text 0))
  4644. (org-export-as-xoxo-insert-into out "<li class='" (substring text 1) "'>")
  4645. (org-export-as-xoxo-insert-into out "<li>" text))))
  4646. ;; Finally finish off the ol
  4647. (dotimes (- last-level 1)
  4648. (if hanging-li
  4649. (org-export-as-xoxo-insert-into out "</li>\n"))
  4650. (org-export-as-xoxo-insert-into out "</ol>\n"))
  4651. (goto-char pos)
  4652. ;; Finish the buffer off and clean it up.
  4653. (switch-to-buffer-other-window out)
  4654. (indent-region (point-min) (point-max) nil)
  4655. (save-buffer)
  4656. (goto-char (point-min))
  4657. )))
  4658. (provide 'org-exp)
  4659. ;; arch-tag: 65985fe9-095c-49c7-a7b6-cb4ee15c0a95
  4660. ;;; org-exp.el ends here