org-exp.el 174 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028
  1. ;;; org-exp.el --- ASCII, HTML, XOXO and iCalendar export for Org-mode
  2. ;; Copyright (C) 2004, 2005, 2006, 2007, 2008 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.17a
  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. ;; Find targets in comments and move them out of comments,
  1382. ;; but mark them as targets that should be invisible
  1383. (setq target-alist (org-export-handle-invisible-targets target-alist))
  1384. ;; Protect short examples
  1385. (org-export-protect-colon-examples)
  1386. ;; Protect backend specific stuff, throw away the others.
  1387. (org-export-select-backend-specific-text backend)
  1388. ;; Protect quoted subtrees
  1389. (org-export-protect-quoted-subtrees)
  1390. ;; Protect verbatim elements
  1391. (org-export-protect-verbatim)
  1392. ;; Blockquotes and verse
  1393. (org-export-mark-blockquote-and-verse)
  1394. ;; Attach captions to the correct object
  1395. (setq target-alist (org-export-attach-captions-and-attributes
  1396. backend target-alist))
  1397. ;; Find matches for radio targets and turn them into internal links
  1398. (org-export-mark-radio-links)
  1399. ;; Find all links that contain a newline and put them into a single line
  1400. (org-export-concatenate-multiline-links)
  1401. ;; Normalize links: Convert angle and plain links into bracket links
  1402. ;; and expand link abbreviations
  1403. (org-export-normalize-links)
  1404. ;; Find all internal links. If they have a fuzzy match (i.e. not
  1405. ;; a *dedicated* target match, let the link point to the
  1406. ;; corresponding section.
  1407. (org-export-target-internal-links target-alist)
  1408. ;; Find multiline emphasis and put them into single line
  1409. (when (plist-get parameters :emph-multiline)
  1410. (org-export-concatenate-multiline-emphasis))
  1411. ;; Remove special table lines
  1412. (when org-export-table-remove-special-lines
  1413. (org-export-remove-special-table-lines))
  1414. ;; Another hook
  1415. (run-hooks 'org-export-preprocess-before-backend-specifics-hook)
  1416. ;; Specific LaTeX stuff
  1417. (when latexp
  1418. (require 'org-export-latex nil)
  1419. (org-export-latex-preprocess))
  1420. ;; Specific ASCII stuff
  1421. (when asciip
  1422. (org-export-ascii-preprocess))
  1423. ;; Specific HTML stuff
  1424. (when htmlp
  1425. (org-export-html-preprocess parameters))
  1426. ;; Remove or replace comments
  1427. (org-export-handle-comments (plist-get parameters :comments))
  1428. ;; Run the final hook
  1429. (run-hooks 'org-export-preprocess-final-hook)
  1430. (setq rtn (buffer-string)))
  1431. (kill-buffer " org-mode-tmp")
  1432. rtn))
  1433. (defun org-export-kill-licensed-text ()
  1434. "Remove all text that is marked with a :org-license-to-kill property."
  1435. (let (p q)
  1436. (while (setq p (text-property-any (point-min) (point-max)
  1437. :org-license-to-kill t))
  1438. (delete-region
  1439. p (or (next-single-property-change p :org-license-to-kill)
  1440. (point-max))))))
  1441. (defun org-export-define-heading-targets (target-alist)
  1442. "Find all headings and define the targets for them.
  1443. The new targets are added to TARGET-ALIST, which is also returned."
  1444. (goto-char (point-min))
  1445. (org-init-section-numbers)
  1446. (let ((re (concat "^" org-outline-regexp
  1447. "\\| [ \t]*:ID:[ \t]*\\([^ \t\r\n]+\\)"))
  1448. level target)
  1449. (while (re-search-forward re nil t)
  1450. (if (match-end 1)
  1451. (push (cons (org-match-string-no-properties 1)
  1452. target) target-alist)
  1453. (setq level (org-reduced-level
  1454. (save-excursion (goto-char (point-at-bol))
  1455. (org-outline-level))))
  1456. (setq target (org-solidify-link-text
  1457. (format "sec-%s" (org-section-number level))))
  1458. (push (cons target target) target-alist)
  1459. (add-text-properties
  1460. (point-at-bol) (point-at-eol)
  1461. (list 'target target)))))
  1462. target-alist)
  1463. (defun org-export-handle-invisible-targets (target-alist)
  1464. "Find targets in comments and move them out of comments.
  1465. Mark them as invisible targets."
  1466. (let (target tmp a)
  1467. (goto-char (point-min))
  1468. (while (re-search-forward "^#.*?\\(<<<?\\([^>\r\n]+\\)>>>?\\).*" nil t)
  1469. ;; Check if the line before or after is a headline with a target
  1470. (if (setq target (or (get-text-property (point-at-bol 0) 'target)
  1471. (get-text-property (point-at-bol 2) 'target)))
  1472. (progn
  1473. ;; use the existing target in a neighboring line
  1474. (setq tmp (match-string 2))
  1475. (replace-match "")
  1476. (and (looking-at "\n") (delete-char 1))
  1477. (push (cons (setq tmp (org-solidify-link-text tmp)) target)
  1478. target-alist)
  1479. (setq a (or (assoc target org-export-target-aliases)
  1480. (progn
  1481. (push (list target) org-export-target-aliases)
  1482. (car org-export-target-aliases))))
  1483. (push tmp (cdr a)))
  1484. ;; Make an invisible target
  1485. (replace-match "\\1(INVISIBLE)"))))
  1486. target-alist)
  1487. (defun org-export-target-internal-links (target-alist)
  1488. "Find all internal links and assign targets to them.
  1489. If a link has a fuzzy match (i.e. not a *dedicated* target match),
  1490. let the link point to the corresponding section.
  1491. This function also handles the id links, if they have a match in
  1492. the current file."
  1493. (goto-char (point-min))
  1494. (while (re-search-forward org-bracket-link-regexp nil t)
  1495. (org-if-unprotected
  1496. (let* ((md (match-data))
  1497. (desc (match-end 2))
  1498. (link (org-link-unescape (match-string 1)))
  1499. (slink (org-solidify-link-text link))
  1500. found props pos cref
  1501. (target
  1502. (cond
  1503. ((cdr (assoc slink target-alist)))
  1504. ((and (string-match "^id:" link)
  1505. (cdr (assoc (substring link 3) target-alist))))
  1506. ((string-match "^(\\(.*\\))$" link)
  1507. (setq cref (match-string 1 link))
  1508. (concat "coderef:" cref))
  1509. ((string-match org-link-types-re link) nil)
  1510. ((or (file-name-absolute-p link)
  1511. (string-match "^\\." link))
  1512. nil)
  1513. (t
  1514. (save-excursion
  1515. (setq found (condition-case nil (org-link-search link)
  1516. (error nil)))
  1517. (when (and found
  1518. (or (org-on-heading-p)
  1519. (not (eq found 'dedicated))))
  1520. (or (get-text-property (point) 'target)
  1521. (get-text-property
  1522. (max (point-min)
  1523. (1- (or (previous-single-property-change
  1524. (point) 'target) 0)))
  1525. 'target))))))))
  1526. (when target
  1527. (set-match-data md)
  1528. (goto-char (match-beginning 1))
  1529. (setq props (text-properties-at (point)))
  1530. (delete-region (match-beginning 1) (match-end 1))
  1531. (setq pos (point))
  1532. (insert target)
  1533. (unless desc (insert "][" link))
  1534. (add-text-properties pos (point) props))))))
  1535. (defun org-export-remove-or-extract-drawers (all-drawers exp-drawers)
  1536. "Remove drawers, or extract the content.
  1537. ALL-DRAWERS is a list of all drawer names valid in the current buffer.
  1538. EXP-DRAWERS can be t to keep all drawer contents, or a list of drawers
  1539. whose content to keep."
  1540. (unless (eq t exp-drawers)
  1541. (goto-char (point-min))
  1542. (let ((re (concat "^[ \t]*:\\("
  1543. (mapconcat
  1544. 'identity
  1545. (org-delete-all exp-drawers
  1546. (copy-sequence all-drawers))
  1547. "\\|")
  1548. "\\):[ \t]*\n\\([^@]*?\n\\)?[ \t]*:END:[ \t]*\n")))
  1549. (while (re-search-forward re nil t)
  1550. (replace-match "")))))
  1551. (defun org-export-handle-export-tags (select-tags exclude-tags)
  1552. "Modify the buffer, honoring SELECT-TAGS and EXCLUDE-TAGS.
  1553. Both arguments are lists of tags.
  1554. If any of SELECT-TAGS is found, all trees not marked by a SELECT-TAG
  1555. will be removed.
  1556. After that, all subtrees that are marked by EXCLUDE-TAGS will be
  1557. removed as well."
  1558. (remove-text-properties (point-min) (point-max) '(:org-delete t))
  1559. (let* ((re-sel (concat ":\\(" (mapconcat 'regexp-quote
  1560. select-tags "\\|")
  1561. "\\):"))
  1562. (re-excl (concat ":\\(" (mapconcat 'regexp-quote
  1563. exclude-tags "\\|")
  1564. "\\):"))
  1565. beg end cont)
  1566. (goto-char (point-min))
  1567. (when (and select-tags
  1568. (re-search-forward
  1569. (concat "^\\*+[ \t].*" re-sel "[^ \t\n]*[ \t]*$") nil t))
  1570. ;; At least one tree is marked for export, this means
  1571. ;; all the unmarked stuff needs to go.
  1572. ;; Dig out the trees that should be exported
  1573. (goto-char (point-min))
  1574. (outline-next-heading)
  1575. (setq beg (point))
  1576. (put-text-property beg (point-max) :org-delete t)
  1577. (while (re-search-forward re-sel nil t)
  1578. (when (org-on-heading-p)
  1579. (org-back-to-heading)
  1580. (remove-text-properties
  1581. (max (1- (point)) (point-min))
  1582. (setq cont (save-excursion (org-end-of-subtree t t)))
  1583. '(:org-delete t))
  1584. (while (and (org-up-heading-safe)
  1585. (get-text-property (point) :org-delete))
  1586. (remove-text-properties (max (1- (point)) (point-min))
  1587. (point-at-eol) '(:org-delete t)))
  1588. (goto-char cont))))
  1589. ;; Remove the trees explicitly marked for noexport
  1590. (when exclude-tags
  1591. (goto-char (point-min))
  1592. (while (re-search-forward re-excl nil t)
  1593. (when (org-at-heading-p)
  1594. (org-back-to-heading t)
  1595. (setq beg (point))
  1596. (org-end-of-subtree t)
  1597. (delete-region beg (point)))))
  1598. ;; Remove everything that is now still marked for deletion
  1599. (goto-char (point-min))
  1600. (while (setq beg (text-property-any (point-min) (point-max) :org-delete t))
  1601. (setq end (or (next-single-property-change beg :org-delete)
  1602. (point-max)))
  1603. (delete-region beg end))))
  1604. (defun org-export-remove-archived-trees (export-archived-trees)
  1605. "Remove archived trees.
  1606. When EXPORT-ARCHIVED-TREES is `headline;, only the headline will be exported.
  1607. When it is t, the entire archived tree will be exported.
  1608. When it is nil the entire tree including the headline will be removed
  1609. from the buffer."
  1610. (let ((re-archive (concat ":" org-archive-tag ":"))
  1611. a b)
  1612. (when (not (eq export-archived-trees t))
  1613. (goto-char (point-min))
  1614. (while (re-search-forward re-archive nil t)
  1615. (if (not (org-on-heading-p t))
  1616. (org-end-of-subtree t)
  1617. (beginning-of-line 1)
  1618. (setq a (if export-archived-trees
  1619. (1+ (point-at-eol)) (point))
  1620. b (org-end-of-subtree t))
  1621. (if (> b a) (delete-region a b)))))))
  1622. (defun org-export-remove-headline-metadata (opts)
  1623. "Remove meta data from the headline, according to user options."
  1624. (let ((re org-complex-heading-regexp)
  1625. (todo (plist-get opts :todo-keywords))
  1626. (tags (plist-get opts :tags))
  1627. (pri (plist-get opts :priority))
  1628. (elts '(1 2 3 4 5))
  1629. rpl props)
  1630. (setq elts (delq nil (list 1 (if todo 2) (if pri 3) 4 (if tags 5))))
  1631. (when (or (not todo) (not tags) (not pri))
  1632. (goto-char (point-min))
  1633. (while (re-search-forward re nil t)
  1634. (setq rpl (mapconcat (lambda (i) (if (match-end i) (match-string i) ""))
  1635. elts " "))
  1636. (replace-match rpl t t)))))
  1637. (defun org-export-protect-quoted-subtrees ()
  1638. "Mark quoted subtrees with the protection property."
  1639. (let ((re-quote (concat "^\\*+[ \t]+" org-quote-string "\\>")))
  1640. (goto-char (point-min))
  1641. (while (re-search-forward re-quote nil t)
  1642. (goto-char (match-beginning 0))
  1643. (end-of-line 1)
  1644. (add-text-properties (point) (org-end-of-subtree t)
  1645. '(org-protected t)))))
  1646. (defun org-export-protect-verbatim ()
  1647. "Mark verbatim snippets with the protection property."
  1648. (goto-char (point-min))
  1649. (while (re-search-forward org-verbatim-re nil t)
  1650. (add-text-properties (match-beginning 4) (match-end 4)
  1651. '(org-protected t))
  1652. (goto-char (1+ (match-end 4)))))
  1653. (defun org-export-protect-colon-examples ()
  1654. "Protect lines starting with a colon."
  1655. (goto-char (point-min))
  1656. (while (re-search-forward "^[ \t]*:.*\\(\n[ \t]*:.*\\)*" nil t)
  1657. (add-text-properties (match-beginning 0) (match-end 0)
  1658. '(org-protected t))))
  1659. (defun org-export-select-backend-specific-text (backend)
  1660. (let ((formatters
  1661. '((html "HTML" "BEGIN_HTML" "END_HTML")
  1662. (ascii "ASCII" "BEGIN_ASCII" "END_ASCII")
  1663. (latex "LaTeX" "BEGIN_LaTeX" "END_LaTeX")))
  1664. (case-fold-search t)
  1665. fmt)
  1666. (while formatters
  1667. (setq fmt (pop formatters))
  1668. (when (eq (car fmt) backend)
  1669. ;; This is selected code, put it into the file for real
  1670. (goto-char (point-min))
  1671. (while (re-search-forward (concat "^#\\+" (cadr fmt)
  1672. ":[ \t]*\\(.*\\)") nil t)
  1673. (replace-match "\\1" t)
  1674. (add-text-properties
  1675. (point-at-bol) (min (1+ (point-at-eol)) (point-max))
  1676. '(org-protected t))))
  1677. (goto-char (point-min))
  1678. (while (re-search-forward
  1679. (concat "^#\\+"
  1680. (caddr fmt) "\\>.*\\(\\(\n.*\\)*?\n\\)#\\+"
  1681. (cadddr fmt) "\\>.*\n?") nil t)
  1682. (if (eq (car fmt) backend)
  1683. ;; yes, keep this
  1684. (add-text-properties (match-beginning 1) (1+ (match-end 1))
  1685. '(org-protected t))
  1686. ;; No, this is for a different backend, kill it
  1687. (delete-region (match-beginning 0) (match-end 0)))))))
  1688. (defun org-export-mark-blockquote-and-verse ()
  1689. "Mark block quote and verse environments with special cookies.
  1690. These special cookies will later be interpreted by the backend."
  1691. ;; Blockquotes
  1692. (goto-char (point-min))
  1693. (while (re-search-forward "^#\\+\\(begin\\|end\\)_\\(block\\)?quote\\>.*"
  1694. nil t)
  1695. (replace-match (if (equal (downcase (match-string 1)) "end")
  1696. "ORG-BLOCKQUOTE-END" "ORG-BLOCKQUOTE-START")
  1697. t t))
  1698. ;; Verse
  1699. (goto-char (point-min))
  1700. (while (re-search-forward "^#\\+\\(begin\\|end\\)_verse\\>.*" nil t)
  1701. (replace-match (if (equal (downcase (match-string 1)) "end")
  1702. "ORG-VERSE-END" "ORG-VERSE-START")
  1703. t t)))
  1704. (defun org-export-attach-captions-and-attributes (backend target-alist)
  1705. "Move #+CAPTION, #+ATTR_BACKEND, and #+LABEL text into text properties.
  1706. If the next thing following is a table, add the text properties to the first
  1707. table line. If it is a link, add it to the line containing the link."
  1708. (goto-char (point-min))
  1709. (remove-text-properties (point-min) (point-max)
  1710. '(org-caption nil org-attributes nil))
  1711. (let ((case-fold-search t)
  1712. (re (concat "^#\\+caption:[ \t]+\\(.*\\)"
  1713. "\\|"
  1714. "^#\\+attr_" (symbol-name backend) ":[ \t]+\\(.*\\)"
  1715. "\\|"
  1716. "^#\\+label:[ \t]+\\(.*\\)"
  1717. "\\|"
  1718. "^[ \t]*|[^-]"
  1719. "\\|"
  1720. "^[ \t]*\\[\\[.*\\]\\][ \t]*$"))
  1721. cap attr label)
  1722. (while (re-search-forward re nil t)
  1723. (cond
  1724. ((match-end 1)
  1725. (setq cap (concat cap (if cap " " "") (org-trim (match-string 1)))))
  1726. ((match-end 2)
  1727. (setq attr (concat attr (if attr " " "") (org-trim (match-string 2)))))
  1728. ((match-end 3)
  1729. (setq label (org-trim (match-string 3))))
  1730. (t
  1731. (add-text-properties (point-at-bol) (point-at-eol)
  1732. (list 'org-caption cap
  1733. 'org-attributes attr
  1734. 'org-label label))
  1735. (if label (push (cons label label) target-alist))
  1736. (setq cap nil attr nil label nil)))))
  1737. target-alist)
  1738. (defun org-export-remove-comment-blocks-and-subtrees ()
  1739. "Remove the comment environment, and also commented subtrees."
  1740. (let ((re-commented (concat "^\\*+[ \t]+" org-comment-string "\\>"))
  1741. (case-fold-search nil))
  1742. ;; Remove comment environment
  1743. (goto-char (point-min))
  1744. (while (re-search-forward
  1745. "^#\\+BEGIN_COMMENT[ \t]*\n[^\000]*?^#\\+END_COMMENT\\>.*" nil t)
  1746. (replace-match "" t t))
  1747. ;; Remove subtrees that are commented
  1748. (goto-char (point-min))
  1749. (while (re-search-forward re-commented nil t)
  1750. (goto-char (match-beginning 0))
  1751. (delete-region (point) (org-end-of-subtree t)))))
  1752. (defun org-export-handle-comments (commentsp)
  1753. "Remove comments, or convert to backend-specific format.
  1754. COMMENTSP can be a format string for publishing comments.
  1755. When it is nil, all comments will be removed."
  1756. (let ((re "^#\\(.*\n?\\)")
  1757. pos)
  1758. (goto-char (point-min))
  1759. (while (or (looking-at re)
  1760. (re-search-forward re nil t))
  1761. (setq pos (match-beginning 0))
  1762. (if commentsp
  1763. (progn (add-text-properties
  1764. (match-beginning 0) (match-end 0) '(org-protected t))
  1765. (replace-match (format commentsp (match-string 1)) t t))
  1766. (goto-char (1+ pos))
  1767. (org-if-unprotected
  1768. (replace-match "")
  1769. (goto-char (max (point-min) (1- pos))))))))
  1770. (defun org-export-mark-radio-links ()
  1771. "Find all matches for radio targets and turn them into internal links."
  1772. (let ((re-radio (and org-target-link-regexp
  1773. (concat "\\([^<]\\)\\(" org-target-link-regexp "\\)"))))
  1774. (goto-char (point-min))
  1775. (when re-radio
  1776. (while (re-search-forward re-radio nil t)
  1777. (org-if-unprotected
  1778. (replace-match "\\1[[\\2]]"))))))
  1779. (defun org-export-remove-special-table-lines ()
  1780. "Remove tables lines that are used for internal purposes."
  1781. (goto-char (point-min))
  1782. (while (re-search-forward "^[ \t]*|" nil t)
  1783. (beginning-of-line 1)
  1784. (if (or (looking-at "[ \t]*| *[!_^] *|")
  1785. (and (looking-at ".*?| *<[0-9]+> *|")
  1786. (not (looking-at ".*?| *[^ <|]"))))
  1787. (delete-region (max (point-min) (1- (point-at-bol)))
  1788. (point-at-eol))
  1789. (end-of-line 1))))
  1790. (defun org-export-normalize-links ()
  1791. "Convert all links to bracket links, and expand link abbreviations."
  1792. (let ((re-plain-link (concat "\\([^[<]\\)" org-plain-link-re))
  1793. (re-angle-link (concat "\\([^[]\\)" org-angle-link-re)))
  1794. (goto-char (point-min))
  1795. (while (re-search-forward re-plain-link nil t)
  1796. (goto-char (1- (match-end 0)))
  1797. (org-if-unprotected
  1798. (let* ((s (concat (match-string 1) "[[" (match-string 2)
  1799. ":" (match-string 3) "]]")))
  1800. ;; added 'org-link face to links
  1801. (put-text-property 0 (length s) 'face 'org-link s)
  1802. (replace-match s t t))))
  1803. (goto-char (point-min))
  1804. (while (re-search-forward re-angle-link nil t)
  1805. (goto-char (1- (match-end 0)))
  1806. (org-if-unprotected
  1807. (let* ((s (concat (match-string 1) "[[" (match-string 2)
  1808. ":" (match-string 3) "]]")))
  1809. (put-text-property 0 (length s) 'face 'org-link s)
  1810. (replace-match s t t))))
  1811. (goto-char (point-min))
  1812. (while (re-search-forward org-bracket-link-regexp nil t)
  1813. (goto-char (1- (match-end 0)))
  1814. (org-if-unprotected
  1815. (let* ((xx (save-match-data
  1816. (org-translate-link
  1817. (org-link-expand-abbrev (match-string 1)))))
  1818. (s (concat
  1819. "[[" xx "]"
  1820. (if (match-end 3)
  1821. (match-string 2)
  1822. (concat "[" xx "]"))
  1823. "]")))
  1824. (put-text-property 0 (length s) 'face 'org-link s)
  1825. (replace-match s t t))))))
  1826. (defun org-export-concatenate-multiline-links ()
  1827. "Find multi-line links and put it all into a single line.
  1828. This is to make sure that the line-processing export backends
  1829. can work correctly."
  1830. (goto-char (point-min))
  1831. (while (re-search-forward "\\(\\(\\[\\|\\]\\)\\[[^]]*?\\)[ \t]*\n[ \t]*\\([^]]*\\]\\(\\[\\|\\]\\)\\)" nil t)
  1832. (org-if-unprotected
  1833. (replace-match "\\1 \\3")
  1834. (goto-char (match-beginning 0)))))
  1835. (defun org-export-concatenate-multiline-emphasis ()
  1836. "Find multi-line emphasis and put it all into a single line.
  1837. This is to make sure that the line-processing export backends
  1838. can work correctly."
  1839. (goto-char (point-min))
  1840. (while (re-search-forward org-emph-re nil t)
  1841. (if (not (= (char-after (match-beginning 3))
  1842. (char-after (match-beginning 4))))
  1843. (org-if-unprotected
  1844. (subst-char-in-region (match-beginning 0) (match-end 0)
  1845. ?\n ?\ t)
  1846. (goto-char (1- (match-end 0))))
  1847. (goto-char (1+ (match-beginning 0))))))
  1848. (defun org-export-grab-title-from-buffer ()
  1849. "Get a title for the current document, from looking at the buffer."
  1850. (let ((inhibit-read-only t))
  1851. (save-excursion
  1852. (goto-char (point-min))
  1853. (let ((end (if (looking-at org-outline-regexp)
  1854. (point)
  1855. (save-excursion (outline-next-heading) (point)))))
  1856. (when (re-search-forward "^[ \t]*[^|# \t\r\n].*\n" end t)
  1857. ;; Mark the line so that it will not be exported as normal text.
  1858. (org-unmodified
  1859. (add-text-properties (match-beginning 0) (match-end 0)
  1860. (list :org-license-to-kill t)))
  1861. ;; Return the title string
  1862. (org-trim (match-string 0)))))))
  1863. (defun org-export-get-title-from-subtree ()
  1864. "Return subtree title and exclude it from export."
  1865. (let (title (m (mark)) (rbeg (region-beginning)) (rend (region-end)))
  1866. (save-excursion
  1867. (goto-char rbeg)
  1868. (when (and (org-at-heading-p)
  1869. (>= (org-end-of-subtree t t) rend))
  1870. ;; This is a subtree, we take the title from the first heading
  1871. (goto-char rbeg)
  1872. (looking-at org-todo-line-regexp)
  1873. (setq title (match-string 3))
  1874. (org-unmodified
  1875. (add-text-properties (point) (1+ (point-at-eol))
  1876. (list :org-license-to-kill t)))
  1877. (setq title (or (org-entry-get nil "EXPORT_TITLE") title))))
  1878. title))
  1879. (defun org-solidify-link-text (s &optional alist)
  1880. "Take link text and make a safe target out of it."
  1881. (save-match-data
  1882. (let* ((rtn
  1883. (mapconcat
  1884. 'identity
  1885. (org-split-string s "[ \t\r\n]+") "=="))
  1886. (a (assoc rtn alist)))
  1887. (or (cdr a) rtn))))
  1888. (defun org-get-min-level (lines)
  1889. "Get the minimum level in LINES."
  1890. (let ((re "^\\(\\*+\\) ") l min)
  1891. (catch 'exit
  1892. (while (setq l (pop lines))
  1893. (if (string-match re l)
  1894. (throw 'exit (org-tr-level (length (match-string 1 l))))))
  1895. 1)))
  1896. ;; Variable holding the vector with section numbers
  1897. (defvar org-section-numbers (make-vector org-level-max 0))
  1898. (defun org-init-section-numbers ()
  1899. "Initialize the vector for the section numbers."
  1900. (let* ((level -1)
  1901. (numbers (nreverse (org-split-string "" "\\.")))
  1902. (depth (1- (length org-section-numbers)))
  1903. (i depth) number-string)
  1904. (while (>= i 0)
  1905. (if (> i level)
  1906. (aset org-section-numbers i 0)
  1907. (setq number-string (or (car numbers) "0"))
  1908. (if (string-match "\\`[A-Z]\\'" number-string)
  1909. (aset org-section-numbers i
  1910. (- (string-to-char number-string) ?A -1))
  1911. (aset org-section-numbers i (string-to-number number-string)))
  1912. (pop numbers))
  1913. (setq i (1- i)))))
  1914. (defun org-section-number (&optional level)
  1915. "Return a string with the current section number.
  1916. When LEVEL is non-nil, increase section numbers on that level."
  1917. (let* ((depth (1- (length org-section-numbers)))
  1918. (string "")
  1919. (fmts (car org-export-section-number-format))
  1920. (term (cdr org-export-section-number-format))
  1921. (sep "")
  1922. ctype fmt idx n)
  1923. (when level
  1924. (when (> level -1)
  1925. (aset org-section-numbers
  1926. level (1+ (aref org-section-numbers level))))
  1927. (setq idx (1+ level))
  1928. (while (<= idx depth)
  1929. (if (not (= idx 1))
  1930. (aset org-section-numbers idx 0))
  1931. (setq idx (1+ idx))))
  1932. (setq idx 0)
  1933. (while (<= idx depth)
  1934. (when (> (aref org-section-numbers idx) 0)
  1935. (setq fmt (or (pop fmts) fmt)
  1936. ctype (car fmt)
  1937. n (aref org-section-numbers idx)
  1938. string (if (> n 0)
  1939. (concat string sep (org-number-to-counter n ctype))
  1940. (concat string ".0"))
  1941. sep (nth 1 fmt)))
  1942. (setq idx (1+ idx)))
  1943. (save-match-data
  1944. (if (string-match "\\`\\([@0]\\.\\)+" string)
  1945. (setq string (replace-match "" t nil string)))
  1946. (if (string-match "\\(\\.0\\)+\\'" string)
  1947. (setq string (replace-match "" t nil string))))
  1948. (concat string term)))
  1949. (defun org-number-to-counter (n type)
  1950. "Concert number N to a string counter, according to TYPE.
  1951. TYPE must be a string, any of:
  1952. 1 number
  1953. A A,B,....
  1954. a a,b,....
  1955. I upper case roman numeral
  1956. i lower case roman numeral"
  1957. (cond
  1958. ((equal type "1") (number-to-string n))
  1959. ((equal type "A") (char-to-string (+ ?A n -1)))
  1960. ((equal type "a") (char-to-string (+ ?a n -1)))
  1961. ((equal type "I") (org-number-to-roman n))
  1962. ((equal type "i") (downcase (org-number-to-roman n)))
  1963. (t (error "Invalid counter type `%s'" type))))
  1964. (defun org-number-to-roman (n)
  1965. "Convert integer N into a roman numeral."
  1966. (let ((roman '((1000 . "M") (900 . "CM") (500 . "D") (400 . "CD")
  1967. ( 100 . "C") ( 90 . "XC") ( 50 . "L") ( 40 . "XL")
  1968. ( 10 . "X") ( 9 . "IX") ( 5 . "V") ( 4 . "IV")
  1969. ( 1 . "I")))
  1970. (res ""))
  1971. (if (<= n 0)
  1972. (number-to-string n)
  1973. (while roman
  1974. (if (>= n (caar roman))
  1975. (setq n (- n (caar roman))
  1976. res (concat res (cdar roman)))
  1977. (pop roman)))
  1978. res)))
  1979. (org-number-to-roman 1961)
  1980. ;;; Include files
  1981. (defun org-export-handle-include-files ()
  1982. "Include the contents of include files, with proper formatting."
  1983. (let ((case-fold-search t)
  1984. params file markup lang start end prefix prefix1)
  1985. (goto-char (point-min))
  1986. (while (re-search-forward "^#\\+INCLUDE:?[ \t]+\\(.*\\)" nil t)
  1987. (setq params (read (concat "(" (match-string 1) ")"))
  1988. prefix (org-get-and-remove-property 'params :prefix)
  1989. prefix1 (org-get-and-remove-property 'params :prefix1)
  1990. file (org-symname-or-string (pop params))
  1991. markup (org-symname-or-string (pop params))
  1992. lang (org-symname-or-string (pop params)))
  1993. (delete-region (match-beginning 0) (match-end 0))
  1994. (if (or (not file)
  1995. (not (file-exists-p file))
  1996. (not (file-readable-p file)))
  1997. (insert (format "CANNOT INCLUDE FILE %s" file))
  1998. (when markup
  1999. (if (equal (downcase markup) "src")
  2000. (setq start (format "#+begin_src %s\n" (or lang "fundamental"))
  2001. end "#+end_src")
  2002. (setq start (format "#+begin_%s\n" markup)
  2003. end (format "#+end_%s" markup))))
  2004. (insert (or start ""))
  2005. (insert (org-get-file-contents (expand-file-name file) prefix prefix1))
  2006. (or (bolp) (newline))
  2007. (insert (or end ""))))))
  2008. (defun org-get-file-contents (file &optional prefix prefix1)
  2009. "Get the contents of FILE and return them as a string.
  2010. If PREFIX is a string, prepend it to each line. If PREFIX1
  2011. is a string, prepend it to the first line instead of PREFIX."
  2012. (with-temp-buffer
  2013. (insert-file-contents file)
  2014. (when (or prefix prefix1)
  2015. (goto-char (point-min))
  2016. (while (not (eobp))
  2017. (insert (or prefix1 prefix))
  2018. (setq prefix1 nil)
  2019. (beginning-of-line 2)))
  2020. (buffer-string)))
  2021. (defun org-get-and-remove-property (listvar prop)
  2022. "Check if the value of LISTVAR contains PROP as a property.
  2023. If yes, return the value of that property (i.e. the element following
  2024. in the list) and remove property and value from the list in LISTVAR."
  2025. (let ((list (symbol-value listvar)) m v)
  2026. (when (setq m (member prop list))
  2027. (setq v (nth 1 m))
  2028. (if (equal (car list) prop)
  2029. (set listvar (cddr list))
  2030. (setcdr (nthcdr (- (length list) (length m) 1) list)
  2031. (cddr m))
  2032. (set listvar list)))
  2033. v))
  2034. (defun org-symname-or-string (s)
  2035. (if (symbolp s)
  2036. (if s (symbol-name s) s)
  2037. s))
  2038. ;;; Fontification and line numbers for code examples
  2039. (defvar org-export-last-code-line-counter-value 0)
  2040. (defun org-export-replace-src-segments-and-examples (backend)
  2041. "Replace source code segments with special code for export."
  2042. (setq org-export-last-code-line-counter-value 0)
  2043. (let ((case-fold-search t)
  2044. lang code trans opts)
  2045. (goto-char (point-min))
  2046. (while (re-search-forward
  2047. "\\(^#\\+BEGIN_SRC:?[ \t]+\\([^ \t\n]+\\)\\(.*\\)\n\\([^\000]+?\n\\)#\\+END_SRC.*\\)\\|\\(^#\\+BEGIN_EXAMPLE:?\\(?:[ \t]+\\(.*\\)\\)?\n\\([^\000]+?\n\\)#\\+END_EXAMPLE.*\\)"
  2048. nil t)
  2049. (if (match-end 1)
  2050. ;; src segments
  2051. (setq lang (match-string 2)
  2052. opts (match-string 3)
  2053. code (match-string 4))
  2054. (setq lang nil
  2055. opts (match-string 6)
  2056. code (match-string 7)))
  2057. (setq trans (org-export-format-source-code-or-example
  2058. backend lang code opts))
  2059. (replace-match trans t t))))
  2060. (defvar htmlp) ;; dynamically scoped
  2061. (defvar latexp) ;; dynamically scoped
  2062. (defun org-export-format-source-code-or-example (backend
  2063. lang code &optional opts)
  2064. "Format CODE from language LANG and return it formatted for export.
  2065. If LANG is nil, do not add any fontification.
  2066. OPTS contains formatting optons, like `-n' for triggering numbering lines,
  2067. and `+n' for continuing previous numering.
  2068. Code formatting according to language currently only works for HTML.
  2069. Numbering lines works for all three major backends (html, latex, and ascii)."
  2070. (save-match-data
  2071. (let (num cont rtn named rpllbl keepp fmt)
  2072. (setq opts (or opts "")
  2073. num (string-match "[-+]n\\>" opts)
  2074. cont (string-match "\\+n\\>" opts)
  2075. rpllbl (string-match "-r\\>" opts)
  2076. keepp (string-match "-k\\>" opts)
  2077. fmt (if (string-match "-l[ \t]+\"\\([^\"\n]+\\)\"" opts)
  2078. (match-string 1 opts)))
  2079. (if keepp (setq rpllbl 'keep))
  2080. (setq rtn code)
  2081. (when (equal lang "org")
  2082. (setq rtn (with-temp-buffer
  2083. (insert rtn)
  2084. ;; Free up the protected lines
  2085. (goto-char (point-min))
  2086. (while (re-search-forward "^," nil t)
  2087. (replace-match "")
  2088. (end-of-line 1))
  2089. (buffer-string))))
  2090. ;; Now backend-specific coding
  2091. (cond
  2092. ((eq backend 'html)
  2093. ;; We are exporting to HTML
  2094. (when lang
  2095. (require 'htmlize nil t)
  2096. (when (not (fboundp 'htmlize-region-for-paste))
  2097. ;; we do not have htmlize.el, or an old version of it
  2098. (message
  2099. "htmlize.el 1.34 or later is needed for source code formatting")))
  2100. (if lang
  2101. (let* ((mode (and lang (intern (concat lang "-mode"))))
  2102. (org-inhibit-startup t)
  2103. (org-startup-folded nil))
  2104. (setq rtn
  2105. (with-temp-buffer
  2106. (insert rtn)
  2107. (if (functionp mode)
  2108. (funcall mode)
  2109. (fundamental-mode))
  2110. (font-lock-fontify-buffer)
  2111. (org-export-htmlize-region-for-paste
  2112. (point-min) (point-max))))
  2113. (if (string-match "<pre\\([^>]*\\)>\n?" rtn)
  2114. (setq rtn (replace-match
  2115. (format "<pre class=\"src src-%s\">\n" lang)
  2116. t t rtn))))
  2117. (setq rtn (concat "<pre class=\"example\">\n" rtn "</pre>\n")))
  2118. (setq rtn (org-export-number-lines rtn 'html 1 1 num cont rpllbl fmt))
  2119. (concat "\n#+BEGIN_HTML\n" rtn "\n#+END_HTML\n\n"))
  2120. ((eq backend 'latex)
  2121. (setq rtn (org-export-number-lines rtn 'latex 0 0 num cont rpllbl fmt))
  2122. (concat "\n#+BEGIN_LaTeX\n\\begin{verbatim}\n" rtn
  2123. "\n\\end{verbatim}\n#+END_LaTeX\n\n"))
  2124. ((eq backend 'ascii)
  2125. ;; This is not HTML or LaTeX, so just make it an example.
  2126. (setq rtn (org-export-number-lines rtn 'ascii 0 0 num cont rpllbl fmt))
  2127. (concat "#+BEGIN_ASCII\n"
  2128. (mapconcat
  2129. (lambda (l) (concat " " l))
  2130. (org-split-string rtn "\n")
  2131. "\n")
  2132. "\n#+END_ASCII\n"))))))
  2133. (defun org-export-number-lines (text backend
  2134. &optional skip1 skip2 number cont
  2135. replace-labels label-format)
  2136. (if (and (not number) (not (eq replace-labels 'keep)))
  2137. (setq replace-labels nil)) ;; must use names if no numbers
  2138. (setq skip1 (or skip1 0) skip2 (or skip2 0))
  2139. (if (not cont) (setq org-export-last-code-line-counter-value 0))
  2140. (with-temp-buffer
  2141. (insert text)
  2142. (goto-char (point-max))
  2143. (skip-chars-backward " \t\n\r")
  2144. (delete-region (point) (point-max))
  2145. (beginning-of-line (- 1 skip2))
  2146. (let* ((last (org-current-line))
  2147. (n org-export-last-code-line-counter-value)
  2148. (nmax (+ n (- last skip1)))
  2149. (fmt (format "%%%dd: " (length (number-to-string nmax))))
  2150. (fm
  2151. (cond
  2152. ((eq backend 'html) (format "<span class=\"linenr\">%s</span>"
  2153. fmt))
  2154. ((eq backend 'ascii) fmt)
  2155. ((eq backend 'latex) fmt)
  2156. (t "")))
  2157. (label-format (or label-format org-coderef-label-format))
  2158. (label-pre (if (string-match "%s" label-format)
  2159. (substring label-format 0 (match-beginning 0))
  2160. label-format))
  2161. (label-post (if (string-match "%s" label-format)
  2162. (substring label-format (match-end 0))
  2163. ""))
  2164. (lbl-re
  2165. (concat
  2166. ".*?\\S-.*?\\([ \t]*\\("
  2167. (regexp-quote label-pre)
  2168. "\\([-a-zA-Z0-9_]+\\)"
  2169. (regexp-quote label-post)
  2170. "\\)\\)"))
  2171. ref)
  2172. (goto-line (1+ skip1))
  2173. (while (and (re-search-forward "^" nil t) (not (eobp)) (< n nmax))
  2174. (if number
  2175. (insert (format fm (incf n)))
  2176. (forward-char 1))
  2177. (when (and (not (eq replace-labels 'keep))
  2178. (looking-at lbl-re))
  2179. (setq ref (match-string 3))
  2180. (if replace-labels
  2181. (progn
  2182. (delete-region (match-beginning 1) (match-end 1))
  2183. (push (cons ref n) org-export-code-refs))
  2184. (goto-char (match-beginning 2))
  2185. (delete-region (match-beginning 2) (match-end 2))
  2186. (insert "(" ref ")")
  2187. (push (cons ref (concat "(" ref ")")) org-export-code-refs))
  2188. (when (eq backend 'html)
  2189. (save-excursion
  2190. (beginning-of-line 1)
  2191. (insert (format "<span id=\"coderef-%s\" class=\"coderef-off\">"
  2192. ref))
  2193. (end-of-line 1)
  2194. (insert "</span>")))))
  2195. (setq org-export-last-code-line-counter-value n)
  2196. (goto-char (point-max))
  2197. (newline)
  2198. (buffer-string))))
  2199. ;;; ASCII export
  2200. (defvar org-last-level nil) ; dynamically scoped variable
  2201. (defvar org-min-level nil) ; dynamically scoped variable
  2202. (defvar org-levels-open nil) ; dynamically scoped parameter
  2203. (defvar org-ascii-current-indentation nil) ; For communication
  2204. ;;;###autoload
  2205. (defun org-export-as-ascii (arg)
  2206. "Export the outline as a pretty ASCII file.
  2207. If there is an active region, export only the region.
  2208. The prefix ARG specifies how many levels of the outline should become
  2209. underlined headlines. The default is 3."
  2210. (interactive "P")
  2211. (setq-default org-todo-line-regexp org-todo-line-regexp)
  2212. (let* ((opt-plist (org-combine-plists (org-default-export-plist)
  2213. (org-infile-export-plist)))
  2214. (region-p (org-region-active-p))
  2215. (rbeg (and region-p (region-beginning)))
  2216. (rend (and region-p (region-end)))
  2217. (subtree-p
  2218. (when region-p
  2219. (save-excursion
  2220. (goto-char rbeg)
  2221. (and (org-at-heading-p)
  2222. (>= (org-end-of-subtree t t) rend)))))
  2223. (opt-plist (if subtree-p
  2224. (org-export-add-subtree-options opt-plist rbeg)
  2225. opt-plist))
  2226. (custom-times org-display-custom-times)
  2227. (org-ascii-current-indentation '(0 . 0))
  2228. (level 0) line txt
  2229. (umax nil)
  2230. (umax-toc nil)
  2231. (case-fold-search nil)
  2232. (bfname (buffer-file-name (or (buffer-base-buffer) (current-buffer))))
  2233. (filename (concat (file-name-as-directory
  2234. (org-export-directory :ascii opt-plist))
  2235. (file-name-sans-extension
  2236. (or (and subtree-p
  2237. (org-entry-get (region-beginning)
  2238. "EXPORT_FILE_NAME" t))
  2239. (file-name-nondirectory bfname)))
  2240. ".txt"))
  2241. (filename (if (equal (file-truename filename)
  2242. (file-truename bfname))
  2243. (concat filename ".txt")
  2244. filename))
  2245. (buffer (find-file-noselect filename))
  2246. (org-levels-open (make-vector org-level-max nil))
  2247. (odd org-odd-levels-only)
  2248. (date (plist-get opt-plist :date))
  2249. (author (plist-get opt-plist :author))
  2250. (title (or (and subtree-p (org-export-get-title-from-subtree))
  2251. (plist-get opt-plist :title)
  2252. (and (not
  2253. (plist-get opt-plist :skip-before-1st-heading))
  2254. (org-export-grab-title-from-buffer))
  2255. (file-name-sans-extension
  2256. (file-name-nondirectory bfname))))
  2257. (email (plist-get opt-plist :email))
  2258. (language (plist-get opt-plist :language))
  2259. (quote-re0 (concat "^[ \t]*" org-quote-string "\\>"))
  2260. ; (quote-re (concat "^\\(\\*+\\)\\([ \t]*" org-quote-string "\\>\\)"))
  2261. (todo nil)
  2262. (lang-words nil)
  2263. (region
  2264. (buffer-substring
  2265. (if (org-region-active-p) (region-beginning) (point-min))
  2266. (if (org-region-active-p) (region-end) (point-max))))
  2267. (lines (org-split-string
  2268. (org-export-preprocess-string
  2269. region
  2270. :for-ascii t
  2271. :skip-before-1st-heading
  2272. (plist-get opt-plist :skip-before-1st-heading)
  2273. :drawers (plist-get opt-plist :drawers)
  2274. :tags (plist-get opt-plist :tags)
  2275. :priority (plist-get opt-plist :priority)
  2276. :footnotes (plist-get opt-plist :footnotes)
  2277. :todo-keywords (plist-get opt-plist :todo-keywords)
  2278. :verbatim-multiline t
  2279. :select-tags (plist-get opt-plist :select-tags)
  2280. :exclude-tags (plist-get opt-plist :exclude-tags)
  2281. :archived-trees
  2282. (plist-get opt-plist :archived-trees)
  2283. :add-text (plist-get opt-plist :text))
  2284. "\n"))
  2285. thetoc have-headings first-heading-pos
  2286. table-open table-buffer link desc)
  2287. (let ((inhibit-read-only t))
  2288. (org-unmodified
  2289. (remove-text-properties (point-min) (point-max)
  2290. '(:org-license-to-kill t))))
  2291. (setq org-min-level (org-get-min-level lines))
  2292. (setq org-last-level org-min-level)
  2293. (org-init-section-numbers)
  2294. (find-file-noselect filename)
  2295. (setq lang-words (or (assoc language org-export-language-setup)
  2296. (assoc "en" org-export-language-setup)))
  2297. (switch-to-buffer-other-window buffer)
  2298. (erase-buffer)
  2299. (fundamental-mode)
  2300. ;; create local variables for all options, to make sure all called
  2301. ;; functions get the correct information
  2302. (mapc (lambda (x)
  2303. (set (make-local-variable (nth 2 x))
  2304. (plist-get opt-plist (car x))))
  2305. org-export-plist-vars)
  2306. (org-set-local 'org-odd-levels-only odd)
  2307. (setq umax (if arg (prefix-numeric-value arg)
  2308. org-export-headline-levels))
  2309. (setq umax-toc (if (integerp org-export-with-toc)
  2310. (min org-export-with-toc umax)
  2311. umax))
  2312. ;; File header
  2313. (if title (org-insert-centered title ?=))
  2314. (insert "\n")
  2315. (if (and (or author email)
  2316. org-export-author-info)
  2317. (insert (concat (nth 1 lang-words) ": " (or author "")
  2318. (if email (concat " <" email ">") "")
  2319. "\n")))
  2320. (cond
  2321. ((and date (string-match "%" date))
  2322. (setq date (format-time-string date)))
  2323. (date)
  2324. (t (setq date (format-time-string "%Y-%m-%d %T %Z"))))
  2325. (if (and date org-export-time-stamp-file)
  2326. (insert (concat (nth 2 lang-words) ": " date"\n")))
  2327. (insert "\n\n")
  2328. (if org-export-with-toc
  2329. (progn
  2330. (push (concat (nth 3 lang-words) "\n") thetoc)
  2331. (push (concat (make-string (string-width (nth 3 lang-words)) ?=)
  2332. "\n") thetoc)
  2333. (mapc '(lambda (line)
  2334. (if (string-match org-todo-line-regexp
  2335. line)
  2336. ;; This is a headline
  2337. (progn
  2338. (setq have-headings t)
  2339. (setq level (- (match-end 1) (match-beginning 1))
  2340. level (org-tr-level level)
  2341. txt (match-string 3 line)
  2342. todo
  2343. (or (and org-export-mark-todo-in-toc
  2344. (match-beginning 2)
  2345. (not (member (match-string 2 line)
  2346. org-done-keywords)))
  2347. ; TODO, not DONE
  2348. (and org-export-mark-todo-in-toc
  2349. (= level umax-toc)
  2350. (org-search-todo-below
  2351. line lines level))))
  2352. (setq txt (org-html-expand-for-ascii txt))
  2353. (while (string-match org-bracket-link-regexp txt)
  2354. (setq txt
  2355. (replace-match
  2356. (match-string (if (match-end 2) 3 1) txt)
  2357. t t txt)))
  2358. (if (and (memq org-export-with-tags '(not-in-toc nil))
  2359. (string-match
  2360. (org-re "[ \t]+:[[:alnum:]_@:]+:[ \t]*$")
  2361. txt))
  2362. (setq txt (replace-match "" t t txt)))
  2363. (if (string-match quote-re0 txt)
  2364. (setq txt (replace-match "" t t txt)))
  2365. (if org-export-with-section-numbers
  2366. (setq txt (concat (org-section-number level)
  2367. " " txt)))
  2368. (if (<= level umax-toc)
  2369. (progn
  2370. (push
  2371. (concat
  2372. (make-string
  2373. (* (max 0 (- level org-min-level)) 4) ?\ )
  2374. (format (if todo "%s (*)\n" "%s\n") txt))
  2375. thetoc)
  2376. (setq org-last-level level))
  2377. ))))
  2378. lines)
  2379. (setq thetoc (if have-headings (nreverse thetoc) nil))))
  2380. (org-init-section-numbers)
  2381. (while (setq line (pop lines))
  2382. ;; Remove the quoted HTML tags.
  2383. (setq line (org-html-expand-for-ascii line))
  2384. ;; Replace links with the description when possible
  2385. (while (string-match org-bracket-link-regexp line)
  2386. (setq link (match-string 1 line)
  2387. desc (match-string (if (match-end 3) 3 1) line))
  2388. (if (and (> (length link) 8)
  2389. (equal (substring link 0 8) "coderef:"))
  2390. (setq line (replace-match
  2391. (format (org-export-get-coderef-format (substring link 8) desc)
  2392. (cdr (assoc
  2393. (substring link 8)
  2394. org-export-code-refs)))
  2395. t t line))
  2396. (setq line (replace-match
  2397. (if (match-end 3) "[\\3]" "[\\1]")
  2398. t nil line))))
  2399. (when custom-times
  2400. (setq line (org-translate-time line)))
  2401. (cond
  2402. ((string-match "^\\(\\*+\\)[ \t]+\\(.*\\)" line)
  2403. ;; a Headline
  2404. (setq first-heading-pos (or first-heading-pos (point)))
  2405. (setq level (org-tr-level (- (match-end 1) (match-beginning 1)))
  2406. txt (match-string 2 line))
  2407. (org-ascii-level-start level txt umax lines))
  2408. ((and org-export-with-tables
  2409. (string-match "^\\([ \t]*\\)\\(|\\|\\+-+\\+\\)" line))
  2410. (if (not table-open)
  2411. ;; New table starts
  2412. (setq table-open t table-buffer nil))
  2413. ;; Accumulate lines
  2414. (setq table-buffer (cons line table-buffer))
  2415. (when (or (not lines)
  2416. (not (string-match "^\\([ \t]*\\)\\(|\\|\\+-+\\+\\)"
  2417. (car lines))))
  2418. (setq table-open nil
  2419. table-buffer (nreverse table-buffer))
  2420. (insert (mapconcat
  2421. (lambda (x)
  2422. (org-fix-indentation x org-ascii-current-indentation))
  2423. (org-format-table-ascii table-buffer)
  2424. "\n") "\n")))
  2425. (t
  2426. (setq line (org-fix-indentation line org-ascii-current-indentation))
  2427. ;; Remove forced line breaks
  2428. (if (string-match "\\\\\\\\[ \t]*$" line)
  2429. (setq line (replace-match "" t t line)))
  2430. (if (and org-export-with-fixed-width
  2431. (string-match "^\\([ \t]*\\)\\(:\\)" line))
  2432. (setq line (replace-match "\\1" nil nil line)))
  2433. (insert line "\n"))))
  2434. (normal-mode)
  2435. ;; insert the table of contents
  2436. (when thetoc
  2437. (goto-char (point-min))
  2438. (if (re-search-forward "^[ \t]*\\[TABLE-OF-CONTENTS\\][ \t]*$" nil t)
  2439. (progn
  2440. (goto-char (match-beginning 0))
  2441. (replace-match ""))
  2442. (goto-char first-heading-pos))
  2443. (mapc 'insert thetoc)
  2444. (or (looking-at "[ \t]*\n[ \t]*\n")
  2445. (insert "\n\n")))
  2446. ;; Convert whitespace place holders
  2447. (goto-char (point-min))
  2448. (let (beg end)
  2449. (while (setq beg (next-single-property-change (point) 'org-whitespace))
  2450. (setq end (next-single-property-change beg 'org-whitespace))
  2451. (goto-char beg)
  2452. (delete-region beg end)
  2453. (insert (make-string (- end beg) ?\ ))))
  2454. (save-buffer)
  2455. ;; remove display and invisible chars
  2456. (let (beg end)
  2457. (goto-char (point-min))
  2458. (while (setq beg (next-single-property-change (point) 'display))
  2459. (setq end (next-single-property-change beg 'display))
  2460. (delete-region beg end)
  2461. (goto-char beg)
  2462. (insert "=>"))
  2463. (goto-char (point-min))
  2464. (while (setq beg (next-single-property-change (point) 'org-cwidth))
  2465. (setq end (next-single-property-change beg 'org-cwidth))
  2466. (delete-region beg end)
  2467. (goto-char beg)))
  2468. (goto-char (point-min))))
  2469. (defun org-export-ascii-preprocess ()
  2470. "Do extra work for ASCII export"
  2471. ;; Put quotes around verbatim text
  2472. (goto-char (point-min))
  2473. (while (re-search-forward org-verbatim-re nil t)
  2474. (goto-char (match-end 2))
  2475. (backward-delete-char 1) (insert "'")
  2476. (goto-char (match-beginning 2))
  2477. (delete-char 1) (insert "`")
  2478. (goto-char (match-end 2)))
  2479. (goto-char (point-min))
  2480. ;; Remove target markers
  2481. (while (re-search-forward "<<<?\\([^<>]*\\)>>>?\\([ \t]*\\)" nil t)
  2482. (replace-match "\\1\\2")))
  2483. (defun org-search-todo-below (line lines level)
  2484. "Search the subtree below LINE for any TODO entries."
  2485. (let ((rest (cdr (memq line lines)))
  2486. (re org-todo-line-regexp)
  2487. line lv todo)
  2488. (catch 'exit
  2489. (while (setq line (pop rest))
  2490. (if (string-match re line)
  2491. (progn
  2492. (setq lv (- (match-end 1) (match-beginning 1))
  2493. todo (and (match-beginning 2)
  2494. (not (member (match-string 2 line)
  2495. org-done-keywords))))
  2496. ; TODO, not DONE
  2497. (if (<= lv level) (throw 'exit nil))
  2498. (if todo (throw 'exit t))))))))
  2499. (defun org-html-expand-for-ascii (line)
  2500. "Handle quoted HTML for ASCII export."
  2501. (if org-export-html-expand
  2502. (while (string-match "@<[^<>\n]*>" line)
  2503. ;; We just remove the tags for now.
  2504. (setq line (replace-match "" nil nil line))))
  2505. line)
  2506. (defun org-insert-centered (s &optional underline)
  2507. "Insert the string S centered and underline it with character UNDERLINE."
  2508. (let ((ind (max (/ (- fill-column (string-width s)) 2) 0)))
  2509. (insert (make-string ind ?\ ) s "\n")
  2510. (if underline
  2511. (insert (make-string ind ?\ )
  2512. (make-string (string-width s) underline)
  2513. "\n"))))
  2514. (defun org-ascii-level-start (level title umax &optional lines)
  2515. "Insert a new level in ASCII export."
  2516. (let (char (n (- level umax 1)) (ind 0))
  2517. (if (> level umax)
  2518. (progn
  2519. (insert (make-string (* 2 n) ?\ )
  2520. (char-to-string (nth (% n (length org-export-ascii-bullets))
  2521. org-export-ascii-bullets))
  2522. " " title "\n")
  2523. ;; find the indentation of the next non-empty line
  2524. (catch 'stop
  2525. (while lines
  2526. (if (string-match "^\\* " (car lines)) (throw 'stop nil))
  2527. (if (string-match "^\\([ \t]*\\)\\S-" (car lines))
  2528. (throw 'stop (setq ind (org-get-indentation (car lines)))))
  2529. (pop lines)))
  2530. (setq org-ascii-current-indentation (cons (* 2 (1+ n)) ind)))
  2531. (if (or (not (equal (char-before) ?\n))
  2532. (not (equal (char-before (1- (point))) ?\n)))
  2533. (insert "\n"))
  2534. (setq char (nth (- umax level) (reverse org-export-ascii-underline)))
  2535. (unless org-export-with-tags
  2536. (if (string-match (org-re "[ \t]+\\(:[[:alnum:]_@:]+:\\)[ \t]*$") title)
  2537. (setq title (replace-match "" t t title))))
  2538. (if org-export-with-section-numbers
  2539. (setq title (concat (org-section-number level) " " title)))
  2540. (insert title "\n" (make-string (string-width title) char) "\n")
  2541. (setq org-ascii-current-indentation '(0 . 0)))))
  2542. ;;;###autoload
  2543. (defun org-export-visible (type arg)
  2544. "Create a copy of the visible part of the current buffer, and export it.
  2545. The copy is created in a temporary buffer and removed after use.
  2546. TYPE is the final key (as a string) that also select the export command in
  2547. the `C-c C-e' export dispatcher.
  2548. As a special case, if the you type SPC at the prompt, the temporary
  2549. org-mode file will not be removed but presented to you so that you can
  2550. continue to use it. The prefix arg ARG is passed through to the exporting
  2551. command."
  2552. (interactive
  2553. (list (progn
  2554. (message "Export visible: [a]SCII [h]tml [b]rowse HTML [H/R]uffer with HTML [x]OXO [ ]keep buffer")
  2555. (read-char-exclusive))
  2556. current-prefix-arg))
  2557. (if (not (member type '(?a ?\C-a ?b ?\C-b ?h ?x ?\ )))
  2558. (error "Invalid export key"))
  2559. (let* ((binding (cdr (assoc type
  2560. '((?a . org-export-as-ascii)
  2561. (?\C-a . org-export-as-ascii)
  2562. (?b . org-export-as-html-and-open)
  2563. (?\C-b . org-export-as-html-and-open)
  2564. (?h . org-export-as-html)
  2565. (?H . org-export-as-html-to-buffer)
  2566. (?R . org-export-region-as-html)
  2567. (?x . org-export-as-xoxo)))))
  2568. (keepp (equal type ?\ ))
  2569. (file buffer-file-name)
  2570. (buffer (get-buffer-create "*Org Export Visible*"))
  2571. s e)
  2572. ;; Need to hack the drawers here.
  2573. (save-excursion
  2574. (goto-char (point-min))
  2575. (while (re-search-forward org-drawer-regexp nil t)
  2576. (goto-char (match-beginning 1))
  2577. (or (org-invisible-p) (org-flag-drawer nil))))
  2578. (with-current-buffer buffer (erase-buffer))
  2579. (save-excursion
  2580. (setq s (goto-char (point-min)))
  2581. (while (not (= (point) (point-max)))
  2582. (goto-char (org-find-invisible))
  2583. (append-to-buffer buffer s (point))
  2584. (setq s (goto-char (org-find-visible))))
  2585. (org-cycle-hide-drawers 'all)
  2586. (goto-char (point-min))
  2587. (unless keepp
  2588. ;; Copy all comment lines to the end, to make sure #+ settings are
  2589. ;; still available for the second export step. Kind of a hack, but
  2590. ;; does do the trick.
  2591. (if (looking-at "#[^\r\n]*")
  2592. (append-to-buffer buffer (match-beginning 0) (1+ (match-end 0))))
  2593. (while (re-search-forward "[\n\r]#[^\n\r]*" nil t)
  2594. (append-to-buffer buffer (1+ (match-beginning 0))
  2595. (min (point-max) (1+ (match-end 0))))))
  2596. (set-buffer buffer)
  2597. (let ((buffer-file-name file)
  2598. (org-inhibit-startup t))
  2599. (org-mode)
  2600. (show-all)
  2601. (unless keepp (funcall binding arg))))
  2602. (if (not keepp)
  2603. (kill-buffer buffer)
  2604. (switch-to-buffer-other-window buffer)
  2605. (goto-char (point-min)))))
  2606. (defun org-find-visible ()
  2607. (let ((s (point)))
  2608. (while (and (not (= (point-max) (setq s (next-overlay-change s))))
  2609. (get-char-property s 'invisible)))
  2610. s))
  2611. (defun org-find-invisible ()
  2612. (let ((s (point)))
  2613. (while (and (not (= (point-max) (setq s (next-overlay-change s))))
  2614. (not (get-char-property s 'invisible))))
  2615. s))
  2616. ;;; HTML export
  2617. (defvar org-archive-location) ;; gets loaded with the org-archive require.
  2618. (defun org-get-current-options ()
  2619. "Return a string with current options as keyword options.
  2620. Does include HTML export options as well as TODO and CATEGORY stuff."
  2621. (require 'org-archive)
  2622. (format
  2623. "#+TITLE: %s
  2624. #+AUTHOR: %s
  2625. #+EMAIL: %s
  2626. #+DATE: %s
  2627. #+LANGUAGE: %s
  2628. #+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
  2629. %s
  2630. #+EXPORT_SELECT_TAGS: %s
  2631. #+EXPORT_EXCLUDE_TAGS: %s
  2632. #+LINK_UP: %s
  2633. #+LINK_HOME: %s
  2634. #+CATEGORY: %s
  2635. #+SEQ_TODO: %s
  2636. #+TYP_TODO: %s
  2637. #+PRIORITIES: %c %c %c
  2638. #+DRAWERS: %s
  2639. #+STARTUP: %s %s %s %s %s
  2640. #+TAGS: %s
  2641. #+FILETAGS: %s
  2642. #+ARCHIVE: %s
  2643. #+LINK: %s
  2644. "
  2645. (buffer-name) (user-full-name) user-mail-address
  2646. (format-time-string (substring (car org-time-stamp-formats) 1 -1))
  2647. org-export-default-language
  2648. org-export-headline-levels
  2649. org-export-with-section-numbers
  2650. org-export-with-toc
  2651. org-export-preserve-breaks
  2652. org-export-html-expand
  2653. org-export-with-fixed-width
  2654. org-export-with-tables
  2655. org-export-with-sub-superscripts
  2656. org-export-with-special-strings
  2657. org-export-with-footnotes
  2658. org-export-with-emphasize
  2659. org-export-with-TeX-macros
  2660. org-export-with-LaTeX-fragments
  2661. org-export-skip-text-before-1st-heading
  2662. org-export-with-drawers
  2663. org-export-with-todo-keywords
  2664. org-export-with-priority
  2665. org-export-with-tags
  2666. (if (featurep 'org-jsinfo) (org-infojs-options-inbuffer-template) "")
  2667. (mapconcat 'identity org-export-select-tags " ")
  2668. (mapconcat 'identity org-export-exclude-tags " ")
  2669. org-export-html-link-up
  2670. org-export-html-link-home
  2671. (file-name-nondirectory buffer-file-name)
  2672. "TODO FEEDBACK VERIFY DONE"
  2673. "Me Jason Marie DONE"
  2674. org-highest-priority org-lowest-priority org-default-priority
  2675. (mapconcat 'identity org-drawers " ")
  2676. (cdr (assoc org-startup-folded
  2677. '((nil . "showall") (t . "overview") (content . "content"))))
  2678. (if org-odd-levels-only "odd" "oddeven")
  2679. (if org-hide-leading-stars "hidestars" "showstars")
  2680. (if org-startup-align-all-tables "align" "noalign")
  2681. (cond ((eq org-log-done t) "logdone")
  2682. ((equal org-log-done 'note) "lognotedone")
  2683. ((not org-log-done) "nologdone"))
  2684. (or (mapconcat (lambda (x)
  2685. (cond
  2686. ((equal '(:startgroup) x) "{")
  2687. ((equal '(:endgroup) x) "}")
  2688. ((cdr x) (format "%s(%c)" (car x) (cdr x)))
  2689. (t (car x))))
  2690. (or org-tag-alist (org-get-buffer-tags)) " ") "")
  2691. (mapconcat 'identity org-file-tags " ")
  2692. org-archive-location
  2693. "org file:~/org/%s.org"
  2694. ))
  2695. (defun org-export-html-preprocess (parameters)
  2696. ;; Convert LaTeX fragments to images
  2697. (when (plist-get parameters :LaTeX-fragments)
  2698. (org-format-latex
  2699. (concat "ltxpng/" (file-name-sans-extension
  2700. (file-name-nondirectory
  2701. org-current-export-file)))
  2702. org-current-export-dir nil "Creating LaTeX image %s"))
  2703. (message "Exporting..."))
  2704. ;;;###autoload
  2705. (defun org-insert-export-options-template ()
  2706. "Insert into the buffer a template with information for exporting."
  2707. (interactive)
  2708. (if (not (bolp)) (newline))
  2709. (let ((s (org-get-current-options)))
  2710. (and (string-match "#\\+CATEGORY" s)
  2711. (setq s (substring s 0 (match-beginning 0))))
  2712. (insert s)))
  2713. ;;;###autoload
  2714. (defun org-export-as-html-and-open (arg)
  2715. "Export the outline as HTML and immediately open it with a browser.
  2716. If there is an active region, export only the region.
  2717. The prefix ARG specifies how many levels of the outline should become
  2718. headlines. The default is 3. Lower levels will become bulleted lists."
  2719. (interactive "P")
  2720. (org-export-as-html arg 'hidden)
  2721. (org-open-file buffer-file-name))
  2722. ;;;###autoload
  2723. (defun org-export-as-html-batch ()
  2724. "Call `org-export-as-html', may be used in batch processing as
  2725. emacs --batch
  2726. --load=$HOME/lib/emacs/org.el
  2727. --eval \"(setq org-export-headline-levels 2)\"
  2728. --visit=MyFile --funcall org-export-as-html-batch"
  2729. (org-export-as-html org-export-headline-levels 'hidden))
  2730. ;;;###autoload
  2731. (defun org-export-as-html-to-buffer (arg)
  2732. "Call `org-export-as-html` with output to a temporary buffer.
  2733. No file is created. The prefix ARG is passed through to `org-export-as-html'."
  2734. (interactive "P")
  2735. (org-export-as-html arg nil nil "*Org HTML Export*")
  2736. (switch-to-buffer-other-window "*Org HTML Export*"))
  2737. ;;;###autoload
  2738. (defun org-replace-region-by-html (beg end)
  2739. "Assume the current region has org-mode syntax, and convert it to HTML.
  2740. This can be used in any buffer. For example, you could write an
  2741. itemized list in org-mode syntax in an HTML buffer and then use this
  2742. command to convert it."
  2743. (interactive "r")
  2744. (let (reg html buf pop-up-frames)
  2745. (save-window-excursion
  2746. (if (org-mode-p)
  2747. (setq html (org-export-region-as-html
  2748. beg end t 'string))
  2749. (setq reg (buffer-substring beg end)
  2750. buf (get-buffer-create "*Org tmp*"))
  2751. (with-current-buffer buf
  2752. (erase-buffer)
  2753. (insert reg)
  2754. (org-mode)
  2755. (setq html (org-export-region-as-html
  2756. (point-min) (point-max) t 'string)))
  2757. (kill-buffer buf)))
  2758. (delete-region beg end)
  2759. (insert html)))
  2760. ;;;###autoload
  2761. (defun org-export-region-as-html (beg end &optional body-only buffer)
  2762. "Convert region from BEG to END in org-mode buffer to HTML.
  2763. If prefix arg BODY-ONLY is set, omit file header, footer, and table of
  2764. contents, and only produce the region of converted text, useful for
  2765. cut-and-paste operations.
  2766. If BUFFER is a buffer or a string, use/create that buffer as a target
  2767. of the converted HTML. If BUFFER is the symbol `string', return the
  2768. produced HTML as a string and leave not buffer behind. For example,
  2769. a Lisp program could call this function in the following way:
  2770. (setq html (org-export-region-as-html beg end t 'string))
  2771. When called interactively, the output buffer is selected, and shown
  2772. in a window. A non-interactive call will only return the buffer."
  2773. (interactive "r\nP")
  2774. (when (interactive-p)
  2775. (setq buffer "*Org HTML Export*"))
  2776. (let ((transient-mark-mode t) (zmacs-regions t)
  2777. ext-plist rtn)
  2778. (setq ext-plist (plist-put ext-plist :ignore-subree-p t))
  2779. (goto-char end)
  2780. (set-mark (point)) ;; to activate the region
  2781. (goto-char beg)
  2782. (setq rtn (org-export-as-html
  2783. nil nil ext-plist
  2784. buffer body-only))
  2785. (if (fboundp 'deactivate-mark) (deactivate-mark))
  2786. (if (and (interactive-p) (bufferp rtn))
  2787. (switch-to-buffer-other-window rtn)
  2788. rtn)))
  2789. (defvar html-table-tag nil) ; dynamically scoped into this.
  2790. (defvar org-par-open nil)
  2791. ;;;###autoload
  2792. (defun org-export-as-html (arg &optional hidden ext-plist
  2793. to-buffer body-only pub-dir)
  2794. "Export the outline as a pretty HTML file.
  2795. If there is an active region, export only the region. The prefix
  2796. ARG specifies how many levels of the outline should become
  2797. headlines. The default is 3. Lower levels will become bulleted
  2798. lists. When HIDDEN is non-nil, don't display the HTML buffer.
  2799. EXT-PLIST is a property list with external parameters overriding
  2800. org-mode's default settings, but still inferior to file-local
  2801. settings. When TO-BUFFER is non-nil, create a buffer with that
  2802. name and export to that buffer. If TO-BUFFER is the symbol
  2803. `string', don't leave any buffer behind but just return the
  2804. resulting HTML as a string. When BODY-ONLY is set, don't produce
  2805. the file header and footer, simply return the content of
  2806. <body>...</body>, without even the body tags themselves. When
  2807. PUB-DIR is set, use this as the publishing directory."
  2808. (interactive "P")
  2809. ;; Make sure we have a file name when we need it.
  2810. (when (and (not (or to-buffer body-only))
  2811. (not buffer-file-name))
  2812. (if (buffer-base-buffer)
  2813. (org-set-local 'buffer-file-name
  2814. (with-current-buffer (buffer-base-buffer)
  2815. buffer-file-name))
  2816. (error "Need a file name to be able to export.")))
  2817. (message "Exporting...")
  2818. (setq-default org-todo-line-regexp org-todo-line-regexp)
  2819. (setq-default org-deadline-line-regexp org-deadline-line-regexp)
  2820. (setq-default org-done-keywords org-done-keywords)
  2821. (setq-default org-maybe-keyword-time-regexp org-maybe-keyword-time-regexp)
  2822. (let* ((opt-plist
  2823. (org-export-process-option-filters
  2824. (org-combine-plists (org-default-export-plist)
  2825. ext-plist
  2826. (org-infile-export-plist))))
  2827. (style (concat (if (plist-get opt-plist :style-include-default)
  2828. org-export-html-style-default)
  2829. (plist-get opt-plist :style)
  2830. (plist-get opt-plist :style-extra)
  2831. "\n" org-export-html-scripts))
  2832. (html-extension (plist-get opt-plist :html-extension))
  2833. (link-validate (plist-get opt-plist :link-validation-function))
  2834. valid thetoc have-headings first-heading-pos
  2835. (odd org-odd-levels-only)
  2836. (region-p (org-region-active-p))
  2837. (rbeg (and region-p (region-beginning)))
  2838. (rend (and region-p (region-end)))
  2839. (subtree-p
  2840. (if (plist-get opt-plist :ignore-subree-p)
  2841. nil
  2842. (when region-p
  2843. (save-excursion
  2844. (goto-char rbeg)
  2845. (and (org-at-heading-p)
  2846. (>= (org-end-of-subtree t t) rend))))))
  2847. (opt-plist (if subtree-p
  2848. (org-export-add-subtree-options opt-plist rbeg)
  2849. opt-plist))
  2850. ;; The following two are dynamically scoped into other
  2851. ;; routines below.
  2852. (org-current-export-dir
  2853. (or pub-dir (org-export-directory :html opt-plist)))
  2854. (org-current-export-file buffer-file-name)
  2855. (level 0) (line "") (origline "") txt todo
  2856. (umax nil)
  2857. (umax-toc nil)
  2858. (filename (if to-buffer nil
  2859. (expand-file-name
  2860. (concat
  2861. (file-name-sans-extension
  2862. (or (and subtree-p
  2863. (org-entry-get (region-beginning)
  2864. "EXPORT_FILE_NAME" t))
  2865. (file-name-nondirectory buffer-file-name)))
  2866. "." html-extension)
  2867. (file-name-as-directory
  2868. (or pub-dir (org-export-directory :html opt-plist))))))
  2869. (current-dir (if buffer-file-name
  2870. (file-name-directory buffer-file-name)
  2871. default-directory))
  2872. (buffer (if to-buffer
  2873. (cond
  2874. ((eq to-buffer 'string) (get-buffer-create "*Org HTML Export*"))
  2875. (t (get-buffer-create to-buffer)))
  2876. (find-file-noselect filename)))
  2877. (org-levels-open (make-vector org-level-max nil))
  2878. (date (plist-get opt-plist :date))
  2879. (author (plist-get opt-plist :author))
  2880. (title (or (and subtree-p (org-export-get-title-from-subtree))
  2881. (plist-get opt-plist :title)
  2882. (and (not
  2883. (plist-get opt-plist :skip-before-1st-heading))
  2884. (org-export-grab-title-from-buffer))
  2885. (and buffer-file-name
  2886. (file-name-sans-extension
  2887. (file-name-nondirectory buffer-file-name)))
  2888. "UNTITLED"))
  2889. (html-table-tag (plist-get opt-plist :html-table-tag))
  2890. (quote-re0 (concat "^[ \t]*" org-quote-string "\\>"))
  2891. (quote-re (concat "^\\(\\*+\\)\\([ \t]+" org-quote-string "\\>\\)"))
  2892. (inquote nil)
  2893. (infixed nil)
  2894. (inverse nil)
  2895. (in-local-list nil)
  2896. (local-list-type nil)
  2897. (local-list-indent nil)
  2898. (llt org-plain-list-ordered-item-terminator)
  2899. (email (plist-get opt-plist :email))
  2900. (language (plist-get opt-plist :language))
  2901. (lang-words nil)
  2902. (head-count 0) cnt
  2903. (start 0)
  2904. (coding-system (and (boundp 'buffer-file-coding-system)
  2905. buffer-file-coding-system))
  2906. (coding-system-for-write (or org-export-html-coding-system
  2907. coding-system))
  2908. (save-buffer-coding-system (or org-export-html-coding-system
  2909. coding-system))
  2910. (charset (and coding-system-for-write
  2911. (fboundp 'coding-system-get)
  2912. (coding-system-get coding-system-for-write
  2913. 'mime-charset)))
  2914. (region
  2915. (buffer-substring
  2916. (if region-p (region-beginning) (point-min))
  2917. (if region-p (region-end) (point-max))))
  2918. (lines
  2919. (org-split-string
  2920. (org-export-preprocess-string
  2921. region
  2922. :emph-multiline t
  2923. :for-html t
  2924. :skip-before-1st-heading
  2925. (plist-get opt-plist :skip-before-1st-heading)
  2926. :drawers (plist-get opt-plist :drawers)
  2927. :todo-keywords (plist-get opt-plist :todo-keywords)
  2928. :tags (plist-get opt-plist :tags)
  2929. :priority (plist-get opt-plist :priority)
  2930. :footnotes (plist-get opt-plist :footnotes)
  2931. :archived-trees
  2932. (plist-get opt-plist :archived-trees)
  2933. :select-tags (plist-get opt-plist :select-tags)
  2934. :exclude-tags (plist-get opt-plist :exclude-tags)
  2935. :add-text
  2936. (plist-get opt-plist :text)
  2937. :LaTeX-fragments
  2938. (plist-get opt-plist :LaTeX-fragments))
  2939. "[\r\n]"))
  2940. table-open type
  2941. table-buffer table-orig-buffer
  2942. ind item-type starter didclose
  2943. rpl path attr desc descp desc1 desc2 link
  2944. snumber fnc item-tag
  2945. footnotes footref-seen
  2946. )
  2947. (let ((inhibit-read-only t))
  2948. (org-unmodified
  2949. (remove-text-properties (point-min) (point-max)
  2950. '(:org-license-to-kill t))))
  2951. (message "Exporting...")
  2952. (setq org-min-level (org-get-min-level lines))
  2953. (setq org-last-level org-min-level)
  2954. (org-init-section-numbers)
  2955. (cond
  2956. ((and date (string-match "%" date))
  2957. (setq date (format-time-string date)))
  2958. (date)
  2959. (t (setq date (format-time-string "%Y-%m-%d %T %Z"))))
  2960. ;; Get the language-dependent settings
  2961. (setq lang-words (or (assoc language org-export-language-setup)
  2962. (assoc "en" org-export-language-setup)))
  2963. ;; Switch to the output buffer
  2964. (set-buffer buffer)
  2965. (let ((inhibit-read-only t)) (erase-buffer))
  2966. (fundamental-mode)
  2967. (and (fboundp 'set-buffer-file-coding-system)
  2968. (set-buffer-file-coding-system coding-system-for-write))
  2969. (let ((case-fold-search nil)
  2970. (org-odd-levels-only odd))
  2971. ;; create local variables for all options, to make sure all called
  2972. ;; functions get the correct information
  2973. (mapc (lambda (x)
  2974. (set (make-local-variable (nth 2 x))
  2975. (plist-get opt-plist (car x))))
  2976. org-export-plist-vars)
  2977. (setq umax (if arg (prefix-numeric-value arg)
  2978. org-export-headline-levels))
  2979. (setq umax-toc (if (integerp org-export-with-toc)
  2980. (min org-export-with-toc umax)
  2981. umax))
  2982. (unless body-only
  2983. ;; File header
  2984. (insert (format
  2985. "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"
  2986. \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">
  2987. <html xmlns=\"http://www.w3.org/1999/xhtml\"
  2988. lang=\"%s\" xml:lang=\"%s\">
  2989. <head>
  2990. <title>%s</title>
  2991. <meta http-equiv=\"Content-Type\" content=\"text/html;charset=%s\"/>
  2992. <meta name=\"generator\" content=\"Org-mode\"/>
  2993. <meta name=\"generated\" content=\"%s\"/>
  2994. <meta name=\"author\" content=\"%s\"/>
  2995. %s
  2996. </head><body>
  2997. "
  2998. language language (org-html-expand title)
  2999. (or charset "iso-8859-1") date author style))
  3000. (insert (or (plist-get opt-plist :preamble) ""))
  3001. (when (plist-get opt-plist :auto-preamble)
  3002. (if title (insert (format org-export-html-title-format
  3003. (org-html-expand title))))))
  3004. (if (and org-export-with-toc (not body-only))
  3005. (progn
  3006. (push (format "<h%d>%s</h%d>\n"
  3007. org-export-html-toplevel-hlevel
  3008. (nth 3 lang-words)
  3009. org-export-html-toplevel-hlevel)
  3010. thetoc)
  3011. (push "<div id=\"text-table-of-contents\">\n" thetoc)
  3012. (push "<ul>\n<li>" thetoc)
  3013. (setq lines
  3014. (mapcar '(lambda (line)
  3015. (if (string-match org-todo-line-regexp line)
  3016. ;; This is a headline
  3017. (progn
  3018. (setq have-headings t)
  3019. (setq level (- (match-end 1) (match-beginning 1))
  3020. level (org-tr-level level)
  3021. txt (save-match-data
  3022. (org-html-expand
  3023. (org-export-cleanup-toc-line
  3024. (match-string 3 line))))
  3025. todo
  3026. (or (and org-export-mark-todo-in-toc
  3027. (match-beginning 2)
  3028. (not (member (match-string 2 line)
  3029. org-done-keywords)))
  3030. ; TODO, not DONE
  3031. (and org-export-mark-todo-in-toc
  3032. (= level umax-toc)
  3033. (org-search-todo-below
  3034. line lines level))))
  3035. (if (string-match
  3036. (org-re "[ \t]+:\\([[:alnum:]_@:]+\\):[ \t]*$") txt)
  3037. (setq txt (replace-match "&nbsp;&nbsp;&nbsp;<span class=\"tag\"> \\1</span>" t nil txt)))
  3038. (if (string-match quote-re0 txt)
  3039. (setq txt (replace-match "" t t txt)))
  3040. (setq snumber (org-section-number level))
  3041. (if org-export-with-section-numbers
  3042. (setq txt (concat snumber " " txt)))
  3043. (if (<= level (max umax umax-toc))
  3044. (setq head-count (+ head-count 1)))
  3045. (if (<= level umax-toc)
  3046. (progn
  3047. (if (> level org-last-level)
  3048. (progn
  3049. (setq cnt (- level org-last-level))
  3050. (while (>= (setq cnt (1- cnt)) 0)
  3051. (push "\n<ul>\n<li>" thetoc))
  3052. (push "\n" thetoc)))
  3053. (if (< level org-last-level)
  3054. (progn
  3055. (setq cnt (- org-last-level level))
  3056. (while (>= (setq cnt (1- cnt)) 0)
  3057. (push "</li>\n</ul>" thetoc))
  3058. (push "\n" thetoc)))
  3059. ;; Check for targets
  3060. (while (string-match org-any-target-regexp line)
  3061. (setq line (replace-match
  3062. (concat "@<span class=\"target\">" (match-string 1 line) "@</span> ")
  3063. t t line)))
  3064. (while (string-match "&lt;\\(&lt;\\)+\\|&gt;\\(&gt;\\)+" txt)
  3065. (setq txt (replace-match "" t t txt)))
  3066. (push
  3067. (format
  3068. (if todo
  3069. "</li>\n<li><a href=\"#sec-%s\"><span class=\"todo\">%s</span></a>"
  3070. "</li>\n<li><a href=\"#sec-%s\">%s</a>")
  3071. snumber txt) thetoc)
  3072. (setq org-last-level level))
  3073. )))
  3074. line)
  3075. lines))
  3076. (while (> org-last-level (1- org-min-level))
  3077. (setq org-last-level (1- org-last-level))
  3078. (push "</li>\n</ul>\n" thetoc))
  3079. (push "</div>\n" thetoc)
  3080. (setq thetoc (if have-headings (nreverse thetoc) nil))))
  3081. (setq head-count 0)
  3082. (org-init-section-numbers)
  3083. (org-open-par)
  3084. (while (setq line (pop lines) origline line)
  3085. (catch 'nextline
  3086. ;; end of quote section?
  3087. (when (and inquote (string-match "^\\*+ " line))
  3088. (insert "</pre>\n")
  3089. (setq inquote nil))
  3090. ;; inside a quote section?
  3091. (when inquote
  3092. (insert (org-html-protect line) "\n")
  3093. (throw 'nextline nil))
  3094. ;; Fixed-width, verbatim lines (examples)
  3095. (when (and org-export-with-fixed-width
  3096. (string-match "^[ \t]*:\\(.*\\)" line))
  3097. (when (not infixed)
  3098. (setq infixed t)
  3099. (org-close-par-maybe)
  3100. (insert "<pre class=\"example\">\n"))
  3101. (insert (org-html-protect (match-string 1 line)) "\n")
  3102. (when (or (not lines)
  3103. (not (string-match "^[ \t]*\\(:.*\\)"
  3104. (car lines))))
  3105. (setq infixed nil)
  3106. (insert "</pre>\n"))
  3107. (throw 'nextline nil))
  3108. ;; Protected HTML
  3109. (when (get-text-property 0 'org-protected line)
  3110. (let (par)
  3111. (when (re-search-backward
  3112. "\\(<p>\\)\\([ \t\r\n]*\\)\\=" (- (point) 100) t)
  3113. (setq par (match-string 1))
  3114. (replace-match "\\2\n"))
  3115. (insert line "\n")
  3116. (while (and lines
  3117. (or (= (length (car lines)) 0)
  3118. (get-text-property 0 'org-protected (car lines))))
  3119. (insert (pop lines) "\n"))
  3120. (and par (insert "<p>\n")))
  3121. (throw 'nextline nil))
  3122. ;; Horizontal line
  3123. (when (string-match "^[ \t]*-\\{5,\\}[ \t]*$" line)
  3124. (if org-par-open
  3125. (insert "\n</p>\n<hr/>\n<p>\n")
  3126. (insert "\n<hr/>\n"))
  3127. (throw 'nextline nil))
  3128. ;; Blockquotes and verse
  3129. (when (equal "ORG-BLOCKQUOTE-START" line)
  3130. (org-close-par-maybe)
  3131. (insert "<blockquote>\n<p>\n")
  3132. (throw 'nextline nil))
  3133. (when (equal "ORG-BLOCKQUOTE-END" line)
  3134. (insert "</p>\n</blockquote>\n")
  3135. (throw 'nextline nil))
  3136. (when (equal "ORG-VERSE-START" line)
  3137. (org-close-par-maybe)
  3138. (insert "\n<p class=\"verse\">\n")
  3139. (setq inverse t)
  3140. (throw 'nextline nil))
  3141. (when (equal "ORG-VERSE-END" line)
  3142. (insert "</p>\n")
  3143. (setq inverse nil)
  3144. (throw 'nextline nil))
  3145. (when inverse
  3146. (let ((i (org-get-string-indentation line)))
  3147. (if (> i 0)
  3148. (setq line (concat (mapconcat 'identity
  3149. (make-list (* 2 i) "\\nbsp") "")
  3150. " " (org-trim line))))
  3151. (setq line (concat line "\\\\"))))
  3152. ;; make targets to anchors
  3153. (while (string-match "<<<?\\([^<>]*\\)>>>?\\((INVISIBLE)\\)?[ \t]*\n?" line)
  3154. (cond
  3155. ((match-end 2)
  3156. (setq line (replace-match
  3157. (format
  3158. "@<a name=\"%s\" id=\"%s\">@</a>"
  3159. (org-solidify-link-text (match-string 1 line))
  3160. (org-solidify-link-text (match-string 1 line)))
  3161. t t line)))
  3162. ((and org-export-with-toc (equal (string-to-char line) ?*))
  3163. ;; FIXME: NOT DEPENDENT on TOC?????????????????????
  3164. (setq line (replace-match
  3165. (concat "@<span class=\"target\">" (match-string 1 line) "@</span> ")
  3166. ; (concat "@<i>" (match-string 1 line) "@</i> ")
  3167. t t line)))
  3168. (t
  3169. (setq line (replace-match
  3170. (concat "@<a name=\""
  3171. (org-solidify-link-text (match-string 1 line))
  3172. "\" class=\"target\">" (match-string 1 line) "@</a> ")
  3173. t t line)))))
  3174. (setq line (org-html-handle-time-stamps line))
  3175. ;; replace "&" by "&amp;", "<" and ">" by "&lt;" and "&gt;"
  3176. ;; handle @<..> HTML tags (replace "@&gt;..&lt;" by "<..>")
  3177. ;; Also handle sub_superscripts and checkboxes
  3178. (or (string-match org-table-hline-regexp line)
  3179. (setq line (org-html-expand line)))
  3180. ;; Format the links
  3181. (setq start 0)
  3182. (while (string-match org-bracket-link-analytic-regexp++ line start)
  3183. (setq start (match-beginning 0))
  3184. (setq path (save-match-data (org-link-unescape
  3185. (match-string 3 line))))
  3186. (setq type (cond
  3187. ((match-end 2) (match-string 2 line))
  3188. ((save-match-data
  3189. (or (file-name-absolute-p path)
  3190. (string-match "^\\.\\.?/" path)))
  3191. "file")
  3192. (t "internal")))
  3193. (setq path (org-extract-attributes (org-link-unescape path)))
  3194. (setq attr (get-text-property 0 'org-attributes path))
  3195. (setq desc1 (if (match-end 5) (match-string 5 line))
  3196. desc2 (if (match-end 2) (concat type ":" path) path)
  3197. descp (and desc1 (not (equal desc1 desc2)))
  3198. desc (or desc1 desc2))
  3199. ;; Make an image out of the description if that is so wanted
  3200. (when (and descp (org-file-image-p desc))
  3201. (save-match-data
  3202. (if (string-match "^file:" desc)
  3203. (setq desc (substring desc (match-end 0)))))
  3204. (setq desc (org-add-props
  3205. (concat "<img src=\"" desc "\"/>")
  3206. '(org-protected t))))
  3207. ;; FIXME: do we need to unescape here somewhere?
  3208. (cond
  3209. ((equal type "internal")
  3210. (setq rpl
  3211. (concat
  3212. "<a href=\"#"
  3213. (org-solidify-link-text
  3214. (save-match-data (org-link-unescape path)) nil)
  3215. "\"" attr ">"
  3216. (org-export-html-format-desc desc)
  3217. "</a>")))
  3218. ((member type '("http" "https"))
  3219. ;; standard URL, just check if we need to inline an image
  3220. (if (and (or (eq t org-export-html-inline-images)
  3221. (and org-export-html-inline-images (not descp)))
  3222. (org-file-image-p path))
  3223. (setq rpl (org-export-html-format-image
  3224. (concat type ":" path)))
  3225. (setq link (concat type ":" path))
  3226. (setq rpl (concat "<a href=\""
  3227. (org-export-html-format-href link)
  3228. "\"" attr ">"
  3229. (org-export-html-format-desc desc)
  3230. "</a>"))))
  3231. ((member type '("ftp" "mailto" "news"))
  3232. ;; standard URL
  3233. (setq link (concat type ":" path))
  3234. (setq rpl (concat "<a href=\""
  3235. (org-export-html-format-href link)
  3236. "\"" attr ">"
  3237. (org-export-html-format-desc desc)
  3238. "</a>")))
  3239. ((string= type "coderef")
  3240. (setq rpl (format "<a href=\"#coderef-%s\" class=\"coderef\" onmouseover=\"CodeHighlightOn(this, 'coderef-%s');\" onmouseout=\"CodeHighlightOff(this, 'coderef-%s');\">%s</a>"
  3241. path path path
  3242. (format (org-export-get-coderef-format path (and descp desc))
  3243. (cdr (assoc path org-export-code-refs))))))
  3244. ((functionp (setq fnc (nth 2 (assoc type org-link-protocols))))
  3245. ;; The link protocol has a function for format the link
  3246. (setq rpl
  3247. (save-match-data
  3248. (funcall fnc (org-link-unescape path) desc1 'html))))
  3249. ((string= type "file")
  3250. ;; FILE link
  3251. (let* ((filename path)
  3252. (abs-p (file-name-absolute-p filename))
  3253. thefile file-is-image-p search)
  3254. (save-match-data
  3255. (if (string-match "::\\(.*\\)" filename)
  3256. (setq search (match-string 1 filename)
  3257. filename (replace-match "" t nil filename)))
  3258. (setq valid
  3259. (if (functionp link-validate)
  3260. (funcall link-validate filename current-dir)
  3261. t))
  3262. (setq file-is-image-p (org-file-image-p filename))
  3263. (setq thefile (if abs-p (expand-file-name filename) filename))
  3264. (when (and org-export-html-link-org-files-as-html
  3265. (string-match "\\.org$" thefile))
  3266. (setq thefile (concat (substring thefile 0
  3267. (match-beginning 0))
  3268. "." html-extension))
  3269. (if (and search
  3270. ;; make sure this is can be used as target search
  3271. (not (string-match "^[0-9]*$" search))
  3272. (not (string-match "^\\*" search))
  3273. (not (string-match "^/.*/$" search)))
  3274. (setq thefile (concat thefile "#"
  3275. (org-solidify-link-text
  3276. (org-link-unescape search)))))
  3277. (when (string-match "^file:" desc)
  3278. (setq desc (replace-match "" t t desc))
  3279. (if (string-match "\\.org$" desc)
  3280. (setq desc (replace-match "" t t desc))))))
  3281. (setq rpl (if (and file-is-image-p
  3282. (or (eq t org-export-html-inline-images)
  3283. (and org-export-html-inline-images
  3284. (not descp))))
  3285. (org-export-html-format-image thefile)
  3286. (concat "<a href=\"" thefile "\"" attr ">"
  3287. (org-export-html-format-desc desc)
  3288. "</a>")))
  3289. (if (not valid) (setq rpl desc))))
  3290. (t
  3291. ;; just publish the path, as default
  3292. (setq rpl (concat "<i>&lt;" type ":"
  3293. (save-match-data (org-link-unescape path))
  3294. "&gt;</i>"))))
  3295. (setq line (replace-match rpl t t line)
  3296. start (+ start (length rpl))))
  3297. ;; TODO items
  3298. (if (and (string-match org-todo-line-regexp line)
  3299. (match-beginning 2))
  3300. (setq line
  3301. (concat (substring line 0 (match-beginning 2))
  3302. "<span class=\""
  3303. (if (member (match-string 2 line)
  3304. org-done-keywords)
  3305. "done" "todo")
  3306. "\">" (match-string 2 line)
  3307. "</span>" (substring line (match-end 2)))))
  3308. ;; Does this contain a reference to a footnote?
  3309. (when org-export-with-footnotes
  3310. (setq start 0)
  3311. (while (string-match "\\([^* \t].*?\\)\\[\\([0-9]+\\)\\]" line start)
  3312. (if (get-text-property (match-beginning 2) 'org-protected line)
  3313. (setq start (match-end 2))
  3314. (let ((n (match-string 2 line)) extra a)
  3315. (if (setq a (assoc n footref-seen))
  3316. (progn
  3317. (setcdr a (1+ (cdr a)))
  3318. (setq extra (format ".%d" (cdr a))))
  3319. (setq extra "")
  3320. (push (cons n 1) footref-seen))
  3321. (setq line
  3322. (replace-match
  3323. (format
  3324. "%s<sup><a class=\"footref\" name=\"fnr.%s%s\" href=\"#fn.%s\">%s</a></sup>"
  3325. (match-string 1 line) n extra n n)
  3326. t t line))))))
  3327. (cond
  3328. ((string-match "^\\(\\*+\\)[ \t]+\\(.*\\)" line)
  3329. ;; This is a headline
  3330. (setq level (org-tr-level (- (match-end 1) (match-beginning 1)))
  3331. txt (match-string 2 line))
  3332. (if (string-match quote-re0 txt)
  3333. (setq txt (replace-match "" t t txt)))
  3334. (if (<= level (max umax umax-toc))
  3335. (setq head-count (+ head-count 1)))
  3336. (when in-local-list
  3337. ;; Close any local lists before inserting a new header line
  3338. (while local-list-type
  3339. (org-close-li (car local-list-type))
  3340. (insert (format "</%sl>\n" (car local-list-type)))
  3341. (pop local-list-type))
  3342. (setq local-list-indent nil
  3343. in-local-list nil))
  3344. (setq first-heading-pos (or first-heading-pos (point)))
  3345. (org-html-level-start level txt umax
  3346. (and org-export-with-toc (<= level umax))
  3347. head-count)
  3348. ;; QUOTES
  3349. (when (string-match quote-re line)
  3350. (org-close-par-maybe)
  3351. (insert "<pre>")
  3352. (setq inquote t)))
  3353. ((and org-export-with-tables
  3354. (string-match "^\\([ \t]*\\)\\(|\\|\\+-+\\+\\)" line))
  3355. (if (not table-open)
  3356. ;; New table starts
  3357. (setq table-open t table-buffer nil table-orig-buffer nil))
  3358. ;; Accumulate lines
  3359. (setq table-buffer (cons line table-buffer)
  3360. table-orig-buffer (cons origline table-orig-buffer))
  3361. (when (or (not lines)
  3362. (not (string-match "^\\([ \t]*\\)\\(|\\|\\+-+\\+\\)"
  3363. (car lines))))
  3364. (setq table-open nil
  3365. table-buffer (nreverse table-buffer)
  3366. table-orig-buffer (nreverse table-orig-buffer))
  3367. (org-close-par-maybe)
  3368. (insert (org-format-table-html table-buffer table-orig-buffer))))
  3369. (t
  3370. ;; Normal lines
  3371. (when (string-match
  3372. (cond
  3373. ((eq llt t) "^\\([ \t]*\\)\\(\\([-+*] \\)\\|\\([0-9]+[.)]\\) \\)?\\( *[^ \t\n\r]\\|[ \t]*$\\)")
  3374. ((= llt ?.) "^\\([ \t]*\\)\\(\\([-+*] \\)\\|\\([0-9]+\\.\\) \\)?\\( *[^ \t\n\r]\\|[ \t]*$\\)")
  3375. ((= llt ?\)) "^\\([ \t]*\\)\\(\\([-+*] \\)\\|\\([0-9]+)\\) \\)?\\( *[^ \t\n\r]\\|[ \t]*$\\)")
  3376. (t (error "Invalid value of `org-plain-list-ordered-item-terminator'")))
  3377. line)
  3378. (setq ind (org-get-string-indentation line)
  3379. item-type (if (match-beginning 4) "o" "u")
  3380. starter (if (match-beginning 2)
  3381. (substring (match-string 2 line) 0 -1))
  3382. line (substring line (match-beginning 5))
  3383. item-tag nil)
  3384. (if (and starter (string-match "\\(.*?\\) ::[ \t]*" line))
  3385. (setq item-type "d"
  3386. item-tag (match-string 1 line)
  3387. line (substring line (match-end 0))))
  3388. (when (and (not (equal item-type "d"))
  3389. (not (string-match "[^ \t]" line)))
  3390. ;; empty line. Pretend indentation is large.
  3391. (setq ind (if org-empty-line-terminates-plain-lists
  3392. 0
  3393. (1+ (or (car local-list-indent) 1)))))
  3394. (setq didclose nil)
  3395. (while (and in-local-list
  3396. (or (and (= ind (car local-list-indent))
  3397. (not starter))
  3398. (< ind (car local-list-indent))))
  3399. (setq didclose t)
  3400. (org-close-li (car local-list-type))
  3401. (insert (format "</%sl>\n" (car local-list-type)))
  3402. (pop local-list-type) (pop local-list-indent)
  3403. (setq in-local-list local-list-indent))
  3404. (cond
  3405. ((and starter
  3406. (or (not in-local-list)
  3407. (> ind (car local-list-indent))))
  3408. ;; Start new (level of) list
  3409. (org-close-par-maybe)
  3410. (insert (cond
  3411. ((equal item-type "u") "<ul>\n<li>\n")
  3412. ((equal item-type "o") "<ol>\n<li>\n")
  3413. ((equal item-type "d")
  3414. (format "<dl>\n<dt>%s</dt><dd>\n" item-tag))))
  3415. (push item-type local-list-type)
  3416. (push ind local-list-indent)
  3417. (setq in-local-list t))
  3418. (starter
  3419. ;; continue current list
  3420. (org-close-li (car local-list-type))
  3421. (insert (cond
  3422. ((equal (car local-list-type) "d")
  3423. (format "<dt>%s</dt><dd>\n" (or item-tag "???")))
  3424. (t "<li>\n"))))
  3425. (didclose
  3426. ;; we did close a list, normal text follows: need <p>
  3427. (org-open-par)))
  3428. (if (string-match "^[ \t]*\\[\\([X ]\\)\\]" line)
  3429. (setq line
  3430. (replace-match
  3431. (if (equal (match-string 1 line) "X")
  3432. "<b>[X]</b>"
  3433. "<b>[<span style=\"visibility:hidden;\">X</span>]</b>")
  3434. t t line))))
  3435. ;; Empty lines start a new paragraph. If hand-formatted lists
  3436. ;; are not fully interpreted, lines starting with "-", "+", "*"
  3437. ;; also start a new paragraph.
  3438. (if (string-match "^ [-+*]-\\|^[ \t]*$" line) (org-open-par))
  3439. ;; Is this the start of a footnote?
  3440. (when org-export-with-footnotes
  3441. (when (and (boundp 'footnote-section-tag-regexp)
  3442. (string-match (concat "^" footnote-section-tag-regexp)
  3443. line))
  3444. ;; ignore this line
  3445. (throw 'nextline nil))
  3446. (when (string-match "^[ \t]*\\[\\([0-9]+\\)\\]" line)
  3447. (org-close-par-maybe)
  3448. (let ((n (match-string 1 line)))
  3449. (setq org-par-open t
  3450. line (replace-match
  3451. (format "<p class=\"footnote\"><sup><a class=\"footnum\" name=\"fn.%s\" href=\"#fnr.%s\">%s</a></sup>" n n n) t t line)))))
  3452. ;; Check if the line break needs to be conserved
  3453. (cond
  3454. ((string-match "\\\\\\\\[ \t]*$" line)
  3455. (setq line (replace-match "<br/>" t t line)))
  3456. (org-export-preserve-breaks
  3457. (setq line (concat line "<br/>"))))
  3458. (insert line "\n")))))
  3459. ;; Properly close all local lists and other lists
  3460. (when inquote
  3461. (insert "</pre>\n")
  3462. (org-open-par))
  3463. (when in-local-list
  3464. ;; Close any local lists before inserting a new header line
  3465. (while local-list-type
  3466. (org-close-li (car local-list-type))
  3467. (insert (format "</%sl>\n" (car local-list-type)))
  3468. (pop local-list-type))
  3469. (setq local-list-indent nil
  3470. in-local-list nil))
  3471. (org-html-level-start 1 nil umax
  3472. (and org-export-with-toc (<= level umax))
  3473. head-count)
  3474. ;; the </div> to close the last text-... div.
  3475. (when (and (> umax 0) first-heading-pos) (insert "</div>\n"))
  3476. (save-excursion
  3477. (goto-char (point-min))
  3478. (while (re-search-forward "<p class=\"footnote\">[^\000]*?\\(</p>\\|\\'\\)" nil t)
  3479. (push (match-string 0) footnotes)
  3480. (replace-match "" t t)))
  3481. (when footnotes
  3482. (insert (format org-export-html-footnotes-section
  3483. (or (nth 4 lang-words) "Footnotes")
  3484. (mapconcat 'identity (nreverse footnotes) "\n"))
  3485. "\n"))
  3486. (unless body-only
  3487. (when (plist-get opt-plist :auto-postamble)
  3488. (insert "<div id=\"postamble\">")
  3489. (when (and org-export-author-info author)
  3490. (insert "<p class=\"author\"> "
  3491. (nth 1 lang-words) ": " author "\n")
  3492. (when email
  3493. (if (listp (split-string email ",+ *"))
  3494. (mapc (lambda(e)
  3495. (insert "<a href=\"mailto:" e "\">&lt;"
  3496. e "&gt;</a>\n"))
  3497. (split-string email ",+ *"))
  3498. (insert "<a href=\"mailto:" email "\">&lt;"
  3499. email "&gt;</a>\n")))
  3500. (insert "</p>\n"))
  3501. (when (and date org-export-time-stamp-file)
  3502. (insert "<p class=\"date\"> "
  3503. (nth 2 lang-words) ": "
  3504. date "</p>\n"))
  3505. (when org-export-creator-info
  3506. (insert (format "<p>HTML generated by org-mode %s in emacs %s</p>\n"
  3507. org-version emacs-major-version)))
  3508. (insert "</div>"))
  3509. (if org-export-html-with-timestamp
  3510. (insert org-export-html-html-helper-timestamp))
  3511. (insert (or (plist-get opt-plist :postamble) ""))
  3512. (insert "</body>\n</html>\n"))
  3513. (unless (plist-get opt-plist :buffer-will-be-killed)
  3514. (normal-mode)
  3515. (if (eq major-mode default-major-mode) (html-mode)))
  3516. ;; insert the table of contents
  3517. (goto-char (point-min))
  3518. (when thetoc
  3519. (if (or (re-search-forward
  3520. "<p>\\s-*\\[TABLE-OF-CONTENTS\\]\\s-*</p>" nil t)
  3521. (re-search-forward
  3522. "\\[TABLE-OF-CONTENTS\\]" nil t))
  3523. (progn
  3524. (goto-char (match-beginning 0))
  3525. (replace-match ""))
  3526. (goto-char first-heading-pos)
  3527. (when (looking-at "\\s-*</p>")
  3528. (goto-char (match-end 0))
  3529. (insert "\n")))
  3530. (insert "<div id=\"table-of-contents\">\n")
  3531. (mapc 'insert thetoc)
  3532. (insert "</div>\n"))
  3533. ;; remove empty paragraphs and lists
  3534. (goto-char (point-min))
  3535. (while (re-search-forward "<p>[ \r\n\t]*</p>" nil t)
  3536. (replace-match ""))
  3537. (goto-char (point-min))
  3538. (while (re-search-forward "<li>[ \r\n\t]*</li>\n?" nil t)
  3539. (replace-match ""))
  3540. (goto-char (point-min))
  3541. (while (re-search-forward "</ul>\\s-*<ul>\n?" nil t)
  3542. (replace-match ""))
  3543. ;; Convert whitespace place holders
  3544. (goto-char (point-min))
  3545. (let (beg end n)
  3546. (while (setq beg (next-single-property-change (point) 'org-whitespace))
  3547. (setq n (get-text-property beg 'org-whitespace)
  3548. end (next-single-property-change beg 'org-whitespace))
  3549. (goto-char beg)
  3550. (delete-region beg end)
  3551. (insert (format "<span style=\"visibility:hidden;\">%s</span>"
  3552. (make-string n ?x)))))
  3553. (or to-buffer (save-buffer))
  3554. (goto-char (point-min))
  3555. (message "Exporting... done")
  3556. (if (eq to-buffer 'string)
  3557. (prog1 (buffer-substring (point-min) (point-max))
  3558. (kill-buffer (current-buffer)))
  3559. (current-buffer)))))
  3560. (defun org-export-get-coderef-format (path desc)
  3561. (save-match-data
  3562. (if (and desc (string-match
  3563. (regexp-quote (concat "(" path ")"))
  3564. desc))
  3565. (replace-match "%s" t t desc)
  3566. "%s")))
  3567. (defun org-export-html-format-href (s)
  3568. "Make sure the S is valid as a href reference in an XHTML document."
  3569. (save-match-data
  3570. (let ((start 0))
  3571. (while (string-match "&" s start)
  3572. (setq start (+ (match-beginning 0) 3)
  3573. s (replace-match "&amp;" t t s)))))
  3574. s)
  3575. (defun org-export-html-format-desc (s)
  3576. "Make sure the S is valid as a description in a link."
  3577. (if (and s (not (get-text-property 1 'org-protected s)))
  3578. (save-match-data
  3579. (org-html-do-expand s))
  3580. s))
  3581. (defun org-export-html-format-image (src)
  3582. "Create image tag with source and attributes."
  3583. (save-match-data
  3584. (let* ((caption (org-find-text-property-in-string 'org-caption src))
  3585. (attr (org-find-text-property-in-string 'org-attributes src))
  3586. (label (org-find-text-property-in-string 'org-label src)))
  3587. (format "<div %sclass=\"figure\">
  3588. <p><img src=\"%s\"%s /></p>%s
  3589. </div>"
  3590. (if label (format "id=\"%s\" " label) "")
  3591. src
  3592. (if (string-match "\\<alt=" (or attr ""))
  3593. (concat " " attr )
  3594. (concat " " attr " alt=\"" src "\""))
  3595. (if caption (concat "\n<p>" caption "</p>") "")))))
  3596. (defvar org-table-colgroup-info nil)
  3597. (defun org-format-table-ascii (lines)
  3598. "Format a table for ascii export."
  3599. (if (stringp lines)
  3600. (setq lines (org-split-string lines "\n")))
  3601. (if (not (string-match "^[ \t]*|" (car lines)))
  3602. ;; Table made by table.el - test for spanning
  3603. lines
  3604. ;; A normal org table
  3605. ;; Get rid of hlines at beginning and end
  3606. (if (string-match "^[ \t]*|-" (car lines)) (setq lines (cdr lines)))
  3607. (setq lines (nreverse lines))
  3608. (if (string-match "^[ \t]*|-" (car lines)) (setq lines (cdr lines)))
  3609. (setq lines (nreverse lines))
  3610. (when org-export-table-remove-special-lines
  3611. ;; Check if the table has a marking column. If yes remove the
  3612. ;; column and the special lines
  3613. (setq lines (org-table-clean-before-export lines)))
  3614. ;; Get rid of the vertical lines except for grouping
  3615. (let ((vl (org-colgroup-info-to-vline-list org-table-colgroup-info))
  3616. rtn line vl1 start)
  3617. (while (setq line (pop lines))
  3618. (if (string-match org-table-hline-regexp line)
  3619. (and (string-match "|\\(.*\\)|" line)
  3620. (setq line (replace-match " \\1" t nil line)))
  3621. (setq start 0 vl1 vl)
  3622. (while (string-match "|" line start)
  3623. (setq start (match-end 0))
  3624. (or (pop vl1) (setq line (replace-match " " t t line)))))
  3625. (push line rtn))
  3626. (nreverse rtn))))
  3627. (defun org-colgroup-info-to-vline-list (info)
  3628. (let (vl new last)
  3629. (while info
  3630. (setq last new new (pop info))
  3631. (if (or (memq last '(:end :startend))
  3632. (memq new '(:start :startend)))
  3633. (push t vl)
  3634. (push nil vl)))
  3635. (setq vl (nreverse vl))
  3636. (and vl (setcar vl nil))
  3637. vl))
  3638. (defvar org-table-number-regexp) ; defined in org-table.el
  3639. (defun org-format-table-html (lines olines)
  3640. "Find out which HTML converter to use and return the HTML code."
  3641. (if (stringp lines)
  3642. (setq lines (org-split-string lines "\n")))
  3643. (if (string-match "^[ \t]*|" (car lines))
  3644. ;; A normal org table
  3645. (org-format-org-table-html lines)
  3646. ;; Table made by table.el - test for spanning
  3647. (let* ((hlines (delq nil (mapcar
  3648. (lambda (x)
  3649. (if (string-match "^[ \t]*\\+-" x) x
  3650. nil))
  3651. lines)))
  3652. (first (car hlines))
  3653. (ll (and (string-match "\\S-+" first)
  3654. (match-string 0 first)))
  3655. (re (concat "^[ \t]*" (regexp-quote ll)))
  3656. (spanning (delq nil (mapcar (lambda (x) (not (string-match re x)))
  3657. hlines))))
  3658. (if (and (not spanning)
  3659. (not org-export-prefer-native-exporter-for-tables))
  3660. ;; We can use my own converter with HTML conversions
  3661. (org-format-table-table-html lines)
  3662. ;; Need to use the code generator in table.el, with the original text.
  3663. (org-format-table-table-html-using-table-generate-source olines)))))
  3664. (defvar org-table-number-fraction) ; defined in org-table.el
  3665. (defun org-format-org-table-html (lines &optional splice)
  3666. "Format a table into HTML."
  3667. (require 'org-table)
  3668. ;; Get rid of hlines at beginning and end
  3669. (if (string-match "^[ \t]*|-" (car lines)) (setq lines (cdr lines)))
  3670. (setq lines (nreverse lines))
  3671. (if (string-match "^[ \t]*|-" (car lines)) (setq lines (cdr lines)))
  3672. (setq lines (nreverse lines))
  3673. (when org-export-table-remove-special-lines
  3674. ;; Check if the table has a marking column. If yes remove the
  3675. ;; column and the special lines
  3676. (setq lines (org-table-clean-before-export lines)))
  3677. (let ((caption (or (get-text-property 0 'org-caption (car lines))
  3678. (get-text-property (or (next-single-property-change
  3679. 0 'org-caption (car lines))
  3680. 0)
  3681. 'org-caption (car lines))))
  3682. (head (and org-export-highlight-first-table-line
  3683. (delq nil (mapcar
  3684. (lambda (x) (string-match "^[ \t]*|-" x))
  3685. (cdr lines)))))
  3686. (nlines 0) fnum i
  3687. tbopen line fields html gr colgropen)
  3688. (if splice (setq head nil))
  3689. (unless splice (push (if head "<thead>" "<tbody>") html))
  3690. (setq tbopen t)
  3691. (while (setq line (pop lines))
  3692. (catch 'next-line
  3693. (if (string-match "^[ \t]*|-" line)
  3694. (progn
  3695. (unless splice
  3696. (push (if head "</thead>" "</tbody>") html)
  3697. (if lines (push "<tbody>" html) (setq tbopen nil)))
  3698. (setq head nil) ;; head ends here, first time around
  3699. ;; ignore this line
  3700. (throw 'next-line t)))
  3701. ;; Break the line into fields
  3702. (setq fields (org-split-string line "[ \t]*|[ \t]*"))
  3703. (unless fnum (setq fnum (make-vector (length fields) 0)))
  3704. (setq nlines (1+ nlines) i -1)
  3705. (push (concat "<tr>"
  3706. (mapconcat
  3707. (lambda (x)
  3708. (setq i (1+ i))
  3709. (if (and (< i nlines)
  3710. (string-match org-table-number-regexp x))
  3711. (incf (aref fnum i)))
  3712. (if head
  3713. (concat (car org-export-table-header-tags) x
  3714. (cdr org-export-table-header-tags))
  3715. (concat (car org-export-table-data-tags) x
  3716. (cdr org-export-table-data-tags))))
  3717. fields "")
  3718. "</tr>")
  3719. html)))
  3720. (unless splice (if tbopen (push "</tbody>" html)))
  3721. (unless splice (push "</table>\n" html))
  3722. (setq html (nreverse html))
  3723. (unless splice
  3724. ;; Put in col tags with the alignment (unfortunately often ignored...)
  3725. (push (mapconcat
  3726. (lambda (x)
  3727. (setq gr (pop org-table-colgroup-info))
  3728. (format "%s<col align=\"%s\"></col>%s"
  3729. (if (memq gr '(:start :startend))
  3730. (prog1
  3731. (if colgropen "</colgroup>\n<colgroup>" "<colgroup>")
  3732. (setq colgropen t))
  3733. "")
  3734. (if (> (/ (float x) nlines) org-table-number-fraction)
  3735. "right" "left")
  3736. (if (memq gr '(:end :startend))
  3737. (progn (setq colgropen nil) "</colgroup>")
  3738. "")))
  3739. fnum "")
  3740. html)
  3741. (if colgropen (setq html (cons (car html) (cons "</colgroup>" (cdr html)))))
  3742. (if caption (push (format "<caption>%s</caption>" caption) html))
  3743. (push html-table-tag html))
  3744. (concat (mapconcat 'identity html "\n") "\n")))
  3745. (defun org-table-clean-before-export (lines)
  3746. "Check if the table has a marking column.
  3747. If yes remove the column and the special lines."
  3748. (setq org-table-colgroup-info nil)
  3749. (if (memq nil
  3750. (mapcar
  3751. (lambda (x) (or (string-match "^[ \t]*|-" x)
  3752. (string-match "^[ \t]*| *\\([#!$*_^ /]\\) *|" x)))
  3753. lines))
  3754. (progn
  3755. (setq org-table-clean-did-remove-column nil)
  3756. (delq nil
  3757. (mapcar
  3758. (lambda (x)
  3759. (cond
  3760. ((string-match "^[ \t]*| */ *|" x)
  3761. (setq org-table-colgroup-info
  3762. (mapcar (lambda (x)
  3763. (cond ((member x '("<" "&lt;")) :start)
  3764. ((member x '(">" "&gt;")) :end)
  3765. ((member x '("<>" "&lt;&gt;")) :startend)
  3766. (t nil)))
  3767. (org-split-string x "[ \t]*|[ \t]*")))
  3768. nil)
  3769. (t x)))
  3770. lines)))
  3771. (setq org-table-clean-did-remove-column t)
  3772. (delq nil
  3773. (mapcar
  3774. (lambda (x)
  3775. (cond
  3776. ((string-match "^[ \t]*| */ *|" x)
  3777. (setq org-table-colgroup-info
  3778. (mapcar (lambda (x)
  3779. (cond ((member x '("<" "&lt;")) :start)
  3780. ((member x '(">" "&gt;")) :end)
  3781. ((member x '("<>" "&lt;&gt;")) :startend)
  3782. (t nil)))
  3783. (cdr (org-split-string x "[ \t]*|[ \t]*"))))
  3784. nil)
  3785. ((string-match "^[ \t]*| *[!_^/] *|" x)
  3786. nil) ; ignore this line
  3787. ((or (string-match "^\\([ \t]*\\)|-+\\+" x)
  3788. (string-match "^\\([ \t]*\\)|[^|]*|" x))
  3789. ;; remove the first column
  3790. (replace-match "\\1|" t nil x))))
  3791. lines))))
  3792. (defun org-format-table-table-html (lines)
  3793. "Format a table generated by table.el into HTML.
  3794. This conversion does *not* use `table-generate-source' from table.el.
  3795. This has the advantage that Org-mode's HTML conversions can be used.
  3796. But it has the disadvantage, that no cell- or row-spanning is allowed."
  3797. (let (line field-buffer
  3798. (head org-export-highlight-first-table-line)
  3799. fields html empty)
  3800. (setq html (concat html-table-tag "\n"))
  3801. (while (setq line (pop lines))
  3802. (setq empty "&nbsp;")
  3803. (catch 'next-line
  3804. (if (string-match "^[ \t]*\\+-" line)
  3805. (progn
  3806. (if field-buffer
  3807. (progn
  3808. (setq
  3809. html
  3810. (concat
  3811. html
  3812. "<tr>"
  3813. (mapconcat
  3814. (lambda (x)
  3815. (if (equal x "") (setq x empty))
  3816. (if head
  3817. (concat (car org-export-table-header-tags) x
  3818. (cdr org-export-table-header-tags))
  3819. (concat (car org-export-table-data-tags) x
  3820. (cdr org-export-table-data-tags))))
  3821. field-buffer "\n")
  3822. "</tr>\n"))
  3823. (setq head nil)
  3824. (setq field-buffer nil)))
  3825. ;; Ignore this line
  3826. (throw 'next-line t)))
  3827. ;; Break the line into fields and store the fields
  3828. (setq fields (org-split-string line "[ \t]*|[ \t]*"))
  3829. (if field-buffer
  3830. (setq field-buffer (mapcar
  3831. (lambda (x)
  3832. (concat x "<br/>" (pop fields)))
  3833. field-buffer))
  3834. (setq field-buffer fields))))
  3835. (setq html (concat html "</table>\n"))
  3836. html))
  3837. (defun org-format-table-table-html-using-table-generate-source (lines)
  3838. "Format a table into html, using `table-generate-source' from table.el.
  3839. This has the advantage that cell- or row-spanning is allowed.
  3840. But it has the disadvantage, that Org-mode's HTML conversions cannot be used."
  3841. (require 'table)
  3842. (with-current-buffer (get-buffer-create " org-tmp1 ")
  3843. (erase-buffer)
  3844. (insert (mapconcat 'identity lines "\n"))
  3845. (goto-char (point-min))
  3846. (if (not (re-search-forward "|[^+]" nil t))
  3847. (error "Error processing table"))
  3848. (table-recognize-table)
  3849. (with-current-buffer (get-buffer-create " org-tmp2 ") (erase-buffer))
  3850. (table-generate-source 'html " org-tmp2 ")
  3851. (set-buffer " org-tmp2 ")
  3852. (buffer-substring (point-min) (point-max))))
  3853. (defun org-export-splice-style (style extra)
  3854. "Splice EXTRA into STYLE, just before \"</style>\"."
  3855. (if (and (stringp extra)
  3856. (string-match "\\S-" extra)
  3857. (string-match "</style>" style))
  3858. (concat (substring style 0 (match-beginning 0))
  3859. "\n" extra "\n"
  3860. (substring style (match-beginning 0)))
  3861. style))
  3862. (defun org-html-handle-time-stamps (s)
  3863. "Format time stamps in string S, or remove them."
  3864. (catch 'exit
  3865. (let (r b)
  3866. (while (string-match org-maybe-keyword-time-regexp s)
  3867. (if (and (match-end 1) (equal (match-string 1 s) org-clock-string))
  3868. ;; never export CLOCK
  3869. (throw 'exit ""))
  3870. (or b (setq b (substring s 0 (match-beginning 0))))
  3871. (if (not org-export-with-timestamps)
  3872. (setq r (concat r (substring s 0 (match-beginning 0)))
  3873. s (substring s (match-end 0)))
  3874. (setq r (concat
  3875. r (substring s 0 (match-beginning 0))
  3876. (if (match-end 1)
  3877. (format "@<span class=\"timestamp-kwd\">%s @</span>"
  3878. (match-string 1 s)))
  3879. (format " @<span class=\"timestamp\">%s@</span>"
  3880. (substring
  3881. (org-translate-time (match-string 3 s)) 1 -1)))
  3882. s (substring s (match-end 0)))))
  3883. ;; Line break if line started and ended with time stamp stuff
  3884. (if (not r)
  3885. s
  3886. (setq r (concat r s))
  3887. (unless (string-match "\\S-" (concat b s))
  3888. (setq r (concat r "@<br/>")))
  3889. r))))
  3890. (defun org-export-htmlize-region-for-paste (beg end)
  3891. "Convert the region to HTML, using htmlize.el.
  3892. This is much like `htmlize-region-for-paste', only that it uses
  3893. the settings define in the org-... variables."
  3894. (let* ((htmlize-output-type org-export-htmlize-output-type)
  3895. (htmlize-css-name-prefix org-export-htmlize-css-font-prefix)
  3896. (htmlbuf (htmlize-region beg end)))
  3897. (unwind-protect
  3898. (with-current-buffer htmlbuf
  3899. (buffer-substring (plist-get htmlize-buffer-places 'content-start)
  3900. (plist-get htmlize-buffer-places 'content-end)))
  3901. (kill-buffer htmlbuf))))
  3902. ;;;###autoload
  3903. (defun org-export-htmlize-generate-css ()
  3904. "Create the CSS for all font definitions in the current Emacs session.
  3905. Use this to create face definitions in your CSS style file that can then
  3906. be used by code snippets transformed by htmlize.
  3907. This command just produces a buffer that contains class definitions for all
  3908. faces used in the current Emacs session. You can copy and paste the ones you
  3909. need into your CSS file.
  3910. If you then set `org-export-htmlize-output-type' to `css', calls to
  3911. the function `org-export-htmlize-region-for-paste' will produce code
  3912. that uses these same face definitions."
  3913. (interactive)
  3914. (require 'htmlize)
  3915. (and (get-buffer "*html*") (kill-buffer "*html*"))
  3916. (with-temp-buffer
  3917. (let ((fl (face-list))
  3918. (htmlize-css-name-prefix "org-")
  3919. (htmlize-output-type 'css)
  3920. f i)
  3921. (while (setq f (pop fl)
  3922. i (and f (face-attribute f :inherit)))
  3923. (when (and (symbolp f) (or (not i) (not (listp i))))
  3924. (insert (org-add-props (copy-sequence "1") nil 'face f))))
  3925. (htmlize-region (point-min) (point-max))))
  3926. (switch-to-buffer "*html*")
  3927. (goto-char (point-min))
  3928. (if (re-search-forward "<style" nil t)
  3929. (delete-region (point-min) (match-beginning 0)))
  3930. (if (re-search-forward "</style>" nil t)
  3931. (delete-region (1+ (match-end 0)) (point-max)))
  3932. (beginning-of-line 1)
  3933. (if (looking-at " +") (replace-match ""))
  3934. (goto-char (point-min)))
  3935. (defun org-html-protect (s)
  3936. ;; convert & to &amp;, < to &lt; and > to &gt;
  3937. (let ((start 0))
  3938. (while (string-match "&" s start)
  3939. (setq s (replace-match "&amp;" t t s)
  3940. start (1+ (match-beginning 0))))
  3941. (while (string-match "<" s)
  3942. (setq s (replace-match "&lt;" t t s)))
  3943. (while (string-match ">" s)
  3944. (setq s (replace-match "&gt;" t t s)))
  3945. ; (while (string-match "\"" s)
  3946. ; (setq s (replace-match "&quot;" t t s)))
  3947. )
  3948. s)
  3949. (defun org-export-cleanup-toc-line (s)
  3950. "Remove tags and timestamps from lines going into the toc."
  3951. (when (memq org-export-with-tags '(not-in-toc nil))
  3952. (if (string-match (org-re " +:[[:alnum:]_@:]+: *$") s)
  3953. (setq s (replace-match "" t t s))))
  3954. (when org-export-remove-timestamps-from-toc
  3955. (while (string-match org-maybe-keyword-time-regexp s)
  3956. (setq s (replace-match "" t t s))))
  3957. (while (string-match org-bracket-link-regexp s)
  3958. (setq s (replace-match (match-string (if (match-end 3) 3 1) s)
  3959. t t s)))
  3960. s)
  3961. (defun org-html-expand (string)
  3962. "Prepare STRING for HTML export. Applies all active conversions.
  3963. If there are links in the string, don't modify these."
  3964. (let* ((re (concat org-bracket-link-regexp "\\|"
  3965. (org-re "[ \t]+\\(:[[:alnum:]_@:]+:\\)[ \t]*$")))
  3966. m s l res)
  3967. (while (setq m (string-match re string))
  3968. (setq s (substring string 0 m)
  3969. l (match-string 0 string)
  3970. string (substring string (match-end 0)))
  3971. (push (org-html-do-expand s) res)
  3972. (push l res))
  3973. (push (org-html-do-expand string) res)
  3974. (apply 'concat (nreverse res))))
  3975. (defun org-html-do-expand (s)
  3976. "Apply all active conversions to translate special ASCII to HTML."
  3977. (setq s (org-html-protect s))
  3978. (if org-export-html-expand
  3979. (let ((start 0))
  3980. (while (string-match "@&lt;\\([^&]*\\)&gt;" s)
  3981. (setq s (replace-match "<\\1>" t nil s)))))
  3982. (if org-export-with-emphasize
  3983. (setq s (org-export-html-convert-emphasize s)))
  3984. (if org-export-with-special-strings
  3985. (setq s (org-export-html-convert-special-strings s)))
  3986. (if org-export-with-sub-superscripts
  3987. (setq s (org-export-html-convert-sub-super s)))
  3988. (if org-export-with-TeX-macros
  3989. (let ((start 0) wd ass)
  3990. (while (setq start (string-match "\\\\\\([a-zA-Z]+\\)\\({}\\)?"
  3991. s start))
  3992. (if (get-text-property (match-beginning 0) 'org-protected s)
  3993. (setq start (match-end 0))
  3994. (setq wd (match-string 1 s))
  3995. (if (setq ass (assoc wd org-html-entities))
  3996. (setq s (replace-match (or (cdr ass)
  3997. (concat "&" (car ass) ";"))
  3998. t t s))
  3999. (setq start (+ start (length wd))))))))
  4000. s)
  4001. (defun org-create-multibrace-regexp (left right n)
  4002. "Create a regular expression which will match a balanced sexp.
  4003. Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
  4004. as single character strings.
  4005. The regexp returned will match the entire expression including the
  4006. delimiters. It will also define a single group which contains the
  4007. match except for the outermost delimiters. The maximum depth of
  4008. stacked delimiters is N. Escaping delimiters is not possible."
  4009. (let* ((nothing (concat "[^" "\\" left "\\" right "]*?"))
  4010. (or "\\|")
  4011. (re nothing)
  4012. (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
  4013. (while (> n 1)
  4014. (setq n (1- n)
  4015. re (concat re or next)
  4016. next (concat "\\(?:" nothing left next right "\\)+" nothing)))
  4017. (concat left "\\(" re "\\)" right)))
  4018. (defvar org-match-substring-regexp
  4019. (concat
  4020. "\\([^\\]\\)\\([_^]\\)\\("
  4021. "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
  4022. "\\|"
  4023. "\\(" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
  4024. "\\|"
  4025. "\\(\\(?:\\*\\|[-+]?[^-+*!@#$%^_ \t\r\n,:\"?<>~;./{}=()]+\\)\\)\\)")
  4026. "The regular expression matching a sub- or superscript.")
  4027. (defvar org-match-substring-with-braces-regexp
  4028. (concat
  4029. "\\([^\\]\\)\\([_^]\\)\\("
  4030. "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
  4031. "\\)")
  4032. "The regular expression matching a sub- or superscript, forcing braces.")
  4033. (defconst org-export-html-special-string-regexps
  4034. '(("\\\\-" . "&shy;")
  4035. ("---\\([^-]\\)" . "&mdash;\\1")
  4036. ("--\\([^-]\\)" . "&ndash;\\1")
  4037. ("\\.\\.\\." . "&hellip;"))
  4038. "Regular expressions for special string conversion.")
  4039. (defun org-export-html-convert-special-strings (string)
  4040. "Convert special characters in STRING to HTML."
  4041. (let ((all org-export-html-special-string-regexps)
  4042. e a re rpl start)
  4043. (while (setq a (pop all))
  4044. (setq re (car a) rpl (cdr a) start 0)
  4045. (while (string-match re string start)
  4046. (if (get-text-property (match-beginning 0) 'org-protected string)
  4047. (setq start (match-end 0))
  4048. (setq string (replace-match rpl t nil string)))))
  4049. string))
  4050. (defun org-export-html-convert-sub-super (string)
  4051. "Convert sub- and superscripts in STRING to HTML."
  4052. (let (key c (s 0) (requireb (eq org-export-with-sub-superscripts '{})))
  4053. (while (string-match org-match-substring-regexp string s)
  4054. (cond
  4055. ((and requireb (match-end 8)) (setq s (match-end 2)))
  4056. ((get-text-property (match-beginning 2) 'org-protected string)
  4057. (setq s (match-end 2)))
  4058. (t
  4059. (setq s (match-end 1)
  4060. key (if (string= (match-string 2 string) "_") "sub" "sup")
  4061. c (or (match-string 8 string)
  4062. (match-string 6 string)
  4063. (match-string 5 string))
  4064. string (replace-match
  4065. (concat (match-string 1 string)
  4066. "<" key ">" c "</" key ">")
  4067. t t string)))))
  4068. (while (string-match "\\\\\\([_^]\\)" string)
  4069. (setq string (replace-match (match-string 1 string) t t string)))
  4070. string))
  4071. (defun org-export-html-convert-emphasize (string)
  4072. "Apply emphasis."
  4073. (let ((s 0) rpl)
  4074. (while (string-match org-emph-re string s)
  4075. (if (not (equal
  4076. (substring string (match-beginning 3) (1+ (match-beginning 3)))
  4077. (substring string (match-beginning 4) (1+ (match-beginning 4)))))
  4078. (setq s (match-beginning 0)
  4079. rpl
  4080. (concat
  4081. (match-string 1 string)
  4082. (nth 2 (assoc (match-string 3 string) org-emphasis-alist))
  4083. (match-string 4 string)
  4084. (nth 3 (assoc (match-string 3 string)
  4085. org-emphasis-alist))
  4086. (match-string 5 string))
  4087. string (replace-match rpl t t string)
  4088. s (+ s (- (length rpl) 2)))
  4089. (setq s (1+ s))))
  4090. string))
  4091. (defun org-open-par ()
  4092. "Insert <p>, but first close previous paragraph if any."
  4093. (org-close-par-maybe)
  4094. (insert "\n<p>")
  4095. (setq org-par-open t))
  4096. (defun org-close-par-maybe ()
  4097. "Close paragraph if there is one open."
  4098. (when org-par-open
  4099. (insert "</p>")
  4100. (setq org-par-open nil)))
  4101. (defun org-close-li (&optional type)
  4102. "Close <li> if necessary."
  4103. (org-close-par-maybe)
  4104. (insert (if (equal type "d") "</dd>\n" "</li>\n")))
  4105. (defvar body-only) ; dynamically scoped into this.
  4106. (defun org-html-level-start (level title umax with-toc head-count)
  4107. "Insert a new level in HTML export.
  4108. When TITLE is nil, just close all open levels."
  4109. (org-close-par-maybe)
  4110. (let* ((target (and title (org-get-text-property-any 0 'target title)))
  4111. (extra-targets
  4112. (mapconcat (lambda (x)
  4113. (format "<a name=\"%s\" id=\"%s\"></a>"
  4114. x x))
  4115. (cdr (assoc target org-export-target-aliases))
  4116. ""))
  4117. (l org-level-max)
  4118. snumber)
  4119. (while (>= l level)
  4120. (if (aref org-levels-open (1- l))
  4121. (progn
  4122. (org-html-level-close l umax)
  4123. (aset org-levels-open (1- l) nil)))
  4124. (setq l (1- l)))
  4125. (when title
  4126. ;; If title is nil, this means this function is called to close
  4127. ;; all levels, so the rest is done only if title is given
  4128. (when (string-match (org-re "\\(:[[:alnum:]_@:]+:\\)[ \t]*$") title)
  4129. (setq title (replace-match
  4130. (if org-export-with-tags
  4131. (save-match-data
  4132. (concat
  4133. "&nbsp;&nbsp;&nbsp;<span class=\"tag\">"
  4134. (mapconcat 'identity (org-split-string
  4135. (match-string 1 title) ":")
  4136. "&nbsp;")
  4137. "</span>"))
  4138. "")
  4139. t t title)))
  4140. (if (> level umax)
  4141. (progn
  4142. (if (aref org-levels-open (1- level))
  4143. (progn
  4144. (org-close-li)
  4145. (if target
  4146. (insert (format "<li id=\"%s\">" target) extra-targets title "<br/>\n")
  4147. (insert "<li>" title "<br/>\n")))
  4148. (aset org-levels-open (1- level) t)
  4149. (org-close-par-maybe)
  4150. (if target
  4151. (insert (format "<ul>\n<li id=\"%s\">" target)
  4152. extra-targets title "<br/>\n")
  4153. (insert "<ul>\n<li>" title "<br/>\n"))))
  4154. (aset org-levels-open (1- level) t)
  4155. (setq snumber (org-section-number level))
  4156. (if (and org-export-with-section-numbers (not body-only))
  4157. (setq title (concat snumber " " title)))
  4158. (setq level (+ level org-export-html-toplevel-hlevel -1))
  4159. (unless (= head-count 1) (insert "\n</div>\n"))
  4160. (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"
  4161. snumber level level snumber extra-targets title level snumber))
  4162. (org-open-par)))))
  4163. (defun org-get-text-property-any (pos prop &optional object)
  4164. (or (get-text-property pos prop object)
  4165. (and (setq pos (next-single-property-change pos prop object))
  4166. (get-text-property pos prop object))))
  4167. (defun org-html-level-close (level max-outline-level)
  4168. "Terminate one level in HTML export."
  4169. (if (<= level max-outline-level)
  4170. (insert "</div>\n")
  4171. (org-close-li)
  4172. (insert "</ul>\n")))
  4173. ;;; iCalendar export
  4174. ;;;###autoload
  4175. (defun org-export-icalendar-this-file ()
  4176. "Export current file as an iCalendar file.
  4177. The iCalendar file will be located in the same directory as the Org-mode
  4178. file, but with extension `.ics'."
  4179. (interactive)
  4180. (org-export-icalendar nil buffer-file-name))
  4181. ;;;###autoload
  4182. (defun org-export-icalendar-all-agenda-files ()
  4183. "Export all files in `org-agenda-files' to iCalendar .ics files.
  4184. Each iCalendar file will be located in the same directory as the Org-mode
  4185. file, but with extension `.ics'."
  4186. (interactive)
  4187. (apply 'org-export-icalendar nil (org-agenda-files t)))
  4188. ;;;###autoload
  4189. (defun org-export-icalendar-combine-agenda-files ()
  4190. "Export all files in `org-agenda-files' to a single combined iCalendar file.
  4191. The file is stored under the name `org-combined-agenda-icalendar-file'."
  4192. (interactive)
  4193. (apply 'org-export-icalendar t (org-agenda-files t)))
  4194. (defun org-export-icalendar (combine &rest files)
  4195. "Create iCalendar files for all elements of FILES.
  4196. If COMBINE is non-nil, combine all calendar entries into a single large
  4197. file and store it under the name `org-combined-agenda-icalendar-file'."
  4198. (save-excursion
  4199. (org-prepare-agenda-buffers files)
  4200. (let* ((dir (org-export-directory
  4201. :ical (list :publishing-directory
  4202. org-export-publishing-directory)))
  4203. file ical-file ical-buffer category started org-agenda-new-buffers)
  4204. (and (get-buffer "*ical-tmp*") (kill-buffer "*ical-tmp*"))
  4205. (when combine
  4206. (setq ical-file
  4207. (if (file-name-absolute-p org-combined-agenda-icalendar-file)
  4208. org-combined-agenda-icalendar-file
  4209. (expand-file-name org-combined-agenda-icalendar-file dir))
  4210. ical-buffer (org-get-agenda-file-buffer ical-file))
  4211. (set-buffer ical-buffer) (erase-buffer))
  4212. (while (setq file (pop files))
  4213. (catch 'nextfile
  4214. (org-check-agenda-file file)
  4215. (set-buffer (org-get-agenda-file-buffer file))
  4216. (unless combine
  4217. (setq ical-file (concat (file-name-as-directory dir)
  4218. (file-name-sans-extension
  4219. (file-name-nondirectory buffer-file-name))
  4220. ".ics"))
  4221. (setq ical-buffer (org-get-agenda-file-buffer ical-file))
  4222. (with-current-buffer ical-buffer (erase-buffer)))
  4223. (setq category (or org-category
  4224. (file-name-sans-extension
  4225. (file-name-nondirectory buffer-file-name))))
  4226. (if (symbolp category) (setq category (symbol-name category)))
  4227. (let ((standard-output ical-buffer))
  4228. (if combine
  4229. (and (not started) (setq started t)
  4230. (org-start-icalendar-file org-icalendar-combined-name))
  4231. (org-start-icalendar-file category))
  4232. (org-print-icalendar-entries combine)
  4233. (when (or (and combine (not files)) (not combine))
  4234. (org-finish-icalendar-file)
  4235. (set-buffer ical-buffer)
  4236. (run-hooks 'org-before-save-iCalendar-file-hook)
  4237. (save-buffer)
  4238. (run-hooks 'org-after-save-iCalendar-file-hook)
  4239. (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))
  4240. ))))
  4241. (org-release-buffers org-agenda-new-buffers))))
  4242. (defvar org-before-save-iCalendar-file-hook nil
  4243. "Hook run before an iCalendar file has been saved.
  4244. This can be used to modify the result of the export.")
  4245. (defvar org-after-save-iCalendar-file-hook nil
  4246. "Hook run after an iCalendar file has been saved.
  4247. The iCalendar buffer is still current when this hook is run.
  4248. A good way to use this is to tell a desktop calendar application to re-read
  4249. the iCalendar file.")
  4250. (defvar org-agenda-default-appointment-duration) ; defined in org-agenda.el
  4251. (defun org-print-icalendar-entries (&optional combine)
  4252. "Print iCalendar entries for the current Org-mode file to `standard-output'.
  4253. When COMBINE is non nil, add the category to each line."
  4254. (require 'org-agenda)
  4255. (let ((re1 (concat org-ts-regexp "\\|<%%([^>\n]+>"))
  4256. (re2 (concat "--?-?\\(" org-ts-regexp "\\)"))
  4257. (dts (org-ical-ts-to-string
  4258. (format-time-string (cdr org-time-stamp-formats) (current-time))
  4259. "DTSTART"))
  4260. hd ts ts2 state status (inc t) pos b sexp rrule
  4261. scheduledp deadlinep todo prefix due start
  4262. tmp pri categories entry location summary desc uid
  4263. (sexp-buffer (get-buffer-create "*ical-tmp*")))
  4264. (org-refresh-category-properties)
  4265. (save-excursion
  4266. (goto-char (point-min))
  4267. (while (re-search-forward re1 nil t)
  4268. (catch :skip
  4269. (org-agenda-skip)
  4270. (when (boundp 'org-icalendar-verify-function)
  4271. (unless (funcall org-icalendar-verify-function)
  4272. (outline-next-heading)
  4273. (backward-char 1)
  4274. (throw :skip nil)))
  4275. (setq pos (match-beginning 0)
  4276. ts (match-string 0)
  4277. inc t
  4278. hd (condition-case nil
  4279. (org-icalendar-cleanup-string
  4280. (org-get-heading))
  4281. (error (throw :skip nil)))
  4282. summary (org-icalendar-cleanup-string
  4283. (org-entry-get nil "SUMMARY"))
  4284. desc (org-icalendar-cleanup-string
  4285. (or (org-entry-get nil "DESCRIPTION")
  4286. (and org-icalendar-include-body (org-get-entry)))
  4287. t org-icalendar-include-body)
  4288. location (org-icalendar-cleanup-string
  4289. (org-entry-get nil "LOCATION" 'selective))
  4290. uid (if org-icalendar-store-UID
  4291. (org-id-get-create)
  4292. (or (org-id-get) (org-id-new)))
  4293. categories (org-export-get-categories)
  4294. deadlinep nil scheduledp nil)
  4295. (if (looking-at re2)
  4296. (progn
  4297. (goto-char (match-end 0))
  4298. (setq ts2 (match-string 1)
  4299. inc (not (string-match "[0-9]\\{1,2\\}:[0-9][0-9]" ts2))))
  4300. (setq tmp (buffer-substring (max (point-min)
  4301. (- pos org-ds-keyword-length))
  4302. pos)
  4303. ts2 (if (string-match "[0-9]\\{1,2\\}:[0-9][0-9]-\\([0-9]\\{1,2\\}:[0-9][0-9]\\)" ts)
  4304. (progn
  4305. (setq inc nil)
  4306. (replace-match "\\1" t nil ts))
  4307. ts)
  4308. deadlinep (string-match org-deadline-regexp tmp)
  4309. scheduledp (string-match org-scheduled-regexp tmp)
  4310. todo (org-get-todo-state)
  4311. ;; donep (org-entry-is-done-p)
  4312. ))
  4313. (when (and
  4314. deadlinep
  4315. (if todo
  4316. (not (memq 'event-if-todo org-icalendar-use-deadline))
  4317. (not (memq 'event-if-not-todo org-icalendar-use-deadline))))
  4318. (throw :skip t))
  4319. (when (and
  4320. scheduledp
  4321. (if todo
  4322. (not (memq 'event-if-todo org-icalendar-use-scheduled))
  4323. (not (memq 'event-if-not-todo org-icalendar-use-scheduled))))
  4324. (throw :skip t))
  4325. (setq prefix (if deadlinep "DL-" (if scheduledp "SC-" "TS-")))
  4326. (if (or (string-match org-tr-regexp hd)
  4327. (string-match org-ts-regexp hd))
  4328. (setq hd (replace-match "" t t hd)))
  4329. (if (string-match "\\+\\([0-9]+\\)\\([dwmy]\\)>" ts)
  4330. (setq rrule
  4331. (concat "\nRRULE:FREQ="
  4332. (cdr (assoc
  4333. (match-string 2 ts)
  4334. '(("d" . "DAILY")("w" . "WEEKLY")
  4335. ("m" . "MONTHLY")("y" . "YEARLY"))))
  4336. ";INTERVAL=" (match-string 1 ts)))
  4337. (setq rrule ""))
  4338. (setq summary (or summary hd))
  4339. (if (string-match org-bracket-link-regexp summary)
  4340. (setq summary
  4341. (replace-match (if (match-end 3)
  4342. (match-string 3 summary)
  4343. (match-string 1 summary))
  4344. t t summary)))
  4345. (if deadlinep (setq summary (concat "DL: " summary)))
  4346. (if scheduledp (setq summary (concat "S: " summary)))
  4347. (if (string-match "\\`<%%" ts)
  4348. (with-current-buffer sexp-buffer
  4349. (insert (substring ts 1 -1) " " summary "\n"))
  4350. (princ (format "BEGIN:VEVENT
  4351. UID: %s
  4352. %s
  4353. %s%s
  4354. SUMMARY:%s%s%s
  4355. CATEGORIES:%s
  4356. END:VEVENT\n"
  4357. (concat prefix uid)
  4358. (org-ical-ts-to-string ts "DTSTART")
  4359. (org-ical-ts-to-string ts2 "DTEND" inc)
  4360. rrule summary
  4361. (if (and desc (string-match "\\S-" desc))
  4362. (concat "\nDESCRIPTION: " desc) "")
  4363. (if (and location (string-match "\\S-" location))
  4364. (concat "\nLOCATION: " location) "")
  4365. categories)))))
  4366. (when (and org-icalendar-include-sexps
  4367. (condition-case nil (require 'icalendar) (error nil))
  4368. (fboundp 'icalendar-export-region))
  4369. ;; Get all the literal sexps
  4370. (goto-char (point-min))
  4371. (while (re-search-forward "^&?%%(" nil t)
  4372. (catch :skip
  4373. (org-agenda-skip)
  4374. (setq b (match-beginning 0))
  4375. (goto-char (1- (match-end 0)))
  4376. (forward-sexp 1)
  4377. (end-of-line 1)
  4378. (setq sexp (buffer-substring b (point)))
  4379. (with-current-buffer sexp-buffer
  4380. (insert sexp "\n"))))
  4381. (princ (org-diary-to-ical-string sexp-buffer))
  4382. (kill-buffer sexp-buffer))
  4383. (when org-icalendar-include-todo
  4384. (setq prefix "TODO-")
  4385. (goto-char (point-min))
  4386. (while (re-search-forward org-todo-line-regexp nil t)
  4387. (catch :skip
  4388. (org-agenda-skip)
  4389. (when (boundp 'org-icalendar-verify-function)
  4390. (unless (funcall org-icalendar-verify-function)
  4391. (outline-next-heading)
  4392. (backward-char 1)
  4393. (throw :skip nil)))
  4394. (setq state (match-string 2))
  4395. (setq status (if (member state org-done-keywords)
  4396. "COMPLETED" "NEEDS-ACTION"))
  4397. (when (and state
  4398. (or (not (member state org-done-keywords))
  4399. (eq org-icalendar-include-todo 'all))
  4400. (not (member org-archive-tag (org-get-tags-at)))
  4401. )
  4402. (setq hd (match-string 3)
  4403. summary (org-icalendar-cleanup-string
  4404. (org-entry-get nil "SUMMARY"))
  4405. desc (org-icalendar-cleanup-string
  4406. (or (org-entry-get nil "DESCRIPTION")
  4407. (and org-icalendar-include-body (org-get-entry)))
  4408. t org-icalendar-include-body)
  4409. location (org-icalendar-cleanup-string
  4410. (org-entry-get nil "LOCATION" 'selective))
  4411. due (and (member 'todo-due org-icalendar-use-deadline)
  4412. (org-entry-get nil "DEADLINE"))
  4413. start (and (member 'todo-start org-icalendar-use-scheduled)
  4414. (org-entry-get nil "SCHEDULED"))
  4415. categories (org-export-get-categories)
  4416. uid (if org-icalendar-store-UID
  4417. (org-id-get-create)
  4418. (or (org-id-get) (org-id-new))))
  4419. (and due (setq due (org-ical-ts-to-string due "DUE")))
  4420. (and start (setq start (org-ical-ts-to-string start "DTSTART")))
  4421. (if (string-match org-bracket-link-regexp hd)
  4422. (setq hd (replace-match (if (match-end 3) (match-string 3 hd)
  4423. (match-string 1 hd))
  4424. t t hd)))
  4425. (if (string-match org-priority-regexp hd)
  4426. (setq pri (string-to-char (match-string 2 hd))
  4427. hd (concat (substring hd 0 (match-beginning 1))
  4428. (substring hd (match-end 1))))
  4429. (setq pri org-default-priority))
  4430. (setq pri (floor (- 9 (* 8. (/ (float (- org-lowest-priority pri))
  4431. (- org-lowest-priority org-highest-priority))))))
  4432. (princ (format "BEGIN:VTODO
  4433. UID: %s
  4434. %s
  4435. SUMMARY:%s%s%s%s
  4436. CATEGORIES:%s
  4437. SEQUENCE:1
  4438. PRIORITY:%d
  4439. STATUS:%s
  4440. END:VTODO\n"
  4441. (concat prefix uid)
  4442. (or start dts)
  4443. (or summary hd)
  4444. (if (and location (string-match "\\S-" location))
  4445. (concat "\nLOCATION: " location) "")
  4446. (if (and desc (string-match "\\S-" desc))
  4447. (concat "\nDESCRIPTION: " desc) "")
  4448. (if due (concat "\n" due) "")
  4449. categories
  4450. pri status)))))))))
  4451. (defun org-export-get-categories ()
  4452. "Get categories according to `org-icalendar-categories'."
  4453. (let ((cs org-icalendar-categories) c rtn tmp)
  4454. (while (setq c (pop cs))
  4455. (cond
  4456. ((eq c 'category) (push (org-get-category) rtn))
  4457. ((eq c 'todo-state)
  4458. (setq tmp (org-get-todo-state))
  4459. (and tmp (push tmp rtn)))
  4460. ((eq c 'local-tags)
  4461. (setq rtn (append (nreverse (org-get-local-tags-at (point))) rtn)))
  4462. ((eq c 'all-tags)
  4463. (setq rtn (append (nreverse (org-get-tags-at (point))) rtn)))))
  4464. (mapconcat 'identity (nreverse rtn) ",")))
  4465. (defun org-icalendar-cleanup-string (s &optional is-body maxlength)
  4466. "Take out stuff and quote what needs to be quoted.
  4467. When IS-BODY is non-nil, assume that this is the body of an item, clean up
  4468. whitespace, newlines, drawers, and timestamps, and cut it down to MAXLENGTH
  4469. characters."
  4470. (if (not s)
  4471. nil
  4472. (when is-body
  4473. (let ((re (concat "\\(" org-drawer-regexp "\\)[^\000]*?:END:.*\n?"))
  4474. (re2 (concat "^[ \t]*" org-keyword-time-regexp ".*\n?")))
  4475. (while (string-match re s) (setq s (replace-match "" t t s)))
  4476. (while (string-match re2 s) (setq s (replace-match "" t t s)))))
  4477. (let ((start 0))
  4478. (while (string-match "\\([,;]\\)" s start)
  4479. (setq start (+ (match-beginning 0) 2)
  4480. s (replace-match "\\\\\\1" nil nil s))))
  4481. (setq s (org-trim s))
  4482. (when is-body
  4483. (while (string-match "[ \t]*\n[ \t]*" s)
  4484. (setq s (replace-match "\\n" t t s))))
  4485. (if is-body
  4486. (if maxlength
  4487. (if (and (numberp maxlength)
  4488. (> (length s) maxlength))
  4489. (setq s (substring s 0 maxlength)))))
  4490. s))
  4491. (defun org-icalendar-cleanup-string-rfc2455 (s &optional is-body maxlength)
  4492. "Take out stuff and quote what needs to be quoted.
  4493. When IS-BODY is non-nil, assume that this is the body of an item, clean up
  4494. whitespace, newlines, drawers, and timestamps, and cut it down to MAXLENGTH
  4495. characters.
  4496. This seems to be more like RFC 2455, but it causes problems, so it is
  4497. not used right now."
  4498. (if (not s)
  4499. nil
  4500. (if is-body
  4501. (let ((re (concat "\\(" org-drawer-regexp "\\)[^\000]*?:END:.*\n?"))
  4502. (re2 (concat "^[ \t]*" org-keyword-time-regexp ".*\n?")))
  4503. (while (string-match re s) (setq s (replace-match "" t t s)))
  4504. (while (string-match re2 s) (setq s (replace-match "" t t s)))
  4505. (setq s (org-trim s))
  4506. (while (string-match "[ \t]*\n[ \t]*" s)
  4507. (setq s (replace-match "\\n" t t s)))
  4508. (if maxlength
  4509. (if (and (numberp maxlength)
  4510. (> (length s) maxlength))
  4511. (setq s (substring s 0 maxlength)))))
  4512. (setq s (org-trim s)))
  4513. (while (string-match "\"" s) (setq s (replace-match "''" t t s)))
  4514. (when (string-match "[;,:]" s) (setq s (concat "\"" s "\"")))
  4515. s))
  4516. (defun org-get-entry ()
  4517. "Clean-up description string."
  4518. (save-excursion
  4519. (org-back-to-heading t)
  4520. (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
  4521. (defun org-start-icalendar-file (name)
  4522. "Start an iCalendar file by inserting the header."
  4523. (let ((user user-full-name)
  4524. (name (or name "unknown"))
  4525. (timezone (cadr (current-time-zone))))
  4526. (princ
  4527. (format "BEGIN:VCALENDAR
  4528. VERSION:2.0
  4529. X-WR-CALNAME:%s
  4530. PRODID:-//%s//Emacs with Org-mode//EN
  4531. X-WR-TIMEZONE:%s
  4532. CALSCALE:GREGORIAN\n" name user timezone))))
  4533. (defun org-finish-icalendar-file ()
  4534. "Finish an iCalendar file by inserting the END statement."
  4535. (princ "END:VCALENDAR\n"))
  4536. (defun org-ical-ts-to-string (s keyword &optional inc)
  4537. "Take a time string S and convert it to iCalendar format.
  4538. KEYWORD is added in front, to make a complete line like DTSTART....
  4539. When INC is non-nil, increase the hour by two (if time string contains
  4540. a time), or the day by one (if it does not contain a time)."
  4541. (let ((t1 (org-parse-time-string s 'nodefault))
  4542. t2 fmt have-time time)
  4543. (if (and (car t1) (nth 1 t1) (nth 2 t1))
  4544. (setq t2 t1 have-time t)
  4545. (setq t2 (org-parse-time-string s)))
  4546. (let ((s (car t2)) (mi (nth 1 t2)) (h (nth 2 t2))
  4547. (d (nth 3 t2)) (m (nth 4 t2)) (y (nth 5 t2)))
  4548. (when inc
  4549. (if have-time
  4550. (if org-agenda-default-appointment-duration
  4551. (setq mi (+ org-agenda-default-appointment-duration mi))
  4552. (setq h (+ 2 h)))
  4553. (setq d (1+ d))))
  4554. (setq time (encode-time s mi h d m y)))
  4555. (setq fmt (if have-time ":%Y%m%dT%H%M%S" ";VALUE=DATE:%Y%m%d"))
  4556. (concat keyword (format-time-string fmt time))))
  4557. ;;; XOXO export
  4558. (defun org-export-as-xoxo-insert-into (buffer &rest output)
  4559. (with-current-buffer buffer
  4560. (apply 'insert output)))
  4561. (put 'org-export-as-xoxo-insert-into 'lisp-indent-function 1)
  4562. ;;;###autoload
  4563. (defun org-export-as-xoxo (&optional buffer)
  4564. "Export the org buffer as XOXO.
  4565. The XOXO buffer is named *xoxo-<source buffer name>*"
  4566. (interactive (list (current-buffer)))
  4567. ;; A quickie abstraction
  4568. ;; Output everything as XOXO
  4569. (with-current-buffer (get-buffer buffer)
  4570. (let* ((pos (point))
  4571. (opt-plist (org-combine-plists (org-default-export-plist)
  4572. (org-infile-export-plist)))
  4573. (filename (concat (file-name-as-directory
  4574. (org-export-directory :xoxo opt-plist))
  4575. (file-name-sans-extension
  4576. (file-name-nondirectory buffer-file-name))
  4577. ".html"))
  4578. (out (find-file-noselect filename))
  4579. (last-level 1)
  4580. (hanging-li nil))
  4581. (goto-char (point-min)) ;; CD: beginning-of-buffer is not allowed.
  4582. ;; Check the output buffer is empty.
  4583. (with-current-buffer out (erase-buffer))
  4584. ;; Kick off the output
  4585. (org-export-as-xoxo-insert-into out "<ol class='xoxo'>\n")
  4586. (while (re-search-forward "^\\(\\*+\\)[ \t]+\\(.+\\)" (point-max) 't)
  4587. (let* ((hd (match-string-no-properties 1))
  4588. (level (length hd))
  4589. (text (concat
  4590. (match-string-no-properties 2)
  4591. (save-excursion
  4592. (goto-char (match-end 0))
  4593. (let ((str ""))
  4594. (catch 'loop
  4595. (while 't
  4596. (forward-line)
  4597. (if (looking-at "^[ \t]\\(.*\\)")
  4598. (setq str (concat str (match-string-no-properties 1)))
  4599. (throw 'loop str)))))))))
  4600. ;; Handle level rendering
  4601. (cond
  4602. ((> level last-level)
  4603. (org-export-as-xoxo-insert-into out "\n<ol>\n"))
  4604. ((< level last-level)
  4605. (dotimes (- (- last-level level) 1)
  4606. (if hanging-li
  4607. (org-export-as-xoxo-insert-into out "</li>\n"))
  4608. (org-export-as-xoxo-insert-into out "</ol>\n"))
  4609. (when hanging-li
  4610. (org-export-as-xoxo-insert-into out "</li>\n")
  4611. (setq hanging-li nil)))
  4612. ((equal level last-level)
  4613. (if hanging-li
  4614. (org-export-as-xoxo-insert-into out "</li>\n")))
  4615. )
  4616. (setq last-level level)
  4617. ;; And output the new li
  4618. (setq hanging-li 't)
  4619. (if (equal ?+ (elt text 0))
  4620. (org-export-as-xoxo-insert-into out "<li class='" (substring text 1) "'>")
  4621. (org-export-as-xoxo-insert-into out "<li>" text))))
  4622. ;; Finally finish off the ol
  4623. (dotimes (- last-level 1)
  4624. (if hanging-li
  4625. (org-export-as-xoxo-insert-into out "</li>\n"))
  4626. (org-export-as-xoxo-insert-into out "</ol>\n"))
  4627. (goto-char pos)
  4628. ;; Finish the buffer off and clean it up.
  4629. (switch-to-buffer-other-window out)
  4630. (indent-region (point-min) (point-max) nil)
  4631. (save-buffer)
  4632. (goto-char (point-min))
  4633. )))
  4634. (provide 'org-exp)
  4635. ;; arch-tag: 65985fe9-095c-49c7-a7b6-cb4ee15c0a95
  4636. ;;; org-exp.el ends here