org-exp.el 178 KB

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