org-element.el 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795
  1. ;;; org-element.el --- Parser And Applications for Org syntax
  2. ;; Copyright (C) 2012 Free Software Foundation, Inc.
  3. ;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; This program is free software; you can redistribute it and/or modify
  6. ;; it under the terms of the GNU General Public License as published by
  7. ;; the Free Software Foundation, either version 3 of the License, or
  8. ;; (at your option) any later version.
  9. ;; This program is distributed in the hope that it will be useful,
  10. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. ;; GNU General Public License for more details.
  13. ;; This file is not part of GNU Emacs.
  14. ;; You should have received a copy of the GNU General Public License
  15. ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. ;;; Commentary:
  17. ;; Org syntax can be divided into three categories: "Greater
  18. ;; elements", "Elements" and "Objects".
  19. ;; An object can be defined anywhere on a line. It may span over more
  20. ;; than a line but never contains a blank one. Objects belong to the
  21. ;; following types: `emphasis', `entity', `export-snippet',
  22. ;; `footnote-reference', `inline-babel-call', `inline-src-block',
  23. ;; `latex-fragment', `line-break', `link', `macro', `radio-target',
  24. ;; `statistics-cookie', `subscript', `superscript', `target',
  25. ;; `time-stamp' and `verbatim'.
  26. ;; An element always starts and ends at the beginning of a line. The
  27. ;; only element's type containing objects is called a `paragraph'.
  28. ;; Other types are: `comment', `comment-block', `example-block',
  29. ;; `export-block', `fixed-width', `horizontal-rule', `keyword',
  30. ;; `latex-environment', `babel-call', `property-drawer',
  31. ;; `quote-section', `src-block', `table' and `verse-block'.
  32. ;; Elements containing paragraphs are called greater elements.
  33. ;; Concerned types are: `center-block', `drawer', `dynamic-block',
  34. ;; `footnote-definition', `headline', `inlinetask', `item',
  35. ;; `plain-list', `quote-block', `section' and `special-block'.
  36. ;; Greater elements (excepted `headline', `item' and `section' types)
  37. ;; and elements (excepted `keyword', `babel-call', and
  38. ;; `property-drawer' types) can have a fixed set of keywords as
  39. ;; attributes. Those are called "affiliated keywords", to distinguish
  40. ;; them from others keywords, which are full-fledged elements. In
  41. ;; particular, the "name" affiliated keyword allows to label almost
  42. ;; any element in an Org buffer.
  43. ;; Notwithstanding affiliated keywords, each greater element, element
  44. ;; and object has a fixed set of properties attached to it. Among
  45. ;; them, three are shared by all types: `:begin' and `:end', which
  46. ;; refer to the beginning and ending buffer positions of the
  47. ;; considered element or object, and `:post-blank', which holds the
  48. ;; number of blank lines, or white spaces, at its end.
  49. ;; Some elements also have special properties whose value can hold
  50. ;; objects themselves (i.e. an item tag, an headline name, a table
  51. ;; cell). Such values are called "secondary strings".
  52. ;; Lisp-wise, an element or an object can be represented as a list.
  53. ;; It follows the pattern (TYPE PROPERTIES CONTENTS), where:
  54. ;; TYPE is a symbol describing the Org element or object.
  55. ;; PROPERTIES is the property list attached to it. See docstring of
  56. ;; appropriate parsing function to get an exhaustive
  57. ;; list.
  58. ;; CONTENTS is a list of elements, objects or raw strings contained
  59. ;; in the current element or object, when applicable.
  60. ;; An Org buffer is a nested list of such elements and objects, whose
  61. ;; type is `org-data' and properties is nil.
  62. ;; The first part of this file implements a parser and an interpreter
  63. ;; for each type of Org syntax.
  64. ;; The next two parts introduce two accessors and a function
  65. ;; retrieving the smallest element containing point (respectively
  66. ;; `org-element-get-property', `org-element-get-contents' and
  67. ;; `org-element-at-point').
  68. ;; The following part creates a fully recursive buffer parser. It
  69. ;; also provides a tool to map a function to elements or objects
  70. ;; matching some criteria in the parse tree. Functions of interest
  71. ;; are `org-element-parse-buffer', `org-element-map' and, to a lesser
  72. ;; extent, `org-element-parse-secondary-string'.
  73. ;; The penultimate part is the cradle of an interpreter for the
  74. ;; obtained parse tree: `org-element-interpret-data' (and its
  75. ;; relative, `org-element-interpret-secondary').
  76. ;; The library ends by furnishing a set of interactive tools for
  77. ;; element's navigation and manipulation.
  78. ;;; Code:
  79. (eval-when-compile (require 'cl))
  80. (require 'org)
  81. (declare-function org-inlinetask-goto-end "org-inlinetask" ())
  82. ;;; Greater elements
  83. ;; For each greater element type, we define a parser and an
  84. ;; interpreter.
  85. ;; A parser (`item''s excepted) accepts no argument and represents the
  86. ;; element or object as the list described above. An interpreter
  87. ;; accepts two arguments: the list representation of the element or
  88. ;; object, and its contents. The latter may be nil, depending on the
  89. ;; element or object considered. It returns the appropriate Org
  90. ;; syntax, as a string.
  91. ;; Parsing functions must follow the naming convention:
  92. ;; org-element-TYPE-parser, where TYPE is greater element's type, as
  93. ;; defined in `org-element-greater-elements'.
  94. ;;
  95. ;; Similarly, interpreting functions must follow the naming
  96. ;; convention: org-element-TYPE-interpreter.
  97. ;; With the exception of `headline' and `item' types, greater elements
  98. ;; cannot contain other greater elements of their own type.
  99. ;; Beside implementing a parser and an interpreter, adding a new
  100. ;; greater element requires to tweak `org-element-guess-type'.
  101. ;; Moreover, the newly defined type must be added to both
  102. ;; `org-element-all-elements' and `org-element-greater-elements'.
  103. ;;;; Center Block
  104. (defun org-element-center-block-parser ()
  105. "Parse a center block.
  106. Return a list whose car is `center-block' and cdr is a plist
  107. containing `:begin', `:end', `:hiddenp', `:contents-begin',
  108. `:contents-end' and `:post-blank' keywords.
  109. Assume point is at beginning or end of the block."
  110. (save-excursion
  111. (let* ((case-fold-search t)
  112. (keywords (progn
  113. (end-of-line)
  114. (re-search-backward
  115. (concat "^[ \t]*#\\+begin_center") nil t)
  116. (org-element-collect-affiliated-keywords)))
  117. (begin (car keywords))
  118. (contents-begin (progn (forward-line) (point)))
  119. (hidden (org-truely-invisible-p))
  120. (contents-end (progn (re-search-forward
  121. (concat "^[ \t]*#\\+end_center") nil t)
  122. (point-at-bol)))
  123. (pos-before-blank (progn (forward-line) (point)))
  124. (end (progn (org-skip-whitespace)
  125. (if (eobp) (point) (point-at-bol)))))
  126. `(center-block
  127. (:begin ,begin
  128. :end ,end
  129. :hiddenp ,hidden
  130. :contents-begin ,contents-begin
  131. :contents-end ,contents-end
  132. :post-blank ,(count-lines pos-before-blank end)
  133. ,@(cadr keywords))))))
  134. (defun org-element-center-block-interpreter (center-block contents)
  135. "Interpret CENTER-BLOCK element as Org syntax.
  136. CONTENTS is the contents of the element."
  137. (format "#+begin_center\n%s#+end_center" contents))
  138. ;;;; Drawer
  139. (defun org-element-drawer-parser ()
  140. "Parse a drawer.
  141. Return a list whose car is `drawer' and cdr is a plist containing
  142. `:drawer-name', `:begin', `:end', `:hiddenp', `:contents-begin',
  143. `:contents-end' and `:post-blank' keywords.
  144. Assume point is at beginning of drawer."
  145. (save-excursion
  146. (let* ((case-fold-search t)
  147. (name (progn (looking-at org-drawer-regexp)
  148. (org-match-string-no-properties 1)))
  149. (keywords (org-element-collect-affiliated-keywords))
  150. (begin (car keywords))
  151. (contents-begin (progn (forward-line) (point)))
  152. (hidden (org-truely-invisible-p))
  153. (contents-end (progn (re-search-forward "^[ \t]*:END:" nil t)
  154. (point-at-bol)))
  155. (pos-before-blank (progn (forward-line) (point)))
  156. (end (progn (org-skip-whitespace)
  157. (if (eobp) (point) (point-at-bol)))))
  158. `(drawer
  159. (:begin ,begin
  160. :end ,end
  161. :drawer-name ,name
  162. :hiddenp ,hidden
  163. :contents-begin ,contents-begin
  164. :contents-end ,contents-end
  165. :post-blank ,(count-lines pos-before-blank end)
  166. ,@(cadr keywords))))))
  167. (defun org-element-drawer-interpreter (drawer contents)
  168. "Interpret DRAWER element as Org syntax.
  169. CONTENTS is the contents of the element."
  170. (format ":%s:\n%s:END:"
  171. (org-element-get-property :drawer-name drawer)
  172. contents))
  173. ;;;; Dynamic Block
  174. (defun org-element-dynamic-block-parser ()
  175. "Parse a dynamic block.
  176. Return a list whose car is `dynamic-block' and cdr is a plist
  177. containing `:block-name', `:begin', `:end', `:hiddenp',
  178. `:contents-begin', `:contents-end', `:arguments' and
  179. `:post-blank' keywords.
  180. Assume point is at beginning of dynamic block."
  181. (save-excursion
  182. (let* ((case-fold-search t)
  183. (name (progn (looking-at org-dblock-start-re)
  184. (org-match-string-no-properties 1)))
  185. (arguments (org-match-string-no-properties 3))
  186. (keywords (org-element-collect-affiliated-keywords))
  187. (begin (car keywords))
  188. (contents-begin (progn (forward-line) (point)))
  189. (hidden (org-truely-invisible-p))
  190. (contents-end (progn (re-search-forward org-dblock-end-re nil t)
  191. (point-at-bol)))
  192. (pos-before-blank (progn (forward-line) (point)))
  193. (end (progn (org-skip-whitespace)
  194. (if (eobp) (point) (point-at-bol)))))
  195. (list 'dynamic-block
  196. `(:begin ,begin
  197. :end ,end
  198. :block-name ,name
  199. :arguments ,arguments
  200. :hiddenp ,hidden
  201. :contents-begin ,contents-begin
  202. :contents-end ,contents-end
  203. :post-blank ,(count-lines pos-before-blank end)
  204. ,@(cadr keywords))))))
  205. (defun org-element-dynamic-block-interpreter (dynamic-block contents)
  206. "Interpret DYNAMIC-BLOCK element as Org syntax.
  207. CONTENTS is the contents of the element."
  208. (format "#+BEGIN: %s%s\n%s#+END:"
  209. (org-element-get-property :block-name dynamic-block)
  210. (let ((args (org-element-get-property :arguments dynamic-block)))
  211. (and arg (concat " " args)))
  212. contents))
  213. ;;;; Footnote Definition
  214. (defun org-element-footnote-definition-parser ()
  215. "Parse a footnote definition.
  216. Return a list whose car is `footnote-definition' and cdr is
  217. a plist containing `:label', `:begin' `:end', `:contents-begin',
  218. `:contents-end' and `:post-blank' keywords."
  219. (save-excursion
  220. (let* ((f-def (org-footnote-at-definition-p))
  221. (label (car f-def))
  222. (keywords (progn (goto-char (nth 1 f-def))
  223. (org-element-collect-affiliated-keywords)))
  224. (begin (car keywords))
  225. (contents-begin (progn (looking-at (concat "\\[" label "\\]"))
  226. (goto-char (match-end 0))
  227. (org-skip-whitespace)
  228. (point)))
  229. (end (goto-char (nth 2 f-def)))
  230. (contents-end (progn (skip-chars-backward " \r\t\n")
  231. (forward-line)
  232. (point))))
  233. `(footnote-definition
  234. (:label ,label
  235. :begin ,begin
  236. :end ,end
  237. :contents-begin ,contents-begin
  238. :contents-end ,contents-end
  239. :post-blank ,(count-lines contents-end end)
  240. ,@(cadr keywords))))))
  241. (defun org-element-footnote-definition-interpreter (footnote-definition contents)
  242. "Interpret FOOTNOTE-DEFINITION element as Org syntax.
  243. CONTENTS is the contents of the footnote-definition."
  244. (concat (format "[%s]" (org-element-get-property :label footnote-definition))
  245. " "
  246. contents))
  247. ;;;; Headline
  248. (defun org-element-headline-parser ()
  249. "Parse an headline.
  250. Return a list whose car is `headline' and cdr is a plist
  251. containing `:raw-value', `:title', `:begin', `:end',
  252. `:pre-blank', `:hiddenp', `:contents-begin' and `:contents-end',
  253. `:level', `:priority', `:tags', `:todo-keyword',`:todo-type',
  254. `:scheduled', `:deadline', `:timestamp', `:clock', `:category',
  255. `:quotedp', `:archivedp', `:commentedp' and `:footnote-section-p'
  256. keywords.
  257. The plist also contains any property set in the property drawer,
  258. with its name in lowercase, the underscores replaced with hyphens
  259. and colons at the beginning (i.e. `:custom-id').
  260. Assume point is at beginning of the headline."
  261. (save-excursion
  262. (let* ((components (org-heading-components))
  263. (level (nth 1 components))
  264. (todo (nth 2 components))
  265. (todo-type (and todo
  266. (if (member todo org-done-keywords) 'done 'todo)))
  267. (tags (nth 5 components))
  268. (raw-value (nth 4 components))
  269. (quotedp (string-match (format "^%s +" org-quote-string) raw-value))
  270. (commentedp (string-match
  271. (format "^%s +" org-comment-string) raw-value))
  272. (archivedp (and tags
  273. (string-match (format ":%s:" org-archive-tag) tags)))
  274. (footnote-section-p (and org-footnote-section
  275. (string= org-footnote-section raw-value)))
  276. (standard-props (let (plist)
  277. (mapc
  278. (lambda (p)
  279. (let ((p-name (downcase (car p))))
  280. (while (string-match "_" p-name)
  281. (setq p-name
  282. (replace-match "-" nil nil p-name)))
  283. (setq p-name (intern (concat ":" p-name)))
  284. (setq plist
  285. (plist-put plist p-name (cdr p)))))
  286. (org-entry-properties nil 'standard))
  287. plist))
  288. (time-props (org-entry-properties nil 'special "CLOCK"))
  289. (scheduled (cdr (assoc "SCHEDULED" time-props)))
  290. (deadline (cdr (assoc "DEADLINE" time-props)))
  291. (clock (cdr (assoc "CLOCK" time-props)))
  292. (timestamp (cdr (assoc "TIMESTAMP" time-props)))
  293. (begin (point))
  294. (pos-after-head (save-excursion (forward-line) (point)))
  295. (contents-begin (save-excursion (forward-line)
  296. (org-skip-whitespace)
  297. (if (eobp) (point) (point-at-bol))))
  298. (hidden (save-excursion (forward-line) (org-truely-invisible-p)))
  299. (end (progn (goto-char (org-end-of-subtree t t))))
  300. (contents-end (progn (skip-chars-backward " \r\t\n")
  301. (forward-line)
  302. (point)))
  303. title)
  304. ;; Clean RAW-VALUE from any quote or comment string.
  305. (when (or quotedp commentedp)
  306. (setq raw-value
  307. (replace-regexp-in-string
  308. (concat "\\(" org-quote-string "\\|" org-comment-string "\\) +")
  309. ""
  310. raw-value)))
  311. ;; Clean TAGS from archive tag, if any.
  312. (when archivedp
  313. (setq tags
  314. (and (not (string= tags (format ":%s:" org-archive-tag)))
  315. (replace-regexp-in-string
  316. (concat org-archive-tag ":") "" tags)))
  317. (when (string= tags ":") (setq tags nil)))
  318. ;; Then get TITLE.
  319. (setq title (org-element-parse-secondary-string
  320. raw-value
  321. (cdr (assq 'headline org-element-string-restrictions))))
  322. `(headline
  323. (:raw-value ,raw-value
  324. :title ,title
  325. :begin ,begin
  326. :end ,end
  327. :pre-blank ,(count-lines pos-after-head contents-begin)
  328. :hiddenp ,hidden
  329. :contents-begin ,contents-begin
  330. :contents-end ,contents-end
  331. :level ,level
  332. :priority ,(nth 3 components)
  333. :tags ,tags
  334. :todo-keyword ,todo
  335. :todo-type ,todo-type
  336. :scheduled ,scheduled
  337. :deadline ,deadline
  338. :timestamp ,timestamp
  339. :clock ,clock
  340. :post-blank ,(count-lines contents-end end)
  341. :footnote-section-p ,footnote-section-p
  342. :archivedp ,archivedp
  343. :commentedp ,commentedp
  344. :quotedp ,quotedp
  345. ,@standard-props)))))
  346. (defun org-element-headline-interpreter (headline contents)
  347. "Interpret HEADLINE element as Org syntax.
  348. CONTENTS is the contents of the element."
  349. (let* ((level (org-element-get-property :level headline))
  350. (todo (org-element-get-property :todo-keyword headline))
  351. (priority (org-element-get-property :priority headline))
  352. (title (org-element-get-property :raw-value headline))
  353. (tags (let ((tag-string (org-element-get-property :tags headline))
  354. (archivedp (org-element-get-property :archivedp headline)))
  355. (cond
  356. ((and (not tag-string) archivedp)
  357. (format ":%s:" org-archive-tag))
  358. (archivedp (concat ":" org-archive-tag tag-string))
  359. (t tag-string))))
  360. (commentedp (org-element-get-property :commentedp headline))
  361. (quotedp (org-element-get-property :quotedp headline))
  362. (pre-blank (org-element-get-property :pre-blank headline))
  363. (heading (concat (make-string level ?*)
  364. (and todo (concat " " todo))
  365. (and quotedp (concat " " org-quote-string))
  366. (and commentedp (concat " " org-comment-string))
  367. (and priority (concat " " priority))
  368. (cond ((and org-footnote-section
  369. (org-element-get-property
  370. :footnote-section-p headline))
  371. (concat " " org-footnote-section))
  372. (title (concat " " title)))))
  373. ;; Align tags.
  374. (tags-fmt (when tags
  375. (let ((tags-len (length tags)))
  376. (format "%% %ds"
  377. (cond
  378. ((zerop org-tags-column) (1+ tags-len))
  379. ((< org-tags-column 0)
  380. (max (- (+ org-tags-column (length heading)))
  381. (1+ tags-len)))
  382. (t (max (+ (- org-tags-column (length heading))
  383. tags-len)
  384. (1+ tags-len)))))))))
  385. (concat heading (and tags (format tags-fmt tags))
  386. (make-string (1+ pre-blank) 10)
  387. contents)))
  388. ;;;; Inlinetask
  389. (defun org-element-inlinetask-parser ()
  390. "Parse an inline task.
  391. Return a list whose car is `inlinetask' and cdr is a plist
  392. containing `:raw-value', `:title', `:begin', `:end', `:hiddenp',
  393. `:contents-begin' and `:contents-end', `:level', `:priority',
  394. `:raw-value', `:tags', `:todo-keyword', `:todo-type',
  395. `:scheduled', `:deadline', `:timestamp', `:clock' and
  396. `:post-blank' keywords.
  397. The plist also contains any property set in the property drawer,
  398. with its name in lowercase, the underscores replaced with hyphens
  399. and colons at the beginning (i.e. `:custom-id').
  400. Assume point is at beginning of the inline task."
  401. (save-excursion
  402. (let* ((keywords (org-element-collect-affiliated-keywords))
  403. (begin (car keywords))
  404. (components (org-heading-components))
  405. (todo (nth 2 components))
  406. (todo-type (and todo
  407. (if (member todo org-done-keywords) 'done 'todo)))
  408. (raw-value (nth 4 components))
  409. (standard-props (let (plist)
  410. (mapc
  411. (lambda (p)
  412. (let ((p-name (downcase (car p))))
  413. (while (string-match "_" p-name)
  414. (setq p-name
  415. (replace-match "-" nil nil p-name)))
  416. (setq p-name (intern (concat ":" p-name)))
  417. (setq plist
  418. (plist-put plist p-name (cdr p)))))
  419. (org-entry-properties nil 'standard))
  420. plist))
  421. (time-props (org-entry-properties nil 'special "CLOCK"))
  422. (scheduled (cdr (assoc "SCHEDULED" time-props)))
  423. (deadline (cdr (assoc "DEADLINE" time-props)))
  424. (clock (cdr (assoc "CLOCK" time-props)))
  425. (timestamp (cdr (assoc "TIMESTAMP" time-props)))
  426. (title (org-element-parse-secondary-string
  427. raw-value
  428. (cdr (assq 'inlinetask org-element-string-restrictions))))
  429. (contents-begin (save-excursion (forward-line) (point)))
  430. (hidden (org-truely-invisible-p))
  431. (pos-before-blank (org-inlinetask-goto-end))
  432. ;; In the case of a single line task, CONTENTS-BEGIN and
  433. ;; CONTENTS-END might overlap.
  434. (contents-end (max contents-begin
  435. (save-excursion (forward-line -1) (point))))
  436. (end (progn (org-skip-whitespace)
  437. (if (eobp) (point) (point-at-bol)))))
  438. `(inlinetask
  439. (:raw-value ,raw-value
  440. :title ,title
  441. :begin ,begin
  442. :end ,end
  443. :hiddenp ,(and (> contents-end contents-begin) hidden)
  444. :contents-begin ,contents-begin
  445. :contents-end ,contents-end
  446. :level ,(nth 1 components)
  447. :priority ,(nth 3 components)
  448. :tags ,(nth 5 components)
  449. :todo-keyword ,todo
  450. :todo-type ,todo-type
  451. :scheduled ,scheduled
  452. :deadline ,deadline
  453. :timestamp ,timestamp
  454. :clock ,clock
  455. :post-blank ,(count-lines pos-before-blank end)
  456. ,@standard-props
  457. ,@(cadr keywords))))))
  458. (defun org-element-inlinetask-interpreter (inlinetask contents)
  459. "Interpret INLINETASK element as Org syntax.
  460. CONTENTS is the contents of inlinetask."
  461. (let* ((level (org-element-get-property :level inlinetask))
  462. (todo (org-element-get-property :todo-keyword inlinetask))
  463. (priority (org-element-get-property :priority inlinetask))
  464. (title (org-element-get-property :raw-value inlinetask))
  465. (tags (org-element-get-property :tags inlinetask))
  466. (task (concat (make-string level ?*)
  467. (and todo (concat " " todo))
  468. (and priority (concat " " priority))
  469. (and title (concat " " title))))
  470. ;; Align tags.
  471. (tags-fmt (when tags
  472. (format "%% %ds"
  473. (cond
  474. ((zerop org-tags-column) 1)
  475. ((< 0 org-tags-column)
  476. (max (+ org-tags-column
  477. (length inlinetask)
  478. (length tags))
  479. 1))
  480. (t (max (- org-tags-column (length inlinetask))
  481. 1)))))))
  482. (concat inlinetask (and tags (format tags-fmt tags) "\n" contents))))
  483. ;;;; Item
  484. (defun org-element-item-parser (struct)
  485. "Parse an item.
  486. STRUCT is the structure of the plain list.
  487. Return a list whose car is `item' and cdr is a plist containing
  488. `:bullet', `:begin', `:end', `:contents-begin', `:contents-end',
  489. `:checkbox', `:counter', `:tag', `:raw-tag', `:structure',
  490. `:hiddenp' and `:post-blank' keywords.
  491. Assume point is at the beginning of the item."
  492. (save-excursion
  493. (beginning-of-line)
  494. (let* ((begin (point))
  495. (bullet (org-list-get-bullet (point) struct))
  496. (checkbox (let ((box (org-list-get-checkbox begin struct)))
  497. (cond ((equal "[ ]" box) 'off)
  498. ((equal "[X]" box) 'on)
  499. ((equal "[-]" box) 'trans))))
  500. (counter (let ((c (org-list-get-counter begin struct)))
  501. (cond
  502. ((not c) nil)
  503. ((string-match "[A-Za-z]" c)
  504. (- (string-to-char (upcase (match-string 0 c)))
  505. 64))
  506. ((string-match "[0-9]+" c)
  507. (string-to-number (match-string 0 c))))))
  508. (raw-tag (org-list-get-tag begin struct))
  509. (tag (and raw-tag
  510. (org-element-parse-secondary-string
  511. raw-tag
  512. (cdr (assq 'item org-element-string-restrictions)))))
  513. (end (org-list-get-item-end begin struct))
  514. (contents-begin (progn (looking-at org-list-full-item-re)
  515. (goto-char (match-end 0))
  516. (org-skip-whitespace)
  517. (if (>= (point) end)
  518. (point-at-bol)
  519. (point))))
  520. (hidden (progn (forward-line)
  521. (and (not (= (point) end))
  522. (org-truely-invisible-p))))
  523. (contents-end (progn (goto-char end)
  524. (skip-chars-backward " \r\t\n")
  525. (forward-line)
  526. (point))))
  527. `(item
  528. (:bullet ,bullet
  529. :begin ,begin
  530. :end ,end
  531. ;; CONTENTS-BEGIN and CONTENTS-END may be mixed
  532. ;; up in the case of an empty item separated
  533. ;; from the next by a blank line. Thus, ensure
  534. ;; the former is always the smallest of two.
  535. :contents-begin ,(min contents-begin contents-end)
  536. :contents-end ,(max contents-begin contents-end)
  537. :checkbox ,checkbox
  538. :counter ,counter
  539. :raw-tag ,raw-tag
  540. :tag ,tag
  541. :hiddenp ,hidden
  542. :structure ,struct
  543. :post-blank ,(count-lines contents-end end))))))
  544. (defun org-element-item-interpreter (item contents)
  545. "Interpret ITEM element as Org syntax.
  546. CONTENTS is the contents of the element."
  547. (let* ((bullet (org-element-get-property :bullet item))
  548. (checkbox (org-element-get-property :checkbox item))
  549. (counter (org-element-get-property :counter item))
  550. (tag (org-element-get-property :raw-tag item))
  551. ;; Compute indentation.
  552. (ind (make-string (length bullet) 32)))
  553. ;; Indent contents.
  554. (concat
  555. bullet
  556. (when (and org-list-two-spaces-after-bullet-regexp
  557. (string-match org-list-two-spaces-after-bullet-regexp bullet))
  558. " ")
  559. (and counter (format "[@%d] " counter))
  560. (cond
  561. ((eq checkbox 'on) "[X] ")
  562. ((eq checkbox 'off) "[ ] ")
  563. ((eq checkbox 'trans) "[-] "))
  564. (and tag (format "%s :: " tag))
  565. (org-trim
  566. (replace-regexp-in-string
  567. "\\(^\\)[ \t]*\\S-" ind contents nil nil 1)))))
  568. ;;;; Plain List
  569. (defun org-element-plain-list-parser (&optional structure)
  570. "Parse a plain list.
  571. Return a list whose car is `plain-list' and cdr is a plist
  572. containing `:type', `:begin', `:end', `:contents-begin' and
  573. `:contents-end', `:level', `:structure' and `:post-blank'
  574. keywords.
  575. Assume point is at one of the list items."
  576. (save-excursion
  577. (let* ((struct (or structure (org-list-struct)))
  578. (prevs (org-list-prevs-alist struct))
  579. (parents (org-list-parents-alist struct))
  580. (type (org-list-get-list-type (point) struct prevs))
  581. (contents-begin (goto-char
  582. (org-list-get-list-begin (point) struct prevs)))
  583. (keywords (org-element-collect-affiliated-keywords))
  584. (begin (car keywords))
  585. (contents-end (goto-char
  586. (org-list-get-list-end (point) struct prevs)))
  587. (end (save-excursion (org-skip-whitespace)
  588. (if (eobp) (point) (point-at-bol))))
  589. (level 0))
  590. ;; Get list level.
  591. (let ((item contents-begin))
  592. (while (setq item
  593. (org-list-get-parent
  594. (org-list-get-list-begin item struct prevs)
  595. struct parents))
  596. (incf level)))
  597. ;; Blank lines below list belong to the top-level list only.
  598. (when (> level 0)
  599. (setq end (min (org-list-get-bottom-point struct)
  600. (progn (org-skip-whitespace)
  601. (if (eobp) (point) (point-at-bol))))))
  602. ;; Return value.
  603. `(plain-list
  604. (:type ,type
  605. :begin ,begin
  606. :end ,end
  607. :contents-begin ,contents-begin
  608. :contents-end ,contents-end
  609. :level ,level
  610. :structure ,struct
  611. :post-blank ,(count-lines contents-end end)
  612. ,@(cadr keywords))))))
  613. (defun org-element-plain-list-interpreter (plain-list contents)
  614. "Interpret PLAIN-LIST element as Org syntax.
  615. CONTENTS is the contents of the element."
  616. contents)
  617. ;;;; Quote Block
  618. (defun org-element-quote-block-parser ()
  619. "Parse a quote block.
  620. Return a list whose car is `quote-block' and cdr is a plist
  621. containing `:begin', `:end', `:hiddenp', `:contents-begin',
  622. `:contents-end' and `:post-blank' keywords.
  623. Assume point is at beginning or end of the block."
  624. (save-excursion
  625. (let* ((case-fold-search t)
  626. (keywords (progn
  627. (end-of-line)
  628. (re-search-backward
  629. (concat "^[ \t]*#\\+begin_quote") nil t)
  630. (org-element-collect-affiliated-keywords)))
  631. (begin (car keywords))
  632. (contents-begin (progn (forward-line) (point)))
  633. (hidden (org-truely-invisible-p))
  634. (contents-end (progn (re-search-forward
  635. (concat "^[ \t]*#\\+end_quote") nil t)
  636. (point-at-bol)))
  637. (pos-before-blank (progn (forward-line) (point)))
  638. (end (progn (org-skip-whitespace)
  639. (if (eobp) (point) (point-at-bol)))))
  640. `(quote-block
  641. (:begin ,begin
  642. :end ,end
  643. :hiddenp ,hidden
  644. :contents-begin ,contents-begin
  645. :contents-end ,contents-end
  646. :post-blank ,(count-lines pos-before-blank end)
  647. ,@(cadr keywords))))))
  648. (defun org-element-quote-block-interpreter (quote-block contents)
  649. "Interpret QUOTE-BLOCK element as Org syntax.
  650. CONTENTS is the contents of the element."
  651. (format "#+begin_quote\n%s#+end_quote" contents))
  652. ;;;; Section
  653. (defun org-element-section-parser ()
  654. "Parse a section.
  655. Return a list whose car is `section' and cdr is a plist
  656. containing `:begin', `:end', `:contents-begin', `contents-end'
  657. and `:post-blank' keywords."
  658. (save-excursion
  659. ;; Beginning of section is the beginning of the first non-blank
  660. ;; line after previous headline.
  661. (let ((begin (save-excursion
  662. (org-with-limited-levels (outline-previous-heading))
  663. (if (not (org-at-heading-p)) (point)
  664. (forward-line) (org-skip-whitespace) (point-at-bol))))
  665. (end (progn (org-with-limited-levels (outline-next-heading))
  666. (point)))
  667. (pos-before-blank (progn (skip-chars-backward " \r\t\n")
  668. (forward-line)
  669. (point))))
  670. `(section
  671. (:begin ,begin
  672. :end ,end
  673. :contents-begin ,begin
  674. :contents-end ,pos-before-blank
  675. :post-blank ,(count-lines pos-before-blank end))))))
  676. (defun org-element-section-interpreter (section contents)
  677. "Interpret SECTION element as Org syntax.
  678. CONTENTS is the contents of the element."
  679. contents)
  680. ;;;; Special Block
  681. (defun org-element-special-block-parser ()
  682. "Parse a special block.
  683. Return a list whose car is `special-block' and cdr is a plist
  684. containing `:type', `:begin', `:end', `:hiddenp',
  685. `:contents-begin', `:contents-end' and `:post-blank' keywords.
  686. Assume point is at beginning or end of the block."
  687. (save-excursion
  688. (let* ((case-fold-search t)
  689. (type (progn (looking-at
  690. "[ \t]*#\\+\\(?:begin\\|end\\)_\\([-A-Za-z0-9]+\\)")
  691. (org-match-string-no-properties 1)))
  692. (keywords (progn
  693. (end-of-line)
  694. (re-search-backward
  695. (concat "^[ \t]*#\\+begin_" type) nil t)
  696. (org-element-collect-affiliated-keywords)))
  697. (begin (car keywords))
  698. (contents-begin (progn (forward-line) (point)))
  699. (hidden (org-truely-invisible-p))
  700. (contents-end (progn (re-search-forward
  701. (concat "^[ \t]*#\\+end_" type) nil t)
  702. (point-at-bol)))
  703. (pos-before-blank (progn (forward-line) (point)))
  704. (end (progn (org-skip-whitespace)
  705. (if (eobp) (point) (point-at-bol)))))
  706. `(special-block
  707. (:type ,type
  708. :begin ,begin
  709. :end ,end
  710. :hiddenp ,hidden
  711. :contents-begin ,contents-begin
  712. :contents-end ,contents-end
  713. :post-blank ,(count-lines pos-before-blank end)
  714. ,@(cadr keywords))))))
  715. (defun org-element-special-block-interpreter (special-block contents)
  716. "Interpret SPECIAL-BLOCK element as Org syntax.
  717. CONTENTS is the contents of the element."
  718. (let ((block-type (org-element-get-property :type special-block)))
  719. (format "#+begin_%s\n%s#+end_%s" block-type contents block-type)))
  720. ;;; Elements
  721. ;; For each element, a parser and an interpreter are also defined.
  722. ;; Both follow the same naming convention used for greater elements.
  723. ;; Also, as for greater elements, adding a new element type is done
  724. ;; through the following steps: implement a parser and an interpreter,
  725. ;; tweak `org-element-guess-type' so that it recognizes the new type
  726. ;; and add that new type to `org-element-all-elements'.
  727. ;; As a special case, when the newly defined type is a block type,
  728. ;; `org-element-non-recursive-block-alist' has to be modified
  729. ;; accordingly.
  730. ;;;; Babel Call
  731. (defun org-element-babel-call-parser ()
  732. "Parse a babel call.
  733. Return a list whose car is `babel-call' and cdr is a plist
  734. containing `:begin', `:end', `:info' and `:post-blank' as
  735. keywords."
  736. (save-excursion
  737. (let ((info (progn (looking-at org-babel-block-lob-one-liner-regexp)
  738. (org-babel-lob-get-info)))
  739. (beg (point-at-bol))
  740. (pos-before-blank (progn (forward-line) (point)))
  741. (end (progn (org-skip-whitespace)
  742. (if (eobp) (point) (point-at-bol)))))
  743. `(babel-call
  744. (:beg ,beg
  745. :end ,end
  746. :info ,info
  747. :post-blank ,(count-lines pos-before-blank end))))))
  748. (defun org-element-babel-call-interpreter (inline-babel-call contents)
  749. "Interpret INLINE-BABEL-CALL object as Org syntax.
  750. CONTENTS is nil."
  751. (let* ((babel-info (org-element-get-property :info inline-babel-call))
  752. (main-source (car babel-info))
  753. (post-options (nth 1 babel-info)))
  754. (concat "#+call: "
  755. (if (string-match "\\[\\(\\[.*?\\]\\)\\]" main-source)
  756. ;; Remove redundant square brackets.
  757. (replace-match
  758. (match-string 1 main-source) nil nil main-source)
  759. main-source)
  760. (and post-options (format "[%s]" post-options)))))
  761. ;;;; Comment
  762. (defun org-element-comment-parser ()
  763. "Parse a comment.
  764. Return a list whose car is `comment' and cdr is a plist
  765. containing `:begin', `:end', `:value' and `:post-blank'
  766. keywords."
  767. (let ((comment-re "\\(#\\|[ \t]*#\\+\\( \\|$\\)\\)")
  768. beg-coms begin end value pos-before-blank keywords)
  769. (save-excursion
  770. ;; Move to the beginning of comments.
  771. (unless (bobp)
  772. (while (and (not (bobp)) (looking-at comment-re))
  773. (forward-line -1))
  774. (unless (looking-at comment-re) (forward-line 1)))
  775. (setq beg-coms (point))
  776. ;; Get affiliated keywords, if any.
  777. (setq keywords (org-element-collect-affiliated-keywords))
  778. ;; Store true beginning of element.
  779. (setq begin (car keywords))
  780. ;; Get ending of comments. If point is in a list, ensure to not
  781. ;; get outside of it.
  782. (let* ((itemp (org-in-item-p))
  783. (max-pos (if itemp
  784. (org-list-get-bottom-point
  785. (save-excursion (goto-char itemp) (org-list-struct)))
  786. (point-max))))
  787. (while (and (looking-at comment-re) (< (point) max-pos))
  788. (forward-line)))
  789. (setq pos-before-blank (point))
  790. ;; Find position after blank.
  791. (org-skip-whitespace)
  792. (setq end (if (eobp) (point) (point-at-bol)))
  793. ;; Extract value.
  794. (setq value (buffer-substring-no-properties beg-coms pos-before-blank)))
  795. `(comment
  796. (:begin ,begin
  797. :end ,end
  798. :value ,value
  799. :post-blank ,(count-lines pos-before-blank end)
  800. ,@(cadr keywords)))))
  801. (defun org-element-comment-interpreter (comment contents)
  802. "Interpret COMMENT element as Org syntax.
  803. CONTENTS is nil."
  804. (org-element-get-property :value comment))
  805. ;;;; Comment Block
  806. (defun org-element-comment-block-parser ()
  807. "Parse an export block.
  808. Return a list whose car is `comment-block' and cdr is a plist
  809. containing `:begin', `:end', `:hiddenp', `:value' and
  810. `:post-blank' keywords."
  811. (save-excursion
  812. (end-of-line)
  813. (let* ((case-fold-search t)
  814. (keywords (progn
  815. (re-search-backward "^[ \t]*#\\+begin_comment" nil t)
  816. (org-element-collect-affiliated-keywords)))
  817. (begin (car keywords))
  818. (contents-begin (progn (forward-line) (point)))
  819. (hidden (org-truely-invisible-p))
  820. (contents-end (progn (re-search-forward
  821. "^[ \t]*#\\+end_comment" nil t)
  822. (point-at-bol)))
  823. (pos-before-blank (progn (forward-line) (point)))
  824. (end (progn (org-skip-whitespace)
  825. (if (eobp) (point) (point-at-bol))))
  826. (value (buffer-substring-no-properties contents-begin contents-end)))
  827. `(comment-block
  828. (:begin ,begin
  829. :end ,end
  830. :value ,value
  831. :hiddenp ,hidden
  832. :post-blank ,(count-lines pos-before-blank end)
  833. ,@(cadr keywords))))))
  834. (defun org-element-comment-block-interpreter (comment-block contents)
  835. "Interpret COMMENT-BLOCK element as Org syntax.
  836. CONTENTS is nil."
  837. (concat "#+begin_comment\n"
  838. (org-remove-indentation
  839. (org-element-get-property :value comment-block))
  840. "#+begin_comment"))
  841. ;;;; Example Block
  842. (defun org-element-example-block-parser ()
  843. "Parse an example block.
  844. Return a list whose car is `example' and cdr is a plist
  845. containing `:begin', `:end', `:options', `:hiddenp', `:value' and
  846. `:post-blank' keywords."
  847. (save-excursion
  848. (end-of-line)
  849. (let* ((case-fold-search t)
  850. (options (progn
  851. (re-search-backward
  852. "^[ \t]*#\\+begin_example\\(?: +\\(.*\\)\\)?" nil t)
  853. (org-match-string-no-properties 1)))
  854. (keywords (org-element-collect-affiliated-keywords))
  855. (begin (car keywords))
  856. (contents-begin (progn (forward-line) (point)))
  857. (hidden (org-truely-invisible-p))
  858. (contents-end (progn
  859. (re-search-forward "^[ \t]*#\\+end_example" nil t)
  860. (point-at-bol)))
  861. (value (buffer-substring-no-properties contents-begin contents-end))
  862. (pos-before-blank (progn (forward-line) (point)))
  863. (end (progn (org-skip-whitespace)
  864. (if (eobp) (point) (point-at-bol)))))
  865. `(example-block
  866. (:begin ,begin
  867. :end ,end
  868. :value ,value
  869. :options ,options
  870. :hiddenp ,hidden
  871. :post-blank ,(count-lines pos-before-blank end)
  872. ,@(cadr keywords))))))
  873. (defun org-element-example-block-interpreter (example-block contents)
  874. "Interpret EXAMPLE-BLOCK element as Org syntax.
  875. CONTENTS is nil."
  876. (let ((options (org-element-get-property :options example-block)))
  877. (concat "#+begin_example" (and options (concat " " options)) "\n"
  878. (org-remove-indentation
  879. (org-element-get-property :value example-block))
  880. "#+end_example")))
  881. ;;;; Export Block
  882. (defun org-element-export-block-parser ()
  883. "Parse an export block.
  884. Return a list whose car is `export-block' and cdr is a plist
  885. containing `:begin', `:end', `:type', `:hiddenp', `:value' and
  886. `:post-blank' keywords."
  887. (save-excursion
  888. (end-of-line)
  889. (let* ((case-fold-search t)
  890. (contents)
  891. (type (progn (re-search-backward
  892. (concat "[ \t]*#\\+begin_"
  893. (org-re "\\([[:alnum:]]+\\)")))
  894. (downcase (org-match-string-no-properties 1))))
  895. (keywords (org-element-collect-affiliated-keywords))
  896. (begin (car keywords))
  897. (contents-begin (progn (forward-line) (point)))
  898. (hidden (org-truely-invisible-p))
  899. (contents-end (progn (re-search-forward
  900. (concat "^[ \t]*#\\+end_" type) nil t)
  901. (point-at-bol)))
  902. (pos-before-blank (progn (forward-line) (point)))
  903. (end (progn (org-skip-whitespace)
  904. (if (eobp) (point) (point-at-bol))))
  905. (value (buffer-substring-no-properties contents-begin contents-end)))
  906. `(export-block
  907. (:begin ,begin
  908. :end ,end
  909. :type ,type
  910. :value ,value
  911. :hiddenp ,hidden
  912. :post-blank ,(count-lines pos-before-blank end)
  913. ,@(cadr keywords))))))
  914. (defun org-element-export-block-interpreter (export-block contents)
  915. "Interpret EXPORT-BLOCK element as Org syntax.
  916. CONTENTS is nil."
  917. (let ((type (org-element-get-property :type export-block)))
  918. (concat (format "#+begin_%s\n" type)
  919. (org-element-get-property :value export-block)
  920. (format "#+end_%s" type))))
  921. ;;;; Fixed-width
  922. (defun org-element-fixed-width-parser ()
  923. "Parse a fixed-width section.
  924. Return a list whose car is `fixed-width' and cdr is a plist
  925. containing `:begin', `:end', `:value' and `:post-blank'
  926. keywords."
  927. (let ((fixed-re "[ \t]*:\\( \\|$\\)")
  928. beg-area begin end value pos-before-blank keywords)
  929. (save-excursion
  930. ;; Move to the beginning of the fixed-width area.
  931. (unless (bobp)
  932. (while (and (not (bobp)) (looking-at fixed-re))
  933. (forward-line -1))
  934. (unless (looking-at fixed-re) (forward-line 1)))
  935. (setq beg-area (point))
  936. ;; Get affiliated keywords, if any.
  937. (setq keywords (org-element-collect-affiliated-keywords))
  938. ;; Store true beginning of element.
  939. (setq begin (car keywords))
  940. ;; Get ending of fixed-width area. If point is in a list,
  941. ;; ensure to not get outside of it.
  942. (let* ((itemp (org-in-item-p))
  943. (max-pos (if itemp
  944. (org-list-get-bottom-point
  945. (save-excursion (goto-char itemp) (org-list-struct)))
  946. (point-max))))
  947. (while (and (looking-at fixed-re) (< (point) max-pos))
  948. (forward-line)))
  949. (setq pos-before-blank (point))
  950. ;; Find position after blank
  951. (org-skip-whitespace)
  952. (setq end (if (eobp) (point) (point-at-bol)))
  953. ;; Extract value.
  954. (setq value (buffer-substring-no-properties beg-area pos-before-blank)))
  955. `(fixed-width
  956. (:begin ,begin
  957. :end ,end
  958. :value ,value
  959. :post-blank ,(count-lines pos-before-blank end)
  960. ,@(cadr keywords)))))
  961. (defun org-element-fixed-width-interpreter (fixed-width contents)
  962. "Interpret FIXED-WIDTH element as Org syntax.
  963. CONTENTS is nil."
  964. (org-remove-indentation (org-element-get-property :value fixed-width)))
  965. ;;;; Horizontal Rule
  966. (defun org-element-horizontal-rule-parser ()
  967. "Parse an horizontal rule.
  968. Return a list whose car is `horizontal-rule' and cdr is
  969. a plist containing `:begin', `:end' and `:post-blank'
  970. keywords."
  971. (save-excursion
  972. (let* ((keywords (org-element-collect-affiliated-keywords))
  973. (begin (car keywords))
  974. (post-hr (progn (forward-line) (point)))
  975. (end (progn (org-skip-whitespace)
  976. (if (eobp) (point) (point-at-bol)))))
  977. `(horizontal-rule
  978. (:begin ,begin
  979. :end ,end
  980. :post-blank ,(count-lines post-hr end)
  981. ,@(cadr keywords))))))
  982. (defun org-element-horizontal-rule-interpreter (horizontal-rule contents)
  983. "Interpret HORIZONTAL-RULE element as Org syntax.
  984. CONTENTS is nil."
  985. "-----")
  986. ;;;; Keyword
  987. (defun org-element-keyword-parser ()
  988. "Parse a keyword at point.
  989. Return a list whose car is `keyword' and cdr is a plist
  990. containing `:key', `:value', `:begin', `:end' and `:post-blank'
  991. keywords."
  992. (save-excursion
  993. (let* ((begin (point))
  994. (key (progn (looking-at
  995. "[ \t]*#\\+\\(\\(?:[a-z]+\\)\\(?:_[a-z]+\\)*\\):")
  996. (org-match-string-no-properties 1)))
  997. (value (org-trim (buffer-substring-no-properties
  998. (match-end 0) (point-at-eol))))
  999. (pos-before-blank (progn (forward-line) (point)))
  1000. (end (progn (org-skip-whitespace)
  1001. (if (eobp) (point) (point-at-bol)))))
  1002. `(keyword
  1003. (:key ,key
  1004. :value ,value
  1005. :begin ,begin
  1006. :end ,end
  1007. :post-blank ,(count-lines pos-before-blank end))))))
  1008. (defun org-element-keyword-interpreter (keyword contents)
  1009. "Interpret KEYWORD element as Org syntax.
  1010. CONTENTS is nil."
  1011. (format "#+%s: %s"
  1012. (org-element-get-property :key keyword)
  1013. (org-element-get-property :value keyword)))
  1014. ;;;; Latex Environment
  1015. (defun org-element-latex-environment-parser ()
  1016. "Parse a LaTeX environment.
  1017. Return a list whose car is `latex-environment' and cdr is a plist
  1018. containing `:begin', `:end', `:value' and `:post-blank' keywords."
  1019. (save-excursion
  1020. (end-of-line)
  1021. (let* ((case-fold-search t)
  1022. (contents-begin (re-search-backward "^[ \t]*\\\\begin" nil t))
  1023. (keywords (org-element-collect-affiliated-keywords))
  1024. (begin (car keywords))
  1025. (contents-end (progn (re-search-forward "^[ \t]*\\\\end")
  1026. (forward-line)
  1027. (point)))
  1028. (value (buffer-substring-no-properties contents-begin contents-end))
  1029. (end (progn (org-skip-whitespace)
  1030. (if (eobp) (point) (point-at-bol)))))
  1031. `(latex-environment
  1032. (:begin ,begin
  1033. :end ,end
  1034. :value ,value
  1035. :post-blank ,(count-lines contents-end end)
  1036. ,@(cadr keywords))))))
  1037. (defun org-element-latex-environment-interpreter (latex-environment contents)
  1038. "Interpret LATEX-ENVIRONMENT element as Org syntax.
  1039. CONTENTS is nil."
  1040. (org-element-get-property :value latex-environment))
  1041. ;;;; Paragraph
  1042. (defun org-element-paragraph-parser ()
  1043. "Parse a paragraph.
  1044. Return a list whose car is `paragraph' and cdr is a plist
  1045. containing `:begin', `:end', `:contents-begin' and
  1046. `:contents-end' and `:post-blank' keywords.
  1047. Assume point is at the beginning of the paragraph."
  1048. (save-excursion
  1049. (let* ((contents-begin (point))
  1050. (keywords (org-element-collect-affiliated-keywords))
  1051. (begin (car keywords))
  1052. (contents-end (progn
  1053. (end-of-line)
  1054. (if (re-search-forward
  1055. org-element-paragraph-separate nil 'm)
  1056. (progn (forward-line -1) (end-of-line) (point))
  1057. (point))))
  1058. (pos-before-blank (progn (forward-line) (point)))
  1059. (end (progn (org-skip-whitespace)
  1060. (if (eobp) (point) (point-at-bol)))))
  1061. `(paragraph
  1062. (:begin ,begin
  1063. :end ,end
  1064. :contents-begin ,contents-begin
  1065. :contents-end ,contents-end
  1066. :post-blank ,(count-lines pos-before-blank end)
  1067. ,@(cadr keywords))))))
  1068. (defun org-element-paragraph-interpreter (paragraph contents)
  1069. "Interpret PARAGRAPH element as Org syntax.
  1070. CONTENTS is the contents of the element."
  1071. contents)
  1072. ;;;; Property Drawer
  1073. (defun org-element-property-drawer-parser ()
  1074. "Parse a property drawer.
  1075. Return a list whose car is `property-drawer' and cdr is a plist
  1076. containing `:begin', `:end', `:hiddenp', `:contents-begin',
  1077. `:contents-end', `:properties' and `:post-blank' keywords."
  1078. (save-excursion
  1079. (let ((case-fold-search t)
  1080. (begin (progn (end-of-line)
  1081. (re-search-backward org-property-start-re)
  1082. (match-beginning 0)))
  1083. (contents-begin (progn (forward-line) (point)))
  1084. (hidden (org-truely-invisible-p))
  1085. (properties (let (val)
  1086. (while (not (looking-at "^[ \t]*:END:"))
  1087. (when (looking-at
  1088. (org-re
  1089. "[ \t]*:\\([[:alpha:]][[:alnum:]_-]*\\):"))
  1090. (push (cons (match-string 1)
  1091. (org-trim
  1092. (buffer-substring
  1093. (match-end 0) (point-at-eol))))
  1094. val))
  1095. (forward-line))
  1096. val))
  1097. (contents-end (progn (re-search-forward "^[ \t]*:END:" nil t)
  1098. (point-at-bol)))
  1099. (pos-before-blank (progn (forward-line) (point)))
  1100. (end (progn (org-skip-whitespace)
  1101. (if (eobp) (point) (point-at-bol)))))
  1102. `(property-drawer
  1103. (:begin ,begin
  1104. :end ,end
  1105. :hiddenp ,hidden
  1106. :properties ,properties
  1107. :post-blank ,(count-lines pos-before-blank end))))))
  1108. (defun org-element-property-drawer-interpreter (property-drawer contents)
  1109. "Interpret PROPERTY-DRAWER element as Org syntax.
  1110. CONTENTS is nil."
  1111. (let ((props (org-element-get-property :properties property-drawer)))
  1112. (concat
  1113. ":PROPERTIES:\n"
  1114. (mapconcat (lambda (p)
  1115. (format org-property-format (format ":%s:" (car p)) (cdr p)))
  1116. (nreverse props) "\n")
  1117. "\n:END:")))
  1118. ;;;; Quote Section
  1119. (defun org-element-quote-section-parser ()
  1120. "Parse a quote section.
  1121. Return a list whose car is `quote-section' and cdr is a plist
  1122. containing `:begin', `:end', `:value' and `:post-blank'
  1123. keywords."
  1124. (save-excursion
  1125. (let* ((begin (progn (org-back-to-heading t)
  1126. (forward-line)
  1127. (org-skip-whitespace)
  1128. (point-at-bol)))
  1129. (end (progn (org-with-limited-levels (outline-next-heading))
  1130. (point)))
  1131. (pos-before-blank (progn (skip-chars-backward " \r\t\n")
  1132. (forward-line)
  1133. (point)))
  1134. (value (unless (= begin end)
  1135. (buffer-substring-no-properties begin pos-before-blank))))
  1136. `(quote-section
  1137. (:begin ,begin
  1138. :end ,end
  1139. :value ,value
  1140. :post-blank ,(if value
  1141. (count-lines pos-before-blank end)
  1142. 0))))))
  1143. (defun org-element-quote-section-interpreter (quote-section contents)
  1144. "Interpret QUOTE-SECTION element as Org syntax.
  1145. CONTENTS is nil."
  1146. (org-element-get-property :value quote-section))
  1147. ;;;; Src Block
  1148. (defun org-element-src-block-parser ()
  1149. "Parse a src block.
  1150. Return a list whose car is `src-block' and cdr is a plist
  1151. containing `:language', `:switches', `:parameters', `:begin',
  1152. `:end', `:hiddenp', `:contents-begin', `:contents-end', `:value'
  1153. and `:post-blank' keywords."
  1154. (save-excursion
  1155. (end-of-line)
  1156. (let* ((case-fold-search t)
  1157. ;; Get position at beginning of block.
  1158. (contents-begin
  1159. (re-search-backward
  1160. (concat "^[ \t]*#\\+begin_src"
  1161. "\\(?: +\\(\\S-+\\)\\)?" ; language
  1162. "\\(\\(?: +[-+][A-Za-z]\\)*\\)" ; switches
  1163. "\\(.*\\)[ \t]*$") ; arguments
  1164. nil t))
  1165. ;; Get language as a string.
  1166. (language (org-match-string-no-properties 1))
  1167. ;; Get switches.
  1168. (switches (org-match-string-no-properties 2))
  1169. ;; Get parameters.
  1170. (parameters (org-trim (org-match-string-no-properties 3)))
  1171. ;; Get affiliated keywords.
  1172. (keywords (org-element-collect-affiliated-keywords))
  1173. ;; Get beginning position.
  1174. (begin (car keywords))
  1175. ;; Get position at end of block.
  1176. (contents-end (progn (re-search-forward "^[ \t]*#\\+end_src" nil t)
  1177. (forward-line)
  1178. (point)))
  1179. ;; Retrieve code.
  1180. (value (buffer-substring-no-properties
  1181. (save-excursion (goto-char contents-begin)
  1182. (forward-line)
  1183. (point))
  1184. (match-beginning 0)))
  1185. ;; Get position after ending blank lines.
  1186. (end (progn (org-skip-whitespace)
  1187. (if (eobp) (point) (point-at-bol))))
  1188. ;; Get visibility status.
  1189. (hidden (progn (goto-char contents-begin)
  1190. (forward-line)
  1191. (org-truely-invisible-p))))
  1192. `(src-block
  1193. (:language ,language
  1194. :switches ,switches
  1195. :parameters ,parameters
  1196. :begin ,begin
  1197. :end ,end
  1198. :hiddenp ,hidden
  1199. :value ,value
  1200. :post-blank ,(count-lines contents-end end)
  1201. ,@(cadr keywords))))))
  1202. (defun org-element-src-block-interpreter (src-block contents)
  1203. "Interpret SRC-BLOCK element as Org syntax.
  1204. CONTENTS is nil."
  1205. (let ((lang (org-element-get-property :language src-block))
  1206. (switches (org-element-get-property :switches src-block))
  1207. (params (org-element-get-property :parameters src-block))
  1208. (value (let ((val (org-element-get-property :value src-block)))
  1209. (cond
  1210. (org-src-preserve-indentation val)
  1211. ((zerop org-edit-src-content-indentation)
  1212. (org-remove-indentation val))
  1213. (t
  1214. (let ((ind (make-string
  1215. org-edit-src-content-indentation 32)))
  1216. (replace-regexp-in-string
  1217. "\\(^\\)[ \t]*\\S-" ind
  1218. (org-remove-indentation val) nil nil 1)))))))
  1219. (concat (format "#+begin_src%s\n"
  1220. (concat (and lang (concat " " lang))
  1221. (and switches (concat " " switches))
  1222. (and params (concat " " params))))
  1223. value
  1224. "#+end_src")))
  1225. ;;;; Table
  1226. (defun org-element-table-parser ()
  1227. "Parse a table at point.
  1228. Return a list whose car is `table' and cdr is a plist containing
  1229. `:begin', `:end', `:contents-begin', `:contents-end', `:tblfm',
  1230. `:type', `:raw-table' and `:post-blank' keywords."
  1231. (save-excursion
  1232. (let* ((table-begin (goto-char (org-table-begin t)))
  1233. (type (if (org-at-table.el-p) 'table.el 'org))
  1234. (keywords (org-element-collect-affiliated-keywords))
  1235. (begin (car keywords))
  1236. (table-end (goto-char (marker-position (org-table-end t))))
  1237. (tblfm (when (looking-at "[ \t]*#\\+tblfm: +\\(.*\\)[ \t]*")
  1238. (prog1 (org-match-string-no-properties 1)
  1239. (forward-line))))
  1240. (pos-before-blank (point))
  1241. (end (progn (org-skip-whitespace)
  1242. (if (eobp) (point) (point-at-bol))))
  1243. (raw-table (org-remove-indentation
  1244. (buffer-substring-no-properties table-begin table-end))))
  1245. `(table
  1246. (:begin ,begin
  1247. :end ,end
  1248. :type ,type
  1249. :raw-table ,raw-table
  1250. :tblfm ,tblfm
  1251. :post-blank ,(count-lines pos-before-blank end)
  1252. ,@(cadr keywords))))))
  1253. (defun org-element-table-interpreter (table contents)
  1254. "Interpret TABLE element as Org syntax.
  1255. CONTENTS is nil."
  1256. (org-element-get-property :raw-table table))
  1257. ;;;; Verse Block
  1258. (defun org-element-verse-block-parser ()
  1259. "Parse a verse block.
  1260. Return a list whose car is `verse-block' and cdr is a plist
  1261. containing `:begin', `:end', `:hiddenp', `:raw-value', `:value'
  1262. and `:post-blank' keywords.
  1263. Assume point is at beginning or end of the block."
  1264. (save-excursion
  1265. (let* ((case-fold-search t)
  1266. (keywords (progn
  1267. (end-of-line)
  1268. (re-search-backward
  1269. (concat "^[ \t]*#\\+begin_verse") nil t)
  1270. (org-element-collect-affiliated-keywords)))
  1271. (begin (car keywords))
  1272. (hidden (progn (forward-line) (org-truely-invisible-p)))
  1273. (raw-val (buffer-substring-no-properties
  1274. (point)
  1275. (progn
  1276. (re-search-forward (concat "^[ \t]*#\\+end_verse") nil t)
  1277. (point-at-bol))))
  1278. (pos-before-blank (progn (forward-line) (point)))
  1279. (end (progn (org-skip-whitespace)
  1280. (if (eobp) (point) (point-at-bol))))
  1281. (value (org-element-parse-secondary-string
  1282. (org-remove-indentation raw-val)
  1283. (cdr (assq 'verse org-element-string-restrictions)))))
  1284. `(verse-block
  1285. (:begin ,begin
  1286. :end ,end
  1287. :hiddenp ,hidden
  1288. :raw-value ,raw-val
  1289. :value ,value
  1290. :post-blank ,(count-lines pos-before-blank end)
  1291. ,@(cadr keywords))))))
  1292. (defun org-element-verse-block-interpreter (verse-block contents)
  1293. "Interpret VERSE-BLOCK element as Org syntax.
  1294. CONTENTS is nil."
  1295. (format "#+begin_verse\n%s#+end_verse"
  1296. (org-remove-indentation
  1297. (org-element-get-property :raw-value verse-block))))
  1298. ;;; Objects
  1299. ;; Unlike to elements, interstices can be found between objects.
  1300. ;; That's why, along with the parser, successor functions are provided
  1301. ;; for each object. Some objects share the same successor
  1302. ;; (i.e. `emphasis' and `verbatim' objects).
  1303. ;; A successor must accept a single argument bounding the search. It
  1304. ;; will return either a cons cell whose car is the object's type, as
  1305. ;; a symbol, and cdr the position of its next occurrence, or nil.
  1306. ;; Successors follow the naming convention:
  1307. ;; org-element-NAME-successor, where NAME is the name of the
  1308. ;; successor, as defined in `org-element-all-successors'.
  1309. ;; Some object types (i.e `emphasis') are recursive. Restrictions on
  1310. ;; object types they can contain will be specified in
  1311. ;; `org-element-object-restrictions'.
  1312. ;; Adding a new type of object is simple. Implement a successor,
  1313. ;; a parser, and an interpreter for it, all following the naming
  1314. ;; convention. Register successor in `org-element-all-successors',
  1315. ;; maybe tweak restrictions about it, and that's it.
  1316. ;;;; Emphasis
  1317. (defun org-element-emphasis-parser ()
  1318. "Parse text markup object at point.
  1319. Return a list whose car is `emphasis' and cdr is a plist with
  1320. `:marker', `:begin', `:end', `:contents-begin' and
  1321. `:contents-end' and `:post-blank' keywords.
  1322. Assume point is at the first emphasis marker."
  1323. (save-excursion
  1324. (unless (bolp) (backward-char 1))
  1325. (looking-at org-emph-re)
  1326. (let ((begin (match-beginning 2))
  1327. (marker (org-match-string-no-properties 3))
  1328. (contents-begin (match-beginning 4))
  1329. (contents-end (match-end 4))
  1330. (post-blank (progn (goto-char (match-end 2))
  1331. (skip-chars-forward " \t")))
  1332. (end (point)))
  1333. `(emphasis
  1334. (:marker ,marker
  1335. :begin ,begin
  1336. :end ,end
  1337. :contents-begin ,contents-begin
  1338. :contents-end ,contents-end
  1339. :post-blank ,post-blank)))))
  1340. (defun org-element-emphasis-interpreter (emphasis contents)
  1341. "Interpret EMPHASIS object as Org syntax.
  1342. CONTENTS is the contents of the object."
  1343. (let ((marker (org-element-get-property :marker emphasis)))
  1344. (concat marker contents marker)))
  1345. (defun org-element-text-markup-successor (limit)
  1346. "Search for the next emphasis or verbatim and return position.
  1347. LIMIT bounds the search.
  1348. Return value is a cons cell whose car is `emphasis' or
  1349. `verbatim' and cdr is beginning position."
  1350. (save-excursion
  1351. (unless (bolp) (backward-char))
  1352. (when (re-search-forward org-emph-re limit t)
  1353. (cons (if (nth 4 (assoc (match-string 3) org-emphasis-alist))
  1354. 'verbatim
  1355. 'emphasis)
  1356. (match-beginning 2)))))
  1357. ;;;; Entity
  1358. (defun org-element-entity-parser ()
  1359. "Parse entity at point.
  1360. Return a list whose car is `entity' and cdr a plist with
  1361. `:begin', `:end', `:latex', `:latex-math-p', `:html', `:latin1',
  1362. `:utf-8', `:ascii', `:use-brackets-p' and `:post-blank' as
  1363. keywords.
  1364. Assume point is at the beginning of the entity."
  1365. (save-excursion
  1366. (looking-at "\\\\\\(frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)")
  1367. (let* ((value (org-entity-get (match-string 1)))
  1368. (begin (match-beginning 0))
  1369. (bracketsp (string= (match-string 2) "{}"))
  1370. (post-blank (progn (goto-char (match-end 1))
  1371. (when bracketsp (forward-char 2))
  1372. (skip-chars-forward " \t")))
  1373. (end (point)))
  1374. `(entity
  1375. (:name ,(car value)
  1376. :latex ,(nth 1 value)
  1377. :latex-math-p ,(nth 2 value)
  1378. :html ,(nth 3 value)
  1379. :ascii ,(nth 4 value)
  1380. :latin1 ,(nth 5 value)
  1381. :utf-8 ,(nth 6 value)
  1382. :begin ,begin
  1383. :end ,end
  1384. :use-brackets-p ,bracketsp
  1385. :post-blank ,post-blank)))))
  1386. (defun org-element-entity-interpreter (entity contents)
  1387. "Interpret ENTITY object as Org syntax.
  1388. CONTENTS is nil."
  1389. (concat "\\"
  1390. (org-element-get-property :name entity)
  1391. (when (org-element-get-property :use-brackets-p entity) "{}")))
  1392. (defun org-element-latex-or-entity-successor (limit)
  1393. "Search for the next latex-fragment or entity object.
  1394. LIMIT bounds the search.
  1395. Return value is a cons cell whose car is `entity' or
  1396. `latex-fragment' and cdr is beginning position."
  1397. (save-excursion
  1398. (let ((matchers (plist-get org-format-latex-options :matchers))
  1399. ;; ENTITY-RE matches both LaTeX commands and Org entities.
  1400. (entity-re
  1401. "\\\\\\(frac[13][24]\\|[a-zA-Z]+\\)\\($\\|[^[:alpha:]\n]\\)"))
  1402. (when (re-search-forward
  1403. (concat (mapconcat (lambda (e) (nth 1 (assoc e org-latex-regexps)))
  1404. matchers "\\|")
  1405. "\\|" entity-re)
  1406. limit t)
  1407. (goto-char (match-beginning 0))
  1408. (if (looking-at entity-re)
  1409. ;; Determine if it's a real entity or a LaTeX command.
  1410. (cons (if (org-entity-get (match-string 1)) 'entity 'latex-fragment)
  1411. (match-beginning 0))
  1412. ;; No entity nor command: point is at a LaTeX fragment.
  1413. ;; Determine its type to get the correct beginning position.
  1414. (cons 'latex-fragment
  1415. (catch 'return
  1416. (mapc (lambda (e)
  1417. (when (looking-at (nth 1 (assoc e org-latex-regexps)))
  1418. (throw 'return
  1419. (match-beginning
  1420. (nth 2 (assoc e org-latex-regexps))))))
  1421. matchers)
  1422. (point))))))))
  1423. ;;;; Export Snippet
  1424. (defun org-element-export-snippet-parser ()
  1425. "Parse export snippet at point.
  1426. Return a list whose car is `export-snippet' and cdr a plist with
  1427. `:begin', `:end', `:back-end', `:value' and `:post-blank' as
  1428. keywords.
  1429. Assume point is at the beginning of the snippet."
  1430. (save-excursion
  1431. (looking-at "@\\([-A-Za-z0-9]+\\){")
  1432. (let* ((begin (point))
  1433. (back-end (org-match-string-no-properties 1))
  1434. (before-blank (progn (goto-char (scan-sexps (1- (match-end 0)) 1))))
  1435. (value (buffer-substring-no-properties
  1436. (match-end 0) (1- before-blank)))
  1437. (post-blank (skip-chars-forward " \t"))
  1438. (end (point)))
  1439. `(export-snippet
  1440. (:back-end ,back-end
  1441. :value ,value
  1442. :begin ,begin
  1443. :end ,end
  1444. :post-blank ,post-blank)))))
  1445. (defun org-element-export-snippet-interpreter (export-snippet contents)
  1446. "Interpret EXPORT-SNIPPET object as Org syntax.
  1447. CONTENTS is nil."
  1448. (format "@%s{%s}"
  1449. (org-element-get-property :back-end export-snippet)
  1450. (org-element-get-property :value export-snippet)))
  1451. (defun org-element-export-snippet-successor (limit)
  1452. "Search for the next export-snippet object.
  1453. LIMIT bounds the search.
  1454. Return value is a cons cell whose car is `export-snippet' cdr is
  1455. its beginning position."
  1456. (save-excursion
  1457. (catch 'exit
  1458. (while (re-search-forward "@[-A-Za-z0-9]+{" limit t)
  1459. (when (let ((end (ignore-errors (scan-sexps (1- (point)) 1))))
  1460. (and end (eq (char-before end) ?})))
  1461. (throw 'exit (cons 'export-snippet (match-beginning 0))))))))
  1462. ;;;; Footnote Reference
  1463. (defun org-element-footnote-reference-parser ()
  1464. "Parse footnote reference at point.
  1465. Return a list whose car is `footnote-reference' and cdr a plist
  1466. with `:label', `:type', `:definition', `:begin', `:end' and
  1467. `:post-blank' as keywords."
  1468. (save-excursion
  1469. (let* ((ref (org-footnote-at-reference-p))
  1470. (label (car ref))
  1471. (raw-def (nth 3 ref))
  1472. (inline-def (and raw-def
  1473. (org-element-parse-secondary-string raw-def nil)))
  1474. (type (if (nth 3 ref) 'inline 'standard))
  1475. (begin (nth 1 ref))
  1476. (post-blank (progn (goto-char (nth 2 ref))
  1477. (skip-chars-forward " \t")))
  1478. (end (point)))
  1479. `(footnote-reference
  1480. (:label ,label
  1481. :type ,type
  1482. :inline-definition ,inline-def
  1483. :begin ,begin
  1484. :end ,end
  1485. :post-blank ,post-blank
  1486. :raw-definition ,raw-def)))))
  1487. (defun org-element-footnote-reference-interpreter (footnote-reference contents)
  1488. "Interpret FOOTNOTE-REFERENCE object as Org syntax.
  1489. CONTENTS is nil."
  1490. (let ((label (or (org-element-get-property :label footnote-reference)
  1491. "fn:"))
  1492. (def (let ((raw (org-element-get-property
  1493. :raw-definition footnote-reference)))
  1494. (if raw (concat ":" raw) ""))))
  1495. (format "[%s]" (concat label def))))
  1496. (defun org-element-footnote-reference-successor (limit)
  1497. "Search for the next footnote-reference and return beginning
  1498. position.
  1499. LIMIT bounds the search.
  1500. Return value is a cons cell whose car is `footnote-reference' and
  1501. cdr is beginning position."
  1502. (let (fn-ref)
  1503. (when (setq fn-ref (org-footnote-get-next-reference nil nil limit))
  1504. (cons 'footnote-reference (nth 1 fn-ref)))))
  1505. ;;;; Inline Babel Call
  1506. (defun org-element-inline-babel-call-parser ()
  1507. "Parse inline babel call at point.
  1508. Return a list whose car is `inline-babel-call' and cdr a plist with
  1509. `:begin', `:end', `:info' and `:post-blank' as keywords.
  1510. Assume point is at the beginning of the babel call."
  1511. (save-excursion
  1512. (unless (bolp) (backward-char))
  1513. (looking-at org-babel-inline-lob-one-liner-regexp)
  1514. (let ((info (save-match-data (org-babel-lob-get-info)))
  1515. (begin (match-end 1))
  1516. (post-blank (progn (goto-char (match-end 0))
  1517. (skip-chars-forward " \t")))
  1518. (end (point)))
  1519. `(inline-babel-call
  1520. (:begin ,begin
  1521. :end ,end
  1522. :info ,info
  1523. :post-blank ,post-blank)))))
  1524. (defun org-element-inline-babel-call-interpreter (inline-babel-call contents)
  1525. "Interpret INLINE-BABEL-CALL object as Org syntax.
  1526. CONTENTS is nil."
  1527. (let* ((babel-info (org-element-get-property :info inline-babel-call))
  1528. (main-source (car babel-info))
  1529. (post-options (nth 1 babel-info)))
  1530. (concat "call_"
  1531. (if (string-match "\\[\\(\\[.*?\\]\\)\\]" main-source)
  1532. ;; Remove redundant square brackets.
  1533. (replace-match
  1534. (match-string 1 main-source) nil nil main-source)
  1535. main-source)
  1536. (and post-options (format "[%s]" post-options)))))
  1537. (defun org-element-inline-babel-call-successor (limit)
  1538. "Search for the next inline-babel-call and return beginning
  1539. position.
  1540. LIMIT bounds the search.
  1541. Return value is a cons cell whose car is `inline-babel-call' and
  1542. cdr is beginning position."
  1543. (save-excursion
  1544. ;; Use a simplified version of
  1545. ;; org-babel-inline-lob-one-liner-regexp as regexp for more speed.
  1546. (when (re-search-forward
  1547. "\\(?:babel\\|call\\)_\\([^()\n]+?\\)\\(\\[\\(.*\\)\\]\\|\\(\\)\\)(\\([^\n]*\\))\\(\\[\\(.*?\\)\\]\\)?"
  1548. limit t)
  1549. (cons 'inline-babel-call (match-beginning 0)))))
  1550. ;;;; Inline Src Block
  1551. (defun org-element-inline-src-block-parser ()
  1552. "Parse inline source block at point.
  1553. Return a list whose car is `inline-src-block' and cdr a plist
  1554. with `:begin', `:end', `:language', `:value', `:parameters' and
  1555. `:post-blank' as keywords.
  1556. Assume point is at the beginning of the inline src block."
  1557. (save-excursion
  1558. (unless (bolp) (backward-char))
  1559. (looking-at org-babel-inline-src-block-regexp)
  1560. (let ((begin (match-beginning 1))
  1561. (language (org-match-string-no-properties 2))
  1562. (parameters (org-match-string-no-properties 4))
  1563. (value (org-match-string-no-properties 5))
  1564. (post-blank (progn (goto-char (match-end 0))
  1565. (skip-chars-forward " \t")))
  1566. (end (point)))
  1567. `(inline-src-block
  1568. (:language ,language
  1569. :value ,value
  1570. :parameters ,parameters
  1571. :begin ,begin
  1572. :end ,end
  1573. :post-blank ,post-blank)))))
  1574. (defun org-element-inline-src-block-interpreter (inline-src-block contents)
  1575. "Interpret INLINE-SRC-BLOCK object as Org syntax.
  1576. CONTENTS is nil."
  1577. (let ((language (org-element-get-property :language inline-src-block))
  1578. (arguments (org-element-get-property :parameters inline-src-block))
  1579. (body (org-element-get-property :value inline-src-block)))
  1580. (format "src_%s%s{%s}"
  1581. language
  1582. (if arguments (format "[%s]" arguments) "")
  1583. body)))
  1584. (defun org-element-inline-src-block-successor (limit)
  1585. "Search for the next inline-babel-call and return beginning position.
  1586. LIMIT bounds the search.
  1587. Return value is a cons cell whose car is `inline-babel-call' and
  1588. cdr is beginning position."
  1589. (save-excursion
  1590. (when (re-search-forward org-babel-inline-src-block-regexp limit t)
  1591. (cons 'inline-src-block (match-beginning 1)))))
  1592. ;;;; Latex Fragment
  1593. (defun org-element-latex-fragment-parser ()
  1594. "Parse latex fragment at point.
  1595. Return a list whose car is `latex-fragment' and cdr a plist with
  1596. `:value', `:begin', `:end', and `:post-blank' as keywords.
  1597. Assume point is at the beginning of the latex fragment."
  1598. (save-excursion
  1599. (let* ((begin (point))
  1600. (substring-match
  1601. (catch 'exit
  1602. (mapc (lambda (e)
  1603. (let ((latex-regexp (nth 1 (assoc e org-latex-regexps))))
  1604. (when (or (looking-at latex-regexp)
  1605. (and (not (bobp))
  1606. (save-excursion
  1607. (backward-char)
  1608. (looking-at latex-regexp))))
  1609. (throw 'exit (nth 2 (assoc e org-latex-regexps))))))
  1610. (plist-get org-format-latex-options :matchers))
  1611. ;; None found: it's a macro.
  1612. (looking-at "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")
  1613. 0))
  1614. (value (match-string-no-properties substring-match))
  1615. (post-blank (progn (goto-char (match-end substring-match))
  1616. (skip-chars-forward " \t")))
  1617. (end (point)))
  1618. `(latex-fragment
  1619. (:value ,value
  1620. :begin ,begin
  1621. :end ,end
  1622. :post-blank ,post-blank)))))
  1623. (defun org-element-latex-fragment-interpreter (latex-fragment contents)
  1624. "Interpret LATEX-FRAGMENT object as Org syntax.
  1625. CONTENTS is nil."
  1626. (org-element-get-property :value latex-fragment))
  1627. ;;;; Line Break
  1628. (defun org-element-line-break-parser ()
  1629. "Parse line break at point.
  1630. Return a list whose car is `line-break', and cdr a plist with
  1631. `:begin', `:end' and `:post-blank' keywords.
  1632. Assume point is at the beginning of the line break."
  1633. (save-excursion
  1634. (let* ((begin (point))
  1635. (end (progn (end-of-line) (point)))
  1636. (post-blank (- (skip-chars-backward " \t")))
  1637. (end (point)))
  1638. `(line-break
  1639. (:begin ,begin
  1640. :end ,end
  1641. :post-blank ,post-blank)))))
  1642. (defun org-element-line-break-interpreter (line-break contents)
  1643. "Interpret LINE-BREAK object as Org syntax.
  1644. CONTENTS is nil."
  1645. (org-element-get-property :value line-break))
  1646. (defun org-element-line-break-successor (limit)
  1647. "Search for the next statistics cookie and return position.
  1648. LIMIT bounds the search.
  1649. Return value is a cons cell whose car is `line-break' and cdr is
  1650. beginning position."
  1651. (save-excursion
  1652. (let ((beg (and (re-search-forward "[^\\\\]\\(\\\\\\\\\\)[ \t]*$" limit t)
  1653. (goto-char (match-beginning 1)))))
  1654. ;; A line break can only happen on a non-empty line.
  1655. (when (and beg (re-search-backward "\\S-" (point-at-bol) t))
  1656. (cons 'line-break beg)))))
  1657. ;;;; Link
  1658. (defun org-element-link-parser ()
  1659. "Parse link at point.
  1660. Return a list whose car is `link' and cdr a plist with `:type',
  1661. `:path', `:raw-link', `:begin', `:end', `:contents-begin',
  1662. `:contents-end' and `:post-blank' as keywords.
  1663. Assume point is at the beginning of the link."
  1664. (save-excursion
  1665. (let ((begin (point))
  1666. end contents-begin contents-end link-end post-blank path type
  1667. raw-link link)
  1668. (cond
  1669. ;; Type 1: text targeted from a radio target.
  1670. ((and org-target-link-regexp (looking-at org-target-link-regexp))
  1671. (setq type "radio"
  1672. path (org-match-string-no-properties 0)
  1673. contents-begin (match-beginning 0)
  1674. contents-end (match-end 0)
  1675. link-end (match-end 0)))
  1676. ;; Type 2: Standard link, i.e. [[http://orgmode.org][homepage]]
  1677. ((looking-at org-bracket-link-regexp)
  1678. (setq contents-begin (match-beginning 3)
  1679. contents-end (match-end 3)
  1680. link-end (match-end 0)
  1681. ;; RAW-LINK is the original link.
  1682. raw-link (org-match-string-no-properties 1)
  1683. link (org-link-expand-abbrev
  1684. (replace-regexp-in-string
  1685. " *\n *" " " (org-link-unescape raw-link) t t)))
  1686. ;; Determine TYPE of link and set PATH accordingly.
  1687. (cond
  1688. ;; File type.
  1689. ((or (file-name-absolute-p link) (string-match "^\\.\\.?/" link))
  1690. (setq type "file" path link))
  1691. ;; Explicit type (http, irc, bbdb...). See `org-link-types'.
  1692. ((string-match org-link-re-with-space3 link)
  1693. (setq type (match-string 1 link) path (match-string 2 link)))
  1694. ;; Id type: PATH is the id.
  1695. ((string-match "^id:\\([-a-f0-9]+\\)" link)
  1696. (setq type "id" path (match-string 1 link)))
  1697. ;; Code-ref type: PATH is the name of the reference.
  1698. ((string-match "^(\\(.*\\))$" link)
  1699. (setq type "coderef" path (match-string 1 link)))
  1700. ;; Custom-id type: PATH is the name of the custom id.
  1701. ((= (aref link 0) ?#)
  1702. (setq type "custom-id" path (substring link 1)))
  1703. ;; Fuzzy type: Internal link either matches a target, an
  1704. ;; headline name or nothing. PATH is the target or headline's
  1705. ;; name.
  1706. (t (setq type "fuzzy" path link))))
  1707. ;; Type 3: Plain link, i.e. http://orgmode.org
  1708. ((looking-at org-plain-link-re)
  1709. (setq raw-link (org-match-string-no-properties 0)
  1710. type (org-match-string-no-properties 1)
  1711. path (org-match-string-no-properties 2)
  1712. link-end (match-end 0)))
  1713. ;; Type 4: Angular link, i.e. <http://orgmode.org>
  1714. ((looking-at org-angle-link-re)
  1715. (setq raw-link (buffer-substring-no-properties
  1716. (match-beginning 1) (match-end 2))
  1717. type (org-match-string-no-properties 1)
  1718. path (org-match-string-no-properties 2)
  1719. link-end (match-end 0))))
  1720. ;; In any case, deduce end point after trailing white space from
  1721. ;; LINK-END variable.
  1722. (setq post-blank (progn (goto-char link-end) (skip-chars-forward " \t"))
  1723. end (point))
  1724. `(link
  1725. (:type ,type
  1726. :path ,path
  1727. :raw-link ,(or raw-link path)
  1728. :begin ,begin
  1729. :end ,end
  1730. :contents-begin ,contents-begin
  1731. :contents-end ,contents-end
  1732. :post-blank ,post-blank)))))
  1733. (defun org-element-link-interpreter (link contents)
  1734. "Interpret LINK object as Org syntax.
  1735. CONTENTS is the contents of the object."
  1736. (let ((type (org-element-get-property :type link))
  1737. (raw-link (org-element-get-property :raw-link link)))
  1738. (cond
  1739. ((string= type "radio") raw-link)
  1740. (t (format "[[%s]%s]"
  1741. raw-link
  1742. (if (string= contents "") "" (format "[%s]" contents)))))))
  1743. (defun org-element-link-successor (limit)
  1744. "Search for the next link and return position.
  1745. LIMIT bounds the search.
  1746. Return value is a cons cell whose car is `link' and cdr is
  1747. beginning position."
  1748. (save-excursion
  1749. (let ((link-regexp
  1750. (if org-target-link-regexp
  1751. (concat org-any-link-re "\\|" org-target-link-regexp)
  1752. org-any-link-re)))
  1753. (when (re-search-forward link-regexp limit t)
  1754. (cons 'link (match-beginning 0))))))
  1755. ;;;; Macro
  1756. (defun org-element-macro-parser ()
  1757. "Parse macro at point.
  1758. Return a list whose car is `macro' and cdr a plist with `:key',
  1759. `:args', `:begin', `:end', `:value' and `:post-blank' as
  1760. keywords.
  1761. Assume point is at the macro."
  1762. (save-excursion
  1763. (looking-at "{{{\\([a-zA-Z][-a-zA-Z0-9_]*\\)\\(([ \t\n]*\\([^\000]*?\\))\\)?}}}")
  1764. (let ((begin (point))
  1765. (key (downcase (org-match-string-no-properties 1)))
  1766. (value (org-match-string-no-properties 0))
  1767. (post-blank (progn (goto-char (match-end 0))
  1768. (skip-chars-forward " \t")))
  1769. (end (point))
  1770. (args (let ((args (org-match-string-no-properties 3)) args2)
  1771. (when args
  1772. (setq args (org-split-string args ","))
  1773. (while args
  1774. (while (string-match "\\\\\\'" (car args))
  1775. ;; Repair bad splits.
  1776. (setcar (cdr args) (concat (substring (car args) 0 -1)
  1777. "," (nth 1 args)))
  1778. (pop args))
  1779. (push (pop args) args2))
  1780. (mapcar 'org-trim (nreverse args2))))))
  1781. `(macro
  1782. (:key ,key
  1783. :value ,value
  1784. :args ,args
  1785. :begin ,begin
  1786. :end ,end
  1787. :post-blank ,post-blank)))))
  1788. (defun org-element-macro-interpreter (macro contents)
  1789. "Interpret MACRO object as Org syntax.
  1790. CONTENTS is nil."
  1791. (org-element-get-property :value macro))
  1792. (defun org-element-macro-successor (limit)
  1793. "Search for the next macro and return position.
  1794. LIMIT bounds the search.
  1795. Return value is cons cell whose car is `macro' and cdr is
  1796. beginning position."
  1797. (save-excursion
  1798. (when (re-search-forward
  1799. "{{{\\([a-zA-Z][-a-zA-Z0-9_]*\\)\\(([ \t\n]*\\([^\000]*?\\))\\)?}}}"
  1800. limit t)
  1801. (cons 'macro (match-beginning 0)))))
  1802. ;;;; Radio-target
  1803. (defun org-element-radio-target-parser ()
  1804. "Parse radio target at point.
  1805. Return a list whose car is `radio-target' and cdr a plist with
  1806. `:begin', `:end', `:contents-begin', `:contents-end', `raw-value'
  1807. and `:post-blank' as keywords.
  1808. Assume point is at the radio target."
  1809. (save-excursion
  1810. (looking-at org-radio-target-regexp)
  1811. (let ((begin (point))
  1812. (contents-begin (match-beginning 1))
  1813. (contents-end (match-end 1))
  1814. (raw-value (org-match-string-no-properties 1))
  1815. (post-blank (progn (goto-char (match-end 0))
  1816. (skip-chars-forward " \t")))
  1817. (end (point)))
  1818. `(radio-target
  1819. (:begin ,begin
  1820. :end ,end
  1821. :contents-begin ,contents-begin
  1822. :contents-end ,contents-end
  1823. :raw-value ,raw-value
  1824. :post-blank ,post-blank)))))
  1825. (defun org-element-radio-target-interpreter (target contents)
  1826. "Interpret TARGET object as Org syntax.
  1827. CONTENTS is the contents of the object."
  1828. (concat "<<<" contents ">>>"))
  1829. (defun org-element-radio-target-successor (limit)
  1830. "Search for the next radio-target and return position.
  1831. LIMIT bounds the search.
  1832. Return value is a cons cell whose car is `radio-target' and cdr
  1833. is beginning position."
  1834. (save-excursion
  1835. (when (re-search-forward org-radio-target-regexp limit t)
  1836. (cons 'radio-target (match-beginning 0)))))
  1837. ;;;; Statistics Cookie
  1838. (defun org-element-statistics-cookie-parser ()
  1839. "Parse statistics cookie at point.
  1840. Return a list whose car is `statistics-cookie', and cdr a plist
  1841. with `:begin', `:end', `:value' and `:post-blank' keywords.
  1842. Assume point is at the beginning of the statistics-cookie."
  1843. (save-excursion
  1844. (looking-at "\\[[0-9]*\\(%\\|/[0-9]*\\)\\]")
  1845. (let* ((begin (point))
  1846. (value (buffer-substring-no-properties
  1847. (match-beginning 0) (match-end 0)))
  1848. (post-blank (progn (goto-char (match-end 0))
  1849. (skip-chars-forward " \t")))
  1850. (end (point)))
  1851. `(statistics-cookie
  1852. (:begin ,begin
  1853. :end ,end
  1854. :value ,value
  1855. :post-blank ,post-blank)))))
  1856. (defun org-element-statistics-cookie-interpreter (statistics-cookie contents)
  1857. "Interpret STATISTICS-COOKIE object as Org syntax.
  1858. CONTENTS is nil."
  1859. (org-element-get-property :value statistics-cookie))
  1860. (defun org-element-statistics-cookie-successor (limit)
  1861. "Search for the next statistics cookie and return position.
  1862. LIMIT bounds the search.
  1863. Return value is a cons cell whose car is `statistics-cookie' and
  1864. cdr is beginning position."
  1865. (save-excursion
  1866. (when (re-search-forward "\\[[0-9]*\\(%\\|/[0-9]*\\)\\]" limit t)
  1867. (cons 'statistics-cookie (match-beginning 0)))))
  1868. ;;;; Subscript
  1869. (defun org-element-subscript-parser ()
  1870. "Parse subscript at point.
  1871. Return a list whose car is `subscript' and cdr a plist with
  1872. `:begin', `:end', `:contents-begin', `:contents-end',
  1873. `:use-brackets-p' and `:post-blank' as keywords.
  1874. Assume point is at the underscore."
  1875. (save-excursion
  1876. (unless (bolp) (backward-char))
  1877. (let ((bracketsp (if (looking-at org-match-substring-with-braces-regexp)
  1878. t
  1879. (not (looking-at org-match-substring-regexp))))
  1880. (begin (match-beginning 2))
  1881. (contents-begin (or (match-beginning 5)
  1882. (match-beginning 3)))
  1883. (contents-end (or (match-end 5) (match-end 3)))
  1884. (post-blank (progn (goto-char (match-end 0))
  1885. (skip-chars-forward " \t")))
  1886. (end (point)))
  1887. `(subscript
  1888. (:begin ,begin
  1889. :end ,end
  1890. :use-brackets-p ,bracketsp
  1891. :contents-begin ,contents-begin
  1892. :contents-end ,contents-end
  1893. :post-blank ,post-blank)))))
  1894. (defun org-element-subscript-interpreter (subscript contents)
  1895. "Interpret SUBSCRIPT object as Org syntax.
  1896. CONTENTS is the contents of the object."
  1897. (format
  1898. (if (org-element-get-property :use-brackets-p subscript) "_{%s}" "_%s")
  1899. contents))
  1900. (defun org-element-sub/superscript-successor (limit)
  1901. "Search for the next sub/superscript and return beginning
  1902. position.
  1903. LIMIT bounds the search.
  1904. Return value is a cons cell whose car is either `subscript' or
  1905. `superscript' and cdr is beginning position."
  1906. (save-excursion
  1907. (when (re-search-forward org-match-substring-regexp limit t)
  1908. (cons (if (string= (match-string 2) "_") 'subscript 'superscript)
  1909. (match-beginning 2)))))
  1910. ;;;; Superscript
  1911. (defun org-element-superscript-parser ()
  1912. "Parse superscript at point.
  1913. Return a list whose car is `superscript' and cdr a plist with
  1914. `:begin', `:end', `:contents-begin', `:contents-end',
  1915. `:use-brackets-p' and `:post-blank' as keywords.
  1916. Assume point is at the caret."
  1917. (save-excursion
  1918. (unless (bolp) (backward-char))
  1919. (let ((bracketsp (if (looking-at org-match-substring-with-braces-regexp)
  1920. t
  1921. (not (looking-at org-match-substring-regexp))))
  1922. (begin (match-beginning 2))
  1923. (contents-begin (or (match-beginning 5)
  1924. (match-beginning 3)))
  1925. (contents-end (or (match-end 5) (match-end 3)))
  1926. (post-blank (progn (goto-char (match-end 0))
  1927. (skip-chars-forward " \t")))
  1928. (end (point)))
  1929. `(superscript
  1930. (:begin ,begin
  1931. :end ,end
  1932. :use-brackets-p ,bracketsp
  1933. :contents-begin ,contents-begin
  1934. :contents-end ,contents-end
  1935. :post-blank ,post-blank)))))
  1936. (defun org-element-superscript-interpreter (superscript contents)
  1937. "Interpret SUPERSCRIPT object as Org syntax.
  1938. CONTENTS is the contents of the object."
  1939. (format
  1940. (if (org-element-get-property :use-brackets-p superscript) "^{%s}" "^%s")
  1941. contents))
  1942. ;;;; Target
  1943. (defun org-element-target-parser ()
  1944. "Parse target at point.
  1945. Return a list whose car is `target' and cdr a plist with
  1946. `:begin', `:end', `:contents-begin', `:contents-end', `raw-value'
  1947. and `:post-blank' as keywords.
  1948. Assume point is at the target."
  1949. (save-excursion
  1950. (looking-at org-target-regexp)
  1951. (let ((begin (point))
  1952. (contents-begin (match-beginning 1))
  1953. (contents-end (match-end 1))
  1954. (raw-value (org-match-string-no-properties 1))
  1955. (post-blank (progn (goto-char (match-end 0))
  1956. (skip-chars-forward " \t")))
  1957. (end (point)))
  1958. `(target
  1959. (:begin ,begin
  1960. :end ,end
  1961. :contents-begin ,contents-begin
  1962. :contents-end ,contents-end
  1963. :raw-value ,raw-value
  1964. :post-blank ,post-blank)))))
  1965. (defun org-element-target-interpreter (target contents)
  1966. "Interpret TARGET object as Org syntax.
  1967. CONTENTS is the contents of target."
  1968. (concat ""))
  1969. (defun org-element-target-successor (limit)
  1970. "Search for the next target and return position.
  1971. LIMIT bounds the search.
  1972. Return value is a cons cell whose car is `target' and cdr is
  1973. beginning position."
  1974. (save-excursion
  1975. (when (re-search-forward org-target-regexp limit t)
  1976. (cons 'target (match-beginning 0)))))
  1977. ;;;; Time-stamp
  1978. (defun org-element-time-stamp-parser ()
  1979. "Parse time stamp at point.
  1980. Return a list whose car is `time-stamp', and cdr a plist with
  1981. `:appt-type', `:type', `:begin', `:end', `:value' and
  1982. `:post-blank' keywords.
  1983. Assume point is at the beginning of the time-stamp."
  1984. (save-excursion
  1985. (let* ((appt-type (cond
  1986. ((looking-at (concat org-deadline-string " +"))
  1987. (goto-char (match-end 0))
  1988. 'deadline)
  1989. ((looking-at (concat org-scheduled-string " +"))
  1990. (goto-char (match-end 0))
  1991. 'scheduled)
  1992. ((looking-at (concat org-closed-string " +"))
  1993. (goto-char (match-end 0))
  1994. 'closed)))
  1995. (begin (and appt-type (match-beginning 0)))
  1996. (type (cond
  1997. ((looking-at org-tsr-regexp)
  1998. (if (match-string 2) 'active-range 'active))
  1999. ((looking-at org-tsr-regexp-both)
  2000. (if (match-string 2) 'inactive-range 'inactive))
  2001. ((looking-at (concat
  2002. "\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[dwmy]>\\)"
  2003. "\\|"
  2004. "\\(<%%\\(([^>\n]+)\\)>\\)"))
  2005. 'diary)))
  2006. (begin (or begin (match-beginning 0)))
  2007. (value (buffer-substring-no-properties
  2008. (match-beginning 0) (match-end 0)))
  2009. (post-blank (progn (goto-char (match-end 0))
  2010. (skip-chars-forward " \t")))
  2011. (end (point)))
  2012. `(time-stamp
  2013. (:appt-type ,appt-type
  2014. :type ,type
  2015. :value ,value
  2016. :begin ,begin
  2017. :end ,end
  2018. :post-blank ,post-blank)))))
  2019. (defun org-element-time-stamp-interpreter (time-stamp contents)
  2020. "Interpret TIME-STAMP object as Org syntax.
  2021. CONTENTS is nil."
  2022. (concat
  2023. (case (org-element-get-property :appt-type time-stamp)
  2024. (closed (concat org-closed-string " "))
  2025. (deadline (concat org-deadline-string " "))
  2026. (scheduled (concat org-scheduled-string " ")))
  2027. (org-element-get-property :value time-stamp)))
  2028. (defun org-element-time-stamp-successor (limit)
  2029. "Search for the next time-stamp and return position.
  2030. LIMIT bounds the search.
  2031. Return value is a cons cell whose car is `time-stamp' and cdr is
  2032. beginning position."
  2033. (save-excursion
  2034. (when (re-search-forward
  2035. (concat "\\(?:" org-scheduled-string " +\\|"
  2036. org-deadline-string " +\\|" org-closed-string " +\\)?"
  2037. org-ts-regexp-both
  2038. "\\|"
  2039. "\\(?:<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[dwmy]>\\)"
  2040. "\\|"
  2041. "\\(?:<%%\\(?:([^>\n]+)\\)>\\)")
  2042. limit t)
  2043. (cons 'time-stamp (match-beginning 0)))))
  2044. ;;;; Verbatim
  2045. (defun org-element-verbatim-parser ()
  2046. "Parse verbatim object at point.
  2047. Return a list whose car is `verbatim' and cdr is a plist with
  2048. `:marker', `:begin', `:end' and `:post-blank' keywords.
  2049. Assume point is at the first verbatim marker."
  2050. (save-excursion
  2051. (unless (bolp) (backward-char 1))
  2052. (looking-at org-emph-re)
  2053. (let ((begin (match-beginning 2))
  2054. (marker (org-match-string-no-properties 3))
  2055. (value (org-match-string-no-properties 4))
  2056. (post-blank (progn (goto-char (match-end 2))
  2057. (skip-chars-forward " \t")))
  2058. (end (point)))
  2059. `(verbatim
  2060. (:marker ,marker
  2061. :begin ,begin
  2062. :end ,end
  2063. :value ,value
  2064. :post-blank ,post-blank)))))
  2065. (defun org-element-verbatim-interpreter (verbatim contents)
  2066. "Interpret VERBATIM object as Org syntax.
  2067. CONTENTS is nil."
  2068. (let ((marker (org-element-get-property :marker verbatim))
  2069. (value (org-element-get-property :value verbatim)))
  2070. (concat marker value marker)))
  2071. ;;; Definitions And Rules
  2072. ;; Define elements, greater elements and specify recursive objects,
  2073. ;; along with the affiliated keywords recognized. Also set up
  2074. ;; restrictions on recursive objects combinations.
  2075. ;; These variables really act as a control center for the parsing
  2076. ;; process.
  2077. (defconst org-element-paragraph-separate
  2078. (concat "\f" "\\|" "^[ \t]*$" "\\|"
  2079. ;; Headlines and inlinetasks.
  2080. org-outline-regexp-bol "\\|"
  2081. ;; Comments, blocks (any type), keywords and babel calls.
  2082. "^[ \t]*#\\+" "\\|" "^#\\( \\|$\\)" "\\|"
  2083. ;; Lists.
  2084. (org-item-beginning-re) "\\|"
  2085. ;; Fixed-width, drawers (any type) and tables.
  2086. "^[ \t]*[:|]" "\\|"
  2087. ;; Footnote definitions.
  2088. org-footnote-definition-re "\\|"
  2089. ;; Horizontal rules.
  2090. "^[ \t]*-\\{5,\\}[ \t]*$" "\\|"
  2091. ;; LaTeX environments.
  2092. "^[ \t]*\\\\\\(begin\\|end\\)")
  2093. "Regexp to separate paragraphs in an Org buffer.")
  2094. (defconst org-element-all-elements
  2095. '(center-block comment comment-block drawer dynamic-block example-block
  2096. export-block fixed-width footnote-definition headline
  2097. horizontal-rule inlinetask item keyword latex-environment
  2098. babel-call paragraph plain-list property-drawer quote-block
  2099. quote-section section special-block src-block table
  2100. verse-block)
  2101. "Complete list of elements.")
  2102. (defconst org-element-greater-elements
  2103. '(center-block drawer dynamic-block footnote-definition headline inlinetask
  2104. item plain-list quote-block section special-block)
  2105. "List of recursive element types aka Greater Elements.")
  2106. (defconst org-element-all-successors
  2107. '(export-snippet footnote-reference inline-babel-call inline-src-block
  2108. latex-or-entity line-break link macro radio-target
  2109. statistics-cookie sub/superscript target text-markup
  2110. time-stamp)
  2111. "Complete list of successors.")
  2112. (defconst org-element-object-successor-alist
  2113. '((subscript . sub/superscript) (superscript . sub/superscript)
  2114. (emphasis . text-markup) (verbatim . text-markup)
  2115. (entity . latex-or-entity) (latex-fragment . latex-or-entity))
  2116. "Alist of translations between object type and successor name.
  2117. Sharing the same successor comes handy when, for example, the
  2118. regexp matching one object can also match the other object.")
  2119. (defconst org-element-recursive-objects
  2120. '(emphasis link subscript superscript target radio-target)
  2121. "List of recursive object types.")
  2122. (defconst org-element-non-recursive-block-alist
  2123. '(("ascii" . export-block)
  2124. ("comment" . comment-block)
  2125. ("docbook" . export-block)
  2126. ("example" . example-block)
  2127. ("html" . export-block)
  2128. ("latex" . latex-block)
  2129. ("odt" . export-block)
  2130. ("src" . src-block)
  2131. ("verse" . verse-block))
  2132. "Alist between non-recursive block name and their element type.")
  2133. (defconst org-element-affiliated-keywords
  2134. '("attr_ascii" "attr_docbook" "attr_html" "attr_latex" "attr_odt" "caption"
  2135. "data" "header" "headers" "label" "name" "plot" "resname" "result" "results"
  2136. "source" "srcname" "tblname")
  2137. "List of affiliated keywords as strings.")
  2138. (defconst org-element-keyword-translation-alist
  2139. '(("data" . "name") ("label" . "name") ("resname" . "name")
  2140. ("source" . "name") ("srcname" . "name") ("tblname" . "name")
  2141. ("result" . "results") ("headers" . "header"))
  2142. "Alist of usual translations for keywords.
  2143. The key is the old name and the value the new one. The property
  2144. holding their value will be named after the translated name.")
  2145. (defconst org-element-multiple-keywords
  2146. '("attr_ascii" "attr_docbook" "attr_html" "attr_latex" "attr_odt" "header")
  2147. "List of affiliated keywords that can occur more that once in an element.
  2148. Their value will be consed into a list of strings, which will be
  2149. returned as the value of the property.
  2150. This list is checked after translations have been applied. See
  2151. `org-element-keyword-translation-alist'.")
  2152. (defconst org-element-parsed-keywords '("author" "caption" "title")
  2153. "List of keywords whose value can be parsed.
  2154. Their value will be stored as a secondary string: a list of
  2155. strings and objects.
  2156. This list is checked after translations have been applied. See
  2157. `org-element-keyword-translation-alist'.")
  2158. (defconst org-element-dual-keywords '("results")
  2159. "List of keywords which can have a secondary value.
  2160. In Org syntax, they can be written with optional square brackets
  2161. before the colons. For example, results keyword can be
  2162. associated to a hash value with the following:
  2163. #+results[hash-string]: some-source
  2164. This list is checked after translations have been applied. See
  2165. `org-element-keyword-translation-alist'.")
  2166. (defconst org-element-object-restrictions
  2167. '((emphasis entity export-snippet inline-babel-call inline-src-block
  2168. radio-target sub/superscript target text-markup time-stamp)
  2169. (link entity export-snippet inline-babel-call inline-src-block
  2170. latex-fragment sub/superscript text-markup)
  2171. (radio-target entity export-snippet latex-fragment sub/superscript)
  2172. (subscript entity export-snippet inline-babel-call inline-src-block
  2173. latex-fragment sub/superscript text-markup)
  2174. (superscript entity export-snippet inline-babel-call inline-src-block
  2175. latex-fragment sub/superscript text-markup)
  2176. (target entity export-snippet latex-fragment sub/superscript text-markup))
  2177. "Alist of recursive objects restrictions.
  2178. Car is a recursive object type and cdr is a list of successors
  2179. that will be called within an object of such type.
  2180. For example, in a `radio-target' object, one can only find
  2181. entities, export snippets, latex-fragments, subscript and
  2182. superscript.")
  2183. (defconst org-element-string-restrictions
  2184. '((headline entity inline-babel-call latex-fragment link macro radio-target
  2185. statistics-cookie sub/superscript text-markup time-stamp)
  2186. (inlinetask entity inline-babel-call latex-fragment link macro radio-target
  2187. sub/superscript text-markup time-stamp)
  2188. (item entity inline-babel-call latex-fragment macro radio-target
  2189. sub/superscript target verbatim)
  2190. (keyword entity latex-fragment macro sub/superscript text-markup)
  2191. (table entity latex-fragment macro text-markup)
  2192. (verse entity footnote-reference inline-babel-call inline-src-block
  2193. latex-fragment line-break link macro radio-target sub/superscript
  2194. target text-markup time-stamp))
  2195. "Alist of secondary strings restrictions.
  2196. When parsed, some elements have a secondary string which could
  2197. contain various objects (i.e. headline's name, or table's cells).
  2198. For association, the car is the element type, and the cdr a list
  2199. of successors that will be called in that secondary string.
  2200. Note: `keyword' secondary string type only applies to keywords
  2201. matching `org-element-parsed-keywords'.")
  2202. ;;; Accessors
  2203. ;;
  2204. ;; Provide two accessors: `org-element-get-property' and
  2205. ;; `org-element-get-contents'.
  2206. (defun org-element-get-property (property element)
  2207. "Extract the value from the PROPERTY of an ELEMENT."
  2208. (plist-get (nth 1 element) property))
  2209. (defun org-element-get-contents (element)
  2210. "Extract contents from an ELEMENT."
  2211. (nthcdr 2 element))
  2212. ;; Obtaining The Smallest Element Containing Point
  2213. ;; `org-element-at-point' is the core function of this section. It
  2214. ;; returns the Lisp representation of the element at point. It uses
  2215. ;; `org-element-guess-type' and `org-element-skip-keywords' as helper
  2216. ;; functions.
  2217. ;; When point is at an item, there is no automatic way to determine if
  2218. ;; the function should return the `plain-list' element, or the
  2219. ;; corresponding `item' element. By default, `org-element-at-point'
  2220. ;; works at the `plain-list' level. But, by providing an optional
  2221. ;; argument, one can make it switch to the `item' level.
  2222. (defconst org-element--affiliated-re
  2223. (format "[ \t]*#\\+\\(%s\\):"
  2224. (mapconcat
  2225. (lambda (keyword)
  2226. (if (member keyword org-element-dual-keywords)
  2227. (format "\\(%s\\)\\(?:\\[\\(.*?\\)\\]\\)?"
  2228. (regexp-quote keyword))
  2229. (regexp-quote keyword)))
  2230. org-element-affiliated-keywords "\\|"))
  2231. "Regexp matching any affiliated keyword.
  2232. Keyword name is put in match group 1. Moreover, if keyword
  2233. belongs to `org-element-dual-keywords', put the dual value in
  2234. match group 2.
  2235. Don't modify it, set `org-element--affiliated-keywords' instead.")
  2236. (defun org-element-at-point (&optional special structure)
  2237. "Determine closest element around point.
  2238. Return value is a list \(TYPE PROPS\) where TYPE is the type of
  2239. the element and PROPS a plist of properties associated to the
  2240. element.
  2241. Possible types are defined in `org-element-all-elements'.
  2242. Optional argument SPECIAL, when non-nil, can be either `item' or
  2243. `section'. The former allows to parse item wise instead of
  2244. plain-list wise, using STRUCTURE as the current list structure.
  2245. The latter will try to parse a section before anything else.
  2246. If STRUCTURE isn't provided but SPECIAL is set to `item', it will
  2247. be computed."
  2248. (save-excursion
  2249. (beginning-of-line)
  2250. ;; Move before any blank line.
  2251. (when (looking-at "[ \t]*$")
  2252. (skip-chars-backward " \r\t\n")
  2253. (beginning-of-line))
  2254. (let ((case-fold-search t))
  2255. ;; Check if point is at an affiliated keyword. In that case,
  2256. ;; try moving to the beginning of the associated element. If
  2257. ;; the keyword is orphaned, treat it as plain text.
  2258. (when (looking-at org-element--affiliated-re)
  2259. (let ((opoint (point)))
  2260. (while (looking-at org-element--affiliated-re) (forward-line))
  2261. (when (looking-at "[ \t]*$") (goto-char opoint))))
  2262. (let ((type (org-element-guess-type (eq special 'section))))
  2263. (cond
  2264. ;; Guessing element type on the current line is impossible:
  2265. ;; try to find the beginning of the current element to get
  2266. ;; more information.
  2267. ((not type)
  2268. (let ((search-origin (point))
  2269. (opoint-in-item-p (org-in-item-p))
  2270. (par-found-p
  2271. (progn
  2272. (end-of-line)
  2273. (re-search-backward org-element-paragraph-separate nil 'm))))
  2274. (cond
  2275. ;; Unable to find a paragraph delimiter above: we're at
  2276. ;; bob and looking at a paragraph.
  2277. ((not par-found-p) (org-element-paragraph-parser))
  2278. ;; Trying to find element's beginning set point back to
  2279. ;; its original position. There's something peculiar on
  2280. ;; this line that prevents parsing, probably an
  2281. ;; ill-formed keyword or an undefined drawer name. Parse
  2282. ;; it as plain text anyway.
  2283. ((< search-origin (point-at-eol)) (org-element-paragraph-parser))
  2284. ;; Original point wasn't in a list but previous paragraph
  2285. ;; is. It means that either point was inside some block,
  2286. ;; or current list was ended without using a blank line.
  2287. ;; In the last case, paragraph really starts at list end.
  2288. ((let (item)
  2289. (and (not opoint-in-item-p)
  2290. (not (looking-at "[ \t]*#\\+begin"))
  2291. (setq item (org-in-item-p))
  2292. (let ((struct (save-excursion (goto-char item)
  2293. (org-list-struct))))
  2294. (goto-char (org-list-get-bottom-point struct))
  2295. (org-skip-whitespace)
  2296. (beginning-of-line)
  2297. (org-element-paragraph-parser)))))
  2298. ((org-footnote-at-definition-p)
  2299. (org-element-footnote-definition-parser))
  2300. ((and opoint-in-item-p (org-at-item-p) (= opoint-in-item-p (point)))
  2301. (if (eq special 'item)
  2302. (org-element-item-parser (or structure (org-list-struct)))
  2303. (org-element-plain-list-parser (or structure (org-list-struct)))))
  2304. ;; In any other case, the paragraph started the line
  2305. ;; below.
  2306. (t (forward-line) (org-element-paragraph-parser)))))
  2307. ((eq type 'plain-list)
  2308. (if (eq special 'item)
  2309. (org-element-item-parser (or structure (org-list-struct)))
  2310. (org-element-plain-list-parser (or structure (org-list-struct)))))
  2311. ;; Straightforward case: call the appropriate parser.
  2312. (t (funcall (intern (format "org-element-%s-parser" type)))))))))
  2313. ;; It is obvious to tell if point is in most elements, either by
  2314. ;; looking for a specific regexp in the current line, or by using
  2315. ;; already implemented functions. This is the goal of
  2316. ;; `org-element-guess-type'.
  2317. (defconst org-element--element-block-types
  2318. (mapcar 'car org-element-non-recursive-block-alist)
  2319. "List of non-recursive block types, as strings.
  2320. Used internally by `org-element-guess-type'. Do not modify it
  2321. directly, set `org-element-non-recursive-block-alist' instead.")
  2322. (defun org-element-guess-type (&optional section-mode)
  2323. "Return the type of element at point, or nil if undetermined.
  2324. This function may move point to an appropriate position for
  2325. parsing. Used internally by `org-element-at-point'.
  2326. When optional argument SECTION-MODE is non-nil, try to find if
  2327. point is in a section in priority."
  2328. ;; Beware: Order matters for some cases in that function.
  2329. (beginning-of-line)
  2330. (let ((case-fold-search t))
  2331. (cond
  2332. ((org-with-limited-levels (org-at-heading-p)) 'headline)
  2333. ((let ((headline (ignore-errors (nth 4 (org-heading-components)))))
  2334. (and headline
  2335. (let (case-fold-search)
  2336. (string-match (format "^%s\\(?: \\|$\\)" org-quote-string)
  2337. headline))))
  2338. 'quote-section)
  2339. ;; Any buffer position not at an headline or in a quote section
  2340. ;; is inside a section, provided function is actively looking for
  2341. ;; them.
  2342. (section-mode 'section)
  2343. ;; Non-recursive block.
  2344. ((let ((type (org-in-block-p org-element--element-block-types)))
  2345. (and type (cdr (assoc type org-element-non-recursive-block-alist)))))
  2346. ((org-at-heading-p) 'inlinetask)
  2347. ((org-between-regexps-p
  2348. "^[ \t]*\\\\begin{" "^[ \t]*\\\\end{[^}]*}[ \t]*") 'latex-environment)
  2349. ;; Property drawer. Almost `org-at-property-p', but allow drawer
  2350. ;; boundaries.
  2351. ((org-with-wide-buffer
  2352. (and (not (org-before-first-heading-p))
  2353. (let ((pblock (org-get-property-block)))
  2354. (and pblock
  2355. (<= (point) (cdr pblock))
  2356. (>= (point-at-eol) (1- (car pblock)))))))
  2357. 'property-drawer)
  2358. ;; Recursive block. If the block isn't complete, parse the
  2359. ;; current part as a paragraph.
  2360. ((looking-at "[ \t]*#\\+\\(begin\\|end\\)_\\([-A-Za-z0-9]+\\)\\(?:$\\|\\s-\\)")
  2361. (let ((type (downcase (match-string 2))))
  2362. (cond
  2363. ((not (org-in-block-p (list type))) 'paragraph)
  2364. ((string= type "center") 'center-block)
  2365. ((string= type "quote") 'quote-block)
  2366. (t 'special-block))))
  2367. ;; Regular drawers must be tested after property drawer as both
  2368. ;; elements share the same ending regexp.
  2369. ((or (looking-at org-drawer-regexp) (looking-at "[ \t]*:END:[ \t]*$"))
  2370. (let ((completep (org-between-regexps-p
  2371. org-drawer-regexp "^[ \t]*:END:[ \t]*$")))
  2372. (if (not completep) 'paragraph
  2373. (goto-char (car completep)) 'drawer)))
  2374. ((looking-at "[ \t]*:\\( \\|$\\)") 'fixed-width)
  2375. ;; Babel calls must be tested before general keywords as they are
  2376. ;; a subset of them.
  2377. ((looking-at org-babel-block-lob-one-liner-regexp) 'babel-call)
  2378. ((looking-at org-footnote-definition-re) 'footnote-definition)
  2379. ((looking-at "[ \t]*#\\+\\([a-z]+\\(:?_[a-z]+\\)*\\):")
  2380. (if (member (downcase (match-string 1)) org-element-affiliated-keywords)
  2381. 'paragraph
  2382. 'keyword))
  2383. ;; Dynamic block: simplify regexp used for match. If it isn't
  2384. ;; complete, parse the current part as a paragraph.
  2385. ((looking-at "[ \t]*#\\+\\(begin\\end\\):\\(?:\\s-\\|$\\)")
  2386. (let ((completep (org-between-regexps-p
  2387. "^[ \t]*#\\+begin:\\(?:\\s-\\|$\\)"
  2388. "^[ \t]*#\\+end:\\(?:\\s-\\|$\\)")))
  2389. (if (not completep) 'paragraph
  2390. (goto-char (car completep)) 'dynamic-block)))
  2391. ((looking-at "\\(#\\|[ \t]*#\\+\\( \\|$\\)\\)") 'comment)
  2392. ((looking-at "[ \t]*-\\{5,\\}[ \t]*$") 'horizontal-rule)
  2393. ((org-at-table-p t) 'table)
  2394. ((looking-at "[ \t]*#\\+tblfm:")
  2395. (forward-line -1)
  2396. ;; A TBLFM line separated from any table is just plain text.
  2397. (if (org-at-table-p) 'table
  2398. (forward-line) 'paragraph))
  2399. ((looking-at (org-item-re)) 'plain-list))))
  2400. ;; Most elements can have affiliated keywords. When looking for an
  2401. ;; element beginning, we want to move before them, as they belong to
  2402. ;; that element, and, in the meantime, collect information they give
  2403. ;; into appropriate properties. Hence the following function.
  2404. ;; Usage of optional arguments may not be obvious at first glance:
  2405. ;; - TRANS-LIST is used to polish keywords names that have evolved
  2406. ;; during Org history. In example, even though =result= and
  2407. ;; =results= coexist, we want to have them under the same =result=
  2408. ;; property. It's also true for "srcname" and "name", where the
  2409. ;; latter seems to be preferred nowadays (thus the "name" property).
  2410. ;; - CONSED allows to regroup multi-lines keywords under the same
  2411. ;; property, while preserving their own identity. This is mostly
  2412. ;; used for "attr_latex" and al.
  2413. ;; - PARSED prepares a keyword value for export. This is useful for
  2414. ;; "caption". Objects restrictions for such keywords are defined in
  2415. ;; `org-element-string-restrictions'.
  2416. ;; - DUALS is used to take care of keywords accepting a main and an
  2417. ;; optional secondary values. For example "results" has its
  2418. ;; source's name as the main value, and may have an hash string in
  2419. ;; optional square brackets as the secondary one.
  2420. ;; A keyword may belong to more than one category.
  2421. (defun org-element-collect-affiliated-keywords (&optional key-re trans-list
  2422. consed parsed duals)
  2423. "Collect affiliated keywords before point.
  2424. Optional argument KEY-RE is a regexp matching keywords, which
  2425. puts matched keyword in group 1. It defaults to
  2426. `org-element--affiliated-re'.
  2427. TRANS-LIST is an alist where key is the keyword and value the
  2428. property name it should be translated to, without the colons. It
  2429. defaults to `org-element-keyword-translation-alist'.
  2430. CONSED is a list of strings. Any keyword belonging to that list
  2431. will have its value consed. The check is done after keyword
  2432. translation. It defaults to `org-element-multiple-keywords'.
  2433. PARSED is a list of strings. Any keyword member of this list
  2434. will have its value parsed. The check is done after keyword
  2435. translation. If a keyword is a member of both CONSED and PARSED,
  2436. it's value will be a list of parsed strings. It defaults to
  2437. `org-element-parsed-keywords'.
  2438. DUALS is a list of strings. Any keyword member of this list can
  2439. have two parts: one mandatory and one optional. Its value is
  2440. a cons cell whose car is the former, and the cdr the latter. If
  2441. a keyword is a member of both PARSED and DUALS, only the primary
  2442. part will be parsed. It defaults to `org-element-dual-keywords'.
  2443. Return a list whose car is the position at the first of them and
  2444. cdr a plist of keywords and values."
  2445. (save-excursion
  2446. (let ((case-fold-search t)
  2447. (key-re (or key-re org-element--affiliated-re))
  2448. (trans-list (or trans-list org-element-keyword-translation-alist))
  2449. (consed (or consed org-element-multiple-keywords))
  2450. (parsed (or parsed org-element-parsed-keywords))
  2451. (duals (or duals org-element-dual-keywords))
  2452. output)
  2453. (unless (bobp)
  2454. (while (and (not (bobp))
  2455. (progn (forward-line -1) (looking-at key-re)))
  2456. (let* ((raw-kwd (downcase (or (match-string 2) (match-string 1))))
  2457. ;; Apply translation to RAW-KWD. From there, KWD is
  2458. ;; the official keyword.
  2459. (kwd (or (cdr (assoc raw-kwd trans-list)) raw-kwd))
  2460. ;; If KWD is a dual keyword, find it secondary value.
  2461. (dual-value (and (member kwd duals)
  2462. (org-match-string-no-properties 3)))
  2463. ;; Find main value for any keyword.
  2464. (value (org-trim (buffer-substring-no-properties
  2465. (match-end 0) (point-at-eol))))
  2466. ;; Attribute a property name to KWD.
  2467. (kwd-sym (and kwd (intern (concat ":" kwd)))))
  2468. ;; Now set final shape for VALUE.
  2469. (when (member kwd parsed)
  2470. (setq value
  2471. (org-element-parse-secondary-string
  2472. value
  2473. (cdr (assq 'keyword org-element-string-restrictions)))))
  2474. (when (member kwd duals) (setq value (cons value dual-value)))
  2475. (when (member kwd consed)
  2476. (setq value (cons value (plist-get output kwd-sym))))
  2477. ;; Eventually store the new value in OUTPUT.
  2478. (setq output (plist-put output kwd-sym value))))
  2479. (unless (looking-at key-re) (forward-line 1)))
  2480. (list (point) output))))
  2481. ;;; The Org Parser
  2482. ;; The two major functions here are `org-element-parse-buffer', which
  2483. ;; parses Org syntax inside the current buffer, taking into account
  2484. ;; region, narrowing, or even visibility if specified, and
  2485. ;; `org-element-parse-secondary-string', which parses objects within
  2486. ;; a given string.
  2487. ;; The (almost) almighty `org-element-map' allows to apply a function
  2488. ;; on elements or objects matching some type, and accumulate the
  2489. ;; resulting values. In an export situation, it also skips unneeded
  2490. ;; parts of the parse tree, transparently walks into included files,
  2491. ;; and maintain a list of local properties (i.e. those inherited from
  2492. ;; parent headlines) for function's consumption.
  2493. (defun org-element-parse-buffer (&optional granularity visible-only)
  2494. "Recursively parse the buffer and return structure.
  2495. If narrowing is in effect, only parse the visible part of the
  2496. buffer.
  2497. Optional argument GRANULARITY determines the depth of the
  2498. recursion. It can be set to the following symbols:
  2499. `headline' Only parse headlines.
  2500. `greater-element' Don't recurse into greater elements. Thus,
  2501. elements parsed are the top-level ones.
  2502. `element' Parse everything but objects and plain text.
  2503. `object' Parse the complete buffer (default).
  2504. When VISIBLE-ONLY is non-nil, don't parse contents of hidden
  2505. elements.
  2506. Assume buffer is in Org mode."
  2507. (save-excursion
  2508. (goto-char (point-min))
  2509. (org-skip-whitespace)
  2510. (nconc (list 'org-data nil)
  2511. (org-element-parse-elements
  2512. (point-at-bol) (point-max)
  2513. ;; Start is section mode so text before the first headline
  2514. ;; belongs to a section.
  2515. 'section nil granularity visible-only nil))))
  2516. (defun org-element-parse-secondary-string (string restriction &optional buffer)
  2517. "Recursively parse objects in STRING and return structure.
  2518. RESTRICTION, when non-nil, is a symbol limiting the object types
  2519. that will be looked after.
  2520. Optional argument BUFFER indicates the buffer from where the
  2521. secondary string was extracted. It is used to determine where to
  2522. get extraneous information for an object \(i.e. when resolving
  2523. a link or looking for a footnote definition\). It defaults to
  2524. the current buffer."
  2525. (with-temp-buffer
  2526. (insert string)
  2527. (org-element-parse-objects (point-min) (point-max) nil restriction)))
  2528. (defun org-element-map (data types fun &optional info first-match)
  2529. "Map a function on selected elements or objects.
  2530. DATA is the parsed tree, as returned by, i.e,
  2531. `org-element-parse-buffer'. TYPES is a symbol or list of symbols
  2532. of elements or objects types. FUN is the function called on the
  2533. matching element or object. It must accept two arguments: the
  2534. element or object itself and a plist holding contextual
  2535. information.
  2536. When optional argument INFO is non-nil, it should be a plist
  2537. holding export options. In that case, parts of the parse tree
  2538. not exportable according to that property list will be skipped
  2539. and files included through a keyword will be visited.
  2540. When optional argument FIRST-MATCH is non-nil, stop at the first
  2541. match for which FUN doesn't return nil, and return that value.
  2542. Nil values returned from FUN are ignored in the result."
  2543. ;; Ensure TYPES is a list, even of one element.
  2544. (unless (listp types) (setq types (list types)))
  2545. ;; Recursion depth is determined by --CATEGORY.
  2546. (let* ((--category
  2547. (cond
  2548. ((loop for type in types
  2549. always (memq type org-element-greater-elements))
  2550. 'greater-elements)
  2551. ((loop for type in types
  2552. always (memq type org-element-all-elements))
  2553. 'elements)
  2554. (t 'objects)))
  2555. walk-tree ; For byte-compiler
  2556. --acc
  2557. (accumulate-maybe
  2558. (function
  2559. (lambda (--type types fun --blob --local)
  2560. ;; Check if TYPE is matching among TYPES. If so, apply
  2561. ;; FUN to --BLOB and accumulate return value
  2562. ;; into --ACC. --LOCAL is the communication channel.
  2563. (when (memq --type types)
  2564. (let ((result (funcall fun --blob --local)))
  2565. (cond ((not result))
  2566. (first-match (throw 'first-match result))
  2567. (t (push result --acc))))))))
  2568. (walk-tree
  2569. (function
  2570. (lambda (--data --local)
  2571. ;; Recursively walk DATA. --LOCAL, if non-nil, is
  2572. ;; a plist holding contextual information.
  2573. (mapc
  2574. (lambda (--blob)
  2575. (let ((--type (if (stringp --blob) 'plain-text (car --blob))))
  2576. ;; Determine if a recursion into --BLOB is
  2577. ;; possible and allowed.
  2578. (cond
  2579. ;; Element or object not exportable.
  2580. ((and info (org-export-skip-p --blob info)))
  2581. ;; Archived headline: Maybe apply fun on it, but
  2582. ;; skip contents.
  2583. ((and info
  2584. (eq --type 'headline)
  2585. (eq (plist-get info :with-archived-trees) 'headline)
  2586. (org-element-get-property :archivedp --blob))
  2587. (funcall accumulate-maybe --type types fun --blob --local))
  2588. ;; At an include keyword: apply mapping to its
  2589. ;; contents.
  2590. ((and --local
  2591. (eq --type 'keyword)
  2592. (string=
  2593. (downcase (org-element-get-property :key --blob))
  2594. "include"))
  2595. (funcall accumulate-maybe --type types fun --blob --local)
  2596. (let* ((--data
  2597. (org-export-parse-included-file --blob --local))
  2598. (--value (org-element-get-property :value --blob))
  2599. (--file
  2600. (and (string-match "^\"\\(\\S-+\\)\"" --value)
  2601. (match-string 1 --value))))
  2602. (funcall
  2603. walk-tree --data
  2604. (org-combine-plists
  2605. --local
  2606. ;; Store full path of already included files
  2607. ;; to avoid recursive file inclusion.
  2608. `(:included-files
  2609. ,(cons (expand-file-name --file)
  2610. (plist-get --local :included-files))
  2611. ;; Ensure that a top-level headline in the
  2612. ;; included file becomes a direct child of
  2613. ;; the current headline in the buffer.
  2614. :headline-offset
  2615. ,(- (+ (plist-get
  2616. (plist-get --local :inherited-properties)
  2617. :level)
  2618. (or (plist-get --local :headline-offset) 0))
  2619. (1- (org-export-get-min-level
  2620. --data --local))))))))
  2621. ;; Limiting recursion to greater elements, and --BLOB
  2622. ;; isn't one.
  2623. ((and (eq --category 'greater-elements)
  2624. (not (memq --type org-element-greater-elements)))
  2625. (funcall accumulate-maybe --type types fun --blob --local))
  2626. ;; Limiting recursion to elements, and --BLOB only
  2627. ;; contains objects.
  2628. ((and (eq --category 'elements) (eq --type 'paragraph)))
  2629. ;; No limitation on recursion, but --BLOB hasn't
  2630. ;; got a recursive type.
  2631. ((and (eq --category 'objects)
  2632. (not (or (eq --type 'paragraph)
  2633. (memq --type org-element-greater-elements)
  2634. (memq --type org-element-recursive-objects))))
  2635. (funcall accumulate-maybe --type types fun --blob --local))
  2636. ;; Recursion is possible and allowed: Update local
  2637. ;; information and move into --BLOB.
  2638. (t (funcall accumulate-maybe --type types fun --blob --local)
  2639. (funcall
  2640. walk-tree --blob
  2641. (org-combine-plists
  2642. info `(:genealogy
  2643. ,(cons --blob (plist-get info :genealogy)))))))))
  2644. (org-element-get-contents --data))))))
  2645. (catch 'first-match
  2646. (funcall walk-tree data info)
  2647. ;; Return value in a proper order.
  2648. (reverse --acc))))
  2649. ;; The following functions are internal parts of the parser. The
  2650. ;; first one, `org-element-parse-elements' acts at the element's
  2651. ;; level. The second one, `org-element-parse-objects' applies on all
  2652. ;; objects of a paragraph or a secondary string. It uses
  2653. ;; `org-element-get-candidates' to optimize the search of the next
  2654. ;; object in the buffer.
  2655. ;;
  2656. ;; More precisely, that function looks for every allowed object type
  2657. ;; first. Then, it discards failed searches, keeps further matches,
  2658. ;; and searches again types matched behind point, for subsequent
  2659. ;; calls. Thus, searching for a given type fails only once, and every
  2660. ;; object is searched only once at top level (but sometimes more for
  2661. ;; nested types).
  2662. (defun org-element-parse-elements
  2663. (beg end special structure granularity visible-only acc)
  2664. "Parse ELEMENT with point at its beginning.
  2665. SPECIAL prioritize some elements over the others. It can set to
  2666. either `section' or `item', which will focus search,
  2667. respectively, on sections and items. Moreover, when value is
  2668. `item', STRUCTURE will be used as the current list structure.
  2669. GRANULARITY determines the depth of the recursion. It can be set
  2670. to the following symbols:
  2671. `headline' Only parse headlines.
  2672. `greater-element' Don't recurse into greater elements. Thus,
  2673. elements parsed are the top-level ones.
  2674. `element' Parse everything but objects and plain text.
  2675. `object' or nil Parse the complete buffer.
  2676. When VISIBLE-ONLY is non-nil, don't parse contents of hidden
  2677. elements.
  2678. Elements are accumulated into ACC."
  2679. (save-excursion
  2680. (goto-char beg)
  2681. ;; Shortcut when parsing only headlines.
  2682. (when (and (eq granularity 'headline) (not (org-at-heading-p)))
  2683. (org-with-limited-levels (outline-next-heading)))
  2684. ;; Main loop start.
  2685. (while (and (< (point) end) (not (eobp)))
  2686. (push
  2687. ;; 1. Item mode is active: point is at an item. Knowing that,
  2688. ;; there's no need to go through `org-element-at-point'.
  2689. (if (eq special 'item)
  2690. (let* ((element (org-element-item-parser structure))
  2691. (cbeg (org-element-get-property :contents-begin element))
  2692. (cend (org-element-get-property :contents-end element)))
  2693. (goto-char (org-element-get-property :end element))
  2694. ;; Narrow region to contents, so that item bullet don't
  2695. ;; interfere with paragraph parsing.
  2696. (save-restriction
  2697. (narrow-to-region cbeg cend)
  2698. (org-element-parse-elements
  2699. cbeg cend nil structure granularity visible-only
  2700. (reverse element))))
  2701. ;; 2. When ITEM is nil, find current element's type and parse
  2702. ;; it accordingly to its category.
  2703. (let ((element (org-element-at-point special structure)))
  2704. (goto-char (org-element-get-property :end element))
  2705. (cond
  2706. ;; Case 1. ELEMENT is a footnote-definition. If
  2707. ;; GRANURALITY allows parsing, use narrowing so that
  2708. ;; footnote label don't interfere with paragraph
  2709. ;; recognition.
  2710. ((and (eq (car element) 'footnote-definition)
  2711. (not (memq granularity '(headline greater-element))))
  2712. (let ((cbeg (org-element-get-property :contents-begin element))
  2713. (cend (org-element-get-property :contents-end element)))
  2714. (save-restriction
  2715. (narrow-to-region cbeg cend)
  2716. (org-element-parse-elements
  2717. cbeg cend nil structure granularity visible-only
  2718. (reverse element)))))
  2719. ;; Case 2. ELEMENT is a paragraph. Parse objects inside,
  2720. ;; if GRANULARITY allows it.
  2721. ((and (eq (car element) 'paragraph)
  2722. (or (not granularity) (eq granularity 'object)))
  2723. (org-element-parse-objects
  2724. (org-element-get-property :contents-begin element)
  2725. (org-element-get-property :contents-end element)
  2726. (reverse element)
  2727. nil))
  2728. ;; Case 3. ELEMENT is recursive: parse it between
  2729. ;; `contents-begin' and `contents-end'. Make sure
  2730. ;; GRANULARITY allows the recursion, or ELEMENT is an
  2731. ;; headline, in which case going inside is mandatory, in
  2732. ;; order to get sub-level headings. If VISIBLE-ONLY is
  2733. ;; true and element is hidden, do not recurse into it.
  2734. ((and (memq (car element) org-element-greater-elements)
  2735. (or (not granularity)
  2736. (memq granularity '(element object))
  2737. (eq (car element) 'headline))
  2738. (not (and visible-only
  2739. (org-element-get-property :hiddenp element))))
  2740. (org-element-parse-elements
  2741. (org-element-get-property :contents-begin element)
  2742. (org-element-get-property :contents-end element)
  2743. ;; At a plain list, switch to item mode. At an
  2744. ;; headline, switch to section mode. Any other element
  2745. ;; turns off special modes.
  2746. (case (car element) (plain-list 'item) (headline 'section))
  2747. (org-element-get-property :structure element)
  2748. granularity
  2749. visible-only
  2750. (reverse element)))
  2751. ;; Case 4. Else, just accumulate ELEMENT.
  2752. (t element))))
  2753. acc)
  2754. (org-skip-whitespace))
  2755. ;; Return result.
  2756. (nreverse acc)))
  2757. (defun org-element-parse-objects (beg end acc restriction)
  2758. "Parse objects between BEG and END and return recursive structure.
  2759. Objects are accumulated in ACC.
  2760. RESTRICTION, when non-nil, is a list of object types which are
  2761. allowed in the current object."
  2762. (let ((get-next-object
  2763. (function
  2764. (lambda (cand)
  2765. ;; Return the parsing function associated to the nearest
  2766. ;; object among list of candidates CAND.
  2767. (let ((pos (apply #'min (mapcar #'cdr cand))))
  2768. (save-excursion
  2769. (goto-char pos)
  2770. (funcall
  2771. (intern
  2772. (format "org-element-%s-parser" (car (rassq pos cand))))))))))
  2773. next-object candidates)
  2774. (save-excursion
  2775. (goto-char beg)
  2776. (while (setq candidates (org-element-get-next-object-candidates
  2777. end restriction candidates))
  2778. (setq next-object (funcall get-next-object candidates))
  2779. ;; 1. Text before any object.
  2780. (let ((obj-beg (org-element-get-property :begin next-object)))
  2781. (unless (= (point) obj-beg)
  2782. (push (buffer-substring-no-properties (point) obj-beg) acc)))
  2783. ;; 2. Object...
  2784. (let ((obj-end (org-element-get-property :end next-object))
  2785. (cont-beg (org-element-get-property :contents-begin next-object)))
  2786. (push (if (and (memq (car next-object) org-element-recursive-objects)
  2787. cont-beg)
  2788. ;; ... recursive. The CONT-BEG check is for
  2789. ;; links, as some of them might not be recursive
  2790. ;; (i.e. plain links).
  2791. (save-restriction
  2792. (narrow-to-region
  2793. cont-beg
  2794. (org-element-get-property :contents-end next-object))
  2795. (org-element-parse-objects
  2796. (point-min) (point-max) (reverse next-object)
  2797. ;; Restrict allowed objects. This is the
  2798. ;; intersection of current restriction and next
  2799. ;; object's restriction.
  2800. (let ((new-restr
  2801. (cdr (assq (car next-object)
  2802. org-element-object-restrictions))))
  2803. (if (not restriction) new-restr
  2804. (delq nil (mapcar
  2805. (lambda (e) (and (memq e restriction) e))
  2806. new-restr))))))
  2807. ;; ... not recursive.
  2808. next-object)
  2809. acc)
  2810. (goto-char obj-end)))
  2811. ;; 3. Text after last object.
  2812. (unless (= (point) end)
  2813. (push (buffer-substring-no-properties (point) end) acc))
  2814. ;; Result.
  2815. (nreverse acc))))
  2816. (defun org-element-get-next-object-candidates (limit restriction objects)
  2817. "Return an alist of candidates for the next object.
  2818. LIMIT bounds the search, and RESTRICTION, when non-nil, bounds
  2819. the possible object types.
  2820. Return value is an alist whose car is position and cdr the object
  2821. type, as a string. There is an association for the closest
  2822. object of each type within RESTRICTION when non-nil, or for every
  2823. type otherwise.
  2824. OBJECTS is the previous candidates alist."
  2825. (let ((restriction (or restriction org-element-all-successors))
  2826. next-candidates types-to-search)
  2827. ;; If no previous result, search every object type in RESTRICTION.
  2828. ;; Otherwise, keep potential candidates (old objects located after
  2829. ;; point) and ask to search again those which had matched before.
  2830. (if (not objects) (setq types-to-search restriction)
  2831. (mapc (lambda (obj)
  2832. (if (< (cdr obj) (point)) (push (car obj) types-to-search)
  2833. (push obj next-candidates)))
  2834. objects))
  2835. ;; Call the appropriate "get-next" function for each type to
  2836. ;; search and accumulate matches.
  2837. (mapc
  2838. (lambda (type)
  2839. (let* ((successor-fun
  2840. (intern
  2841. (format "org-element-%s-successor"
  2842. (or (cdr (assq type org-element-object-successor-alist))
  2843. type))))
  2844. (obj (funcall successor-fun limit)))
  2845. (and obj (push obj next-candidates))))
  2846. types-to-search)
  2847. ;; Return alist.
  2848. next-candidates))
  2849. ;;; Towards A Bijective Process
  2850. ;; The parse tree obtained with `org-element-parse-buffer' is really
  2851. ;; a snapshot of the corresponding Org buffer. Therefore, it can be
  2852. ;; interpreted and expanded into a string with canonical Org
  2853. ;; syntax. Hence `org-element-interpret-data'.
  2854. ;;
  2855. ;; Data parsed from secondary strings, whose shape is slightly
  2856. ;; different than the standard parse tree, is expanded with the
  2857. ;; equivalent function `org-element-interpret-secondary'.
  2858. ;;
  2859. ;; Both functions rely internally on
  2860. ;; `org-element-interpret--affiliated-keywords'.
  2861. (defun org-element-interpret-data (data &optional genealogy previous)
  2862. "Interpret a parse tree representing Org data.
  2863. DATA is the parse tree to interpret.
  2864. Optional arguments GENEALOGY and PREVIOUS are used for recursive
  2865. calls:
  2866. GENEALOGY is the list of its parents types.
  2867. PREVIOUS is the type of the element or object at the same level
  2868. interpreted before.
  2869. Return Org syntax as a string."
  2870. (mapconcat
  2871. (lambda (blob)
  2872. ;; BLOB can be an element, an object, a string, or nil.
  2873. (cond
  2874. ((not blob) nil)
  2875. ((equal blob "") nil)
  2876. ((stringp blob) blob)
  2877. (t
  2878. (let* ((type (car blob))
  2879. (interpreter
  2880. (if (eq type 'org-data) 'identity
  2881. (intern (format "org-element-%s-interpreter" type))))
  2882. (contents
  2883. (cond
  2884. ;; Full Org document.
  2885. ((eq type 'org-data)
  2886. (org-element-interpret-data blob genealogy previous))
  2887. ;; Recursive objects.
  2888. ((memq type org-element-recursive-objects)
  2889. (org-element-interpret-data
  2890. blob (cons type genealogy) nil))
  2891. ;; Recursive elements.
  2892. ((memq type org-element-greater-elements)
  2893. (org-element-normalize-string
  2894. (org-element-interpret-data
  2895. blob (cons type genealogy) nil)))
  2896. ;; Paragraphs.
  2897. ((eq type 'paragraph)
  2898. (let ((paragraph
  2899. (org-element-normalize-contents
  2900. blob
  2901. ;; When normalizing contents of an item,
  2902. ;; ignore first line's indentation.
  2903. (and (not previous)
  2904. (memq (car genealogy)
  2905. '(footnote-definiton item))))))
  2906. (org-element-interpret-data
  2907. paragraph (cons type genealogy) nil)))))
  2908. (results (funcall interpreter blob contents)))
  2909. ;; Update PREVIOUS.
  2910. (setq previous type)
  2911. ;; Build white spaces.
  2912. (cond
  2913. ((eq type 'org-data) results)
  2914. ((memq type org-element-all-elements)
  2915. (concat
  2916. (org-element-interpret--affiliated-keywords blob)
  2917. (org-element-normalize-string results)
  2918. (make-string (org-element-get-property :post-blank blob) 10)))
  2919. (t (concat
  2920. results
  2921. (make-string
  2922. (org-element-get-property :post-blank blob) 32))))))))
  2923. (org-element-get-contents data) ""))
  2924. (defun org-element-interpret-secondary (secondary)
  2925. "Interpret SECONDARY string as Org syntax.
  2926. SECONDARY-STRING is a nested list as returned by
  2927. `org-element-parse-secondary-string'.
  2928. Return interpreted string."
  2929. ;; Make SECONDARY acceptable for `org-element-interpret-data'.
  2930. (let ((s (if (listp secondary) secondary (list secondary))))
  2931. (org-element-interpret-data `(org-data nil ,@s) nil nil)))
  2932. ;; Both functions internally use `org-element--affiliated-keywords'.
  2933. (defun org-element-interpret--affiliated-keywords (element)
  2934. "Return ELEMENT's affiliated keywords as Org syntax.
  2935. If there is no affiliated keyword, return the empty string."
  2936. (let ((keyword-to-org
  2937. (function
  2938. (lambda (key value)
  2939. (let (dual)
  2940. (when (member key org-element-dual-keywords)
  2941. (setq dual (cdr value) value (car value)))
  2942. (concat "#+" key (and dual (format "[%s]" dual)) ": "
  2943. (if (member key org-element-parsed-keywords)
  2944. (org-element-interpret-secondary value)
  2945. value)
  2946. "\n"))))))
  2947. (mapconcat
  2948. (lambda (key)
  2949. (let ((value (org-element-get-property (intern (concat ":" key)) element)))
  2950. (when value
  2951. (if (member key org-element-multiple-keywords)
  2952. (mapconcat (lambda (line)
  2953. (funcall keyword-to-org key line))
  2954. value "")
  2955. (funcall keyword-to-org key value)))))
  2956. ;; Remove translated keywords.
  2957. (delq nil
  2958. (mapcar
  2959. (lambda (key)
  2960. (and (not (assoc key org-element-keyword-translation-alist)) key))
  2961. org-element-affiliated-keywords))
  2962. "")))
  2963. ;; Because interpretation of the parse tree must return the same
  2964. ;; number of blank lines between elements and the same number of white
  2965. ;; space after objects, some special care must be given to white
  2966. ;; spaces.
  2967. ;;
  2968. ;; The first function, `org-element-normalize-string', ensures any
  2969. ;; string different from the empty string will end with a single
  2970. ;; newline character.
  2971. ;;
  2972. ;; The second function, `org-element-normalize-contents', removes
  2973. ;; global indentation from the contents of the current element.
  2974. (defun org-element-normalize-string (s)
  2975. "Ensure string S ends with a single newline character.
  2976. If S isn't a string return it unchanged. If S is the empty
  2977. string, return it. Otherwise, return a new string with a single
  2978. newline character at its end."
  2979. (cond
  2980. ((not (stringp s)) s)
  2981. ((string= "" s) "")
  2982. (t (and (string-match "\\(\n[ \t]*\\)*\\'" s)
  2983. (replace-match "\n" nil nil s)))))
  2984. (defun org-element-normalize-contents (element &optional ignore-first)
  2985. "Normalize plain text in ELEMENT's contents.
  2986. ELEMENT must only contain plain text and objects.
  2987. The following changes are applied to plain text:
  2988. - Remove global indentation, preserving relative one.
  2989. - Untabify it.
  2990. If optional argument IGNORE-FIRST is non-nil, ignore first line's
  2991. indentation to compute maximal common indentation.
  2992. Return the normalized element."
  2993. (nconc
  2994. (list (car element) (nth 1 element))
  2995. (let ((contents (org-element-get-contents element)))
  2996. (if (not (or ignore-first (stringp (car contents)))) contents
  2997. (catch 'exit
  2998. ;; 1. Remove tabs from each string in CONTENTS. Get maximal
  2999. ;; common indentation (MCI) along the way.
  3000. (let* ((ind-list (unless ignore-first
  3001. (list (org-get-string-indentation (car contents)))))
  3002. (contents
  3003. (mapcar
  3004. (lambda (object)
  3005. (if (not (stringp object)) object
  3006. (let ((start 0)
  3007. (object (org-remove-tabs object)))
  3008. (while (string-match "\n\\( *\\)" object start)
  3009. (setq start (match-end 0))
  3010. (push (length (match-string 1 object)) ind-list))
  3011. object)))
  3012. contents))
  3013. (mci (if ind-list (apply 'min ind-list)
  3014. (throw 'exit contents))))
  3015. ;; 2. Remove that indentation from CONTENTS. First string
  3016. ;; must be treated differently because it's the only one
  3017. ;; whose indentation doesn't happen after a newline
  3018. ;; character.
  3019. (let ((first-obj (car contents)))
  3020. (unless (or (not (stringp first-obj)) ignore-first)
  3021. (setq contents
  3022. (cons (replace-regexp-in-string
  3023. (format "\\` \\{%d\\}" mci) "" first-obj)
  3024. (cdr contents)))))
  3025. (mapcar (lambda (object)
  3026. (if (not (stringp object)) object
  3027. (replace-regexp-in-string
  3028. (format "\n \\{%d\\}" mci) "\n" object)))
  3029. contents)))))))
  3030. ;;; The Toolbox
  3031. ;; Once the structure of an Org file is well understood, it's easy to
  3032. ;; implement some replacements for `forward-paragraph'
  3033. ;; `backward-paragraph', namely `org-element-forward' and
  3034. ;; `org-element-backward'.
  3035. ;; Also, `org-transpose-elements' mimics the behaviour of
  3036. ;; `transpose-words', at the element's level, whereas
  3037. ;; `org-element-drag-forward', `org-element-drag-backward', and
  3038. ;; `org-element-up' generalize, respectively, functions
  3039. ;; `org-subtree-down', `org-subtree-up' and `outline-up-heading'.
  3040. ;; `org-element-unindent-buffer' will, as its name almost suggests,
  3041. ;; smartly remove global indentation from buffer, making it possible
  3042. ;; to use Org indent mode on a file created with hard indentation.
  3043. ;; `org-element-nested-p' and `org-element-swap-A-B' are used
  3044. ;; internally by some of the previously cited tools.
  3045. (defsubst org-element-nested-p (elem-A elem-B)
  3046. "Non-nil when elements ELEM-A and ELEM-B are nested."
  3047. (let ((beg-A (org-element-get-property :begin elem-A))
  3048. (beg-B (org-element-get-property :begin elem-B))
  3049. (end-A (org-element-get-property :end elem-A))
  3050. (end-B (org-element-get-property :end elem-B)))
  3051. (or (and (>= beg-A beg-B) (<= end-A end-B))
  3052. (and (>= beg-B beg-A) (<= end-B end-A)))))
  3053. (defun org-element-swap-A-B (elem-A elem-B)
  3054. "Swap elements ELEM-A and ELEM-B.
  3055. Leave point at the end of ELEM-A.
  3056. Assume ELEM-A is before ELEM-B and that they are not nested."
  3057. (goto-char (org-element-get-property :begin elem-A))
  3058. (let* ((beg-B (org-element-get-property :begin elem-B))
  3059. (end-B-no-blank (save-excursion
  3060. (goto-char (org-element-get-property :end elem-B))
  3061. (skip-chars-backward " \r\t\n")
  3062. (forward-line)
  3063. (point)))
  3064. (beg-A (org-element-get-property :begin elem-A))
  3065. (end-A-no-blank (save-excursion
  3066. (goto-char (org-element-get-property :end elem-A))
  3067. (skip-chars-backward " \r\t\n")
  3068. (forward-line)
  3069. (point)))
  3070. (body-A (buffer-substring beg-A end-A-no-blank))
  3071. (body-B (buffer-substring beg-B end-B-no-blank))
  3072. (between-A-B (buffer-substring end-A-no-blank beg-B)))
  3073. (delete-region beg-A end-B-no-blank)
  3074. (insert body-B between-A-B body-A)
  3075. (goto-char (org-element-get-property :end elem-B))))
  3076. (defun org-element-backward ()
  3077. "Move backward by one element."
  3078. (interactive)
  3079. (let* ((opoint (point))
  3080. (element (org-element-at-point))
  3081. (start-el-beg (org-element-get-property :begin element)))
  3082. ;; At an headline. The previous element is the previous sibling,
  3083. ;; or the parent if any.
  3084. (cond
  3085. ;; Already at the beginning of the current element: move to the
  3086. ;; beginning of the previous one.
  3087. ((= opoint start-el-beg)
  3088. (forward-line -1)
  3089. (skip-chars-backward " \r\t\n")
  3090. (let* ((prev-element (org-element-at-point))
  3091. (itemp (org-in-item-p))
  3092. (struct (and itemp
  3093. (save-excursion (goto-char itemp)
  3094. (org-list-struct)))))
  3095. ;; When moving into a new list, go directly at the
  3096. ;; beginning of the top list structure.
  3097. (if (and itemp (<= (org-list-get-bottom-point struct) opoint))
  3098. (progn
  3099. (goto-char (org-list-get-top-point struct))
  3100. (goto-char (org-element-get-property
  3101. :begin (org-element-at-point))))
  3102. (goto-char (org-element-get-property :begin prev-element))))
  3103. (while (org-truely-invisible-p) (org-element-up)))
  3104. ;; Else, move at the element beginning. One exception: if point
  3105. ;; was in the blank lines after the end of a list, move directly
  3106. ;; to the top item.
  3107. (t
  3108. (let (struct itemp)
  3109. (if (and (setq itemp (org-in-item-p))
  3110. (<= (org-list-get-bottom-point
  3111. (save-excursion (goto-char itemp)
  3112. (setq struct (org-list-struct))))
  3113. opoint))
  3114. (progn (goto-char (org-list-get-top-point struct))
  3115. (goto-char (org-element-get-property
  3116. :begin (org-element-at-point))))
  3117. (goto-char start-el-beg)))))))
  3118. (defun org-element-drag-backward ()
  3119. "Drag backward element at point."
  3120. (interactive)
  3121. (let* ((pos (point))
  3122. (elem (org-element-at-point)))
  3123. (when (= (progn (goto-char (point-min))
  3124. (org-skip-whitespace)
  3125. (point-at-bol))
  3126. (org-element-get-property :end elem))
  3127. (error "Cannot drag element backward"))
  3128. (goto-char (org-element-get-property :begin elem))
  3129. (org-element-backward)
  3130. (let ((prev-elem (org-element-at-point)))
  3131. (when (or (org-element-nested-p elem prev-elem)
  3132. (and (eq (car elem) 'headline)
  3133. (not (eq (car prev-elem) 'headline))))
  3134. (goto-char pos)
  3135. (error "Cannot drag element backward"))
  3136. ;; Compute new position of point: it's shifted by PREV-ELEM
  3137. ;; body's length.
  3138. (let ((size-prev (- (org-element-get-property :end prev-elem)
  3139. (org-element-get-property :begin prev-elem))))
  3140. (org-element-swap-A-B prev-elem elem)
  3141. (goto-char (- pos size-prev))))))
  3142. (defun org-element-drag-forward ()
  3143. "Move forward element at point."
  3144. (interactive)
  3145. (let* ((pos (point))
  3146. (elem (org-element-at-point)))
  3147. (when (= (point-max) (org-element-get-property :end elem))
  3148. (error "Cannot drag element forward"))
  3149. (goto-char (org-element-get-property :end elem))
  3150. (let ((next-elem (org-element-at-point)))
  3151. (when (or (org-element-nested-p elem next-elem)
  3152. (and (eq (car next-elem) 'headline)
  3153. (not (eq (car elem) 'headline))))
  3154. (goto-char pos)
  3155. (error "Cannot drag element forward"))
  3156. ;; Compute new position of point: it's shifted by NEXT-ELEM
  3157. ;; body's length (without final blanks) and by the length of
  3158. ;; blanks between ELEM and NEXT-ELEM.
  3159. (let ((size-next (- (save-excursion
  3160. (goto-char (org-element-get-property :end next-elem))
  3161. (skip-chars-backward " \r\t\n")
  3162. (forward-line)
  3163. (point))
  3164. (org-element-get-property :begin next-elem)))
  3165. (size-blank (- (org-element-get-property :end elem)
  3166. (save-excursion
  3167. (goto-char (org-element-get-property :end elem))
  3168. (skip-chars-backward " \r\t\n")
  3169. (forward-line)
  3170. (point)))))
  3171. (org-element-swap-A-B elem next-elem)
  3172. (goto-char (+ pos size-next size-blank))))))
  3173. (defun org-element-forward ()
  3174. "Move forward by one element."
  3175. (interactive)
  3176. (beginning-of-line)
  3177. (cond ((eobp) (error "Cannot move further down"))
  3178. ((looking-at "[ \t]*$")
  3179. (org-skip-whitespace)
  3180. (goto-char (if (eobp) (point) (point-at-bol))))
  3181. (t
  3182. (let ((element (org-element-at-point t))
  3183. (origin (point)))
  3184. (cond
  3185. ;; At an item: Either move to the next element inside, or
  3186. ;; to its end if it's hidden.
  3187. ((eq (car element) 'item)
  3188. (if (org-element-get-property :hiddenp element)
  3189. (goto-char (org-element-get-property :end element))
  3190. (end-of-line)
  3191. (re-search-forward org-element-paragraph-separate nil t)
  3192. (org-skip-whitespace)
  3193. (beginning-of-line)))
  3194. ;; At a recursive element: Either move inside, or if it's
  3195. ;; hidden, move to its end.
  3196. ((memq (car element) org-element-greater-elements)
  3197. (let ((cbeg (org-element-get-property :contents-begin element)))
  3198. (goto-char
  3199. (if (or (org-element-get-property :hiddenp element)
  3200. (> origin cbeg))
  3201. (org-element-get-property :end element)
  3202. cbeg))))
  3203. ;; Else: move to the current element's end.
  3204. (t (goto-char (org-element-get-property :end element))))))))
  3205. (defun org-element-mark-element ()
  3206. "Put point at beginning of this element, mark at end.
  3207. Interactively, if this command is repeated or (in Transient Mark
  3208. mode) if the mark is active, it marks the next element after the
  3209. ones already marked."
  3210. (interactive)
  3211. (let (deactivate-mark)
  3212. (if (or (and (eq last-command this-command) (mark t))
  3213. (and transient-mark-mode mark-active))
  3214. (set-mark
  3215. (save-excursion
  3216. (goto-char (mark))
  3217. (goto-char (org-element-get-property :end (org-element-at-point)))))
  3218. (let ((element (org-element-at-point)))
  3219. (end-of-line)
  3220. (push-mark (org-element-get-property :end element) t t)
  3221. (goto-char (org-element-get-property :begin element))))))
  3222. (defun org-narrow-to-element ()
  3223. "Narrow buffer to current element."
  3224. (interactive)
  3225. (let ((elem (org-element-at-point)))
  3226. (cond
  3227. ((eq (car elem) 'headline)
  3228. (narrow-to-region
  3229. (org-element-get-property :begin elem)
  3230. (org-element-get-property :end elem)))
  3231. ((memq (car elem) org-element-greater-elements)
  3232. (narrow-to-region
  3233. (org-element-get-property :contents-begin elem)
  3234. (org-element-get-property :contents-end elem)))
  3235. (t
  3236. (narrow-to-region
  3237. (org-element-get-property :begin elem)
  3238. (org-element-get-property :end elem))))))
  3239. (defun org-transpose-elements ()
  3240. "Transpose current and previous elements, keeping blank lines between.
  3241. Point is moved after both elements."
  3242. (interactive)
  3243. (org-skip-whitespace)
  3244. (let ((pos (point))
  3245. (cur (org-element-at-point)))
  3246. (when (= (save-excursion (goto-char (point-min))
  3247. (org-skip-whitespace)
  3248. (point-at-bol))
  3249. (org-element-get-property :begin cur))
  3250. (error "No previous element"))
  3251. (goto-char (org-element-get-property :begin cur))
  3252. (forward-line -1)
  3253. (let ((prev (org-element-at-point)))
  3254. (when (org-element-nested-p cur prev)
  3255. (goto-char pos)
  3256. (error "Cannot transpose nested elements"))
  3257. (org-element-swap-A-B prev cur))))
  3258. (defun org-element-unindent-buffer ()
  3259. "Un-indent the visible part of the buffer.
  3260. Relative indentation \(between items, inside blocks, etc.\) isn't
  3261. modified."
  3262. (interactive)
  3263. (unless (eq major-mode 'org-mode)
  3264. (error "Cannot un-indent a buffer not in Org mode"))
  3265. (let* ((parse-tree (org-element-parse-buffer 'greater-element))
  3266. unindent-tree ; For byte-compiler.
  3267. (unindent-tree
  3268. (function
  3269. (lambda (contents)
  3270. (mapc (lambda (element)
  3271. (if (eq (car element) 'headline)
  3272. (funcall unindent-tree
  3273. (org-element-get-contents element))
  3274. (save-excursion
  3275. (save-restriction
  3276. (narrow-to-region
  3277. (org-element-get-property :begin element)
  3278. (org-element-get-property :end element))
  3279. (org-do-remove-indentation)))))
  3280. (reverse contents))))))
  3281. (funcall unindent-tree (org-element-get-contents parse-tree))))
  3282. (defun org-element-up ()
  3283. "Move to upper element.
  3284. Return position at the beginning of the upper element."
  3285. (interactive)
  3286. (let ((opoint (point)) elem)
  3287. (cond
  3288. ((bobp) (error "No surrounding element"))
  3289. ((org-with-limited-levels (org-at-heading-p))
  3290. (or (org-up-heading-safe) (error "No surronding element")))
  3291. ((and (org-at-item-p)
  3292. (setq elem (org-element-at-point))
  3293. (let* ((top-list-p (zerop (org-element-get-property :level elem))))
  3294. (unless top-list-p
  3295. ;; If parent is bound to be in the same list as the
  3296. ;; original point, move to that parent.
  3297. (let ((struct (org-element-get-property :structure elem)))
  3298. (goto-char
  3299. (org-list-get-parent
  3300. (point-at-bol) struct (org-list-parents-alist struct))))))))
  3301. (t
  3302. (let* ((elem (or elem (org-element-at-point)))
  3303. (end (save-excursion
  3304. (goto-char (org-element-get-property :end elem))
  3305. (skip-chars-backward " \r\t\n")
  3306. (forward-line)
  3307. (point)))
  3308. prev-elem)
  3309. (goto-char (org-element-get-property :begin elem))
  3310. (forward-line -1)
  3311. (while (and (< (org-element-get-property
  3312. :end (setq prev-elem (org-element-at-point)))
  3313. end)
  3314. (not (bobp)))
  3315. (goto-char (org-element-get-property :begin prev-elem))
  3316. (forward-line -1))
  3317. (if (and (bobp) (< (org-element-get-property :end prev-elem) end))
  3318. (progn (goto-char opoint)
  3319. (error "No surrounding element"))
  3320. (goto-char (org-element-get-property :begin prev-elem))))))))
  3321. (provide 'org-element)
  3322. ;;; org-element.el ends here