emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] scratch/org-edna ce425a3 71/72: Fixed up documentation


From: Ian Dunn
Subject: [elpa] scratch/org-edna ce425a3 71/72: Fixed up documentation
Date: Sun, 21 May 2017 21:11:30 -0400 (EDT)

branch: scratch/org-edna
commit ce425a365cc305142a6ec7ec95ebe5fd636100e3
Author: Ian D <address@hidden>
Commit: Ian D <address@hidden>

    Fixed up documentation
    
    * org-edna.el: Removed org annotations from docstrings.
    
    * org-edna.org: Changed syntax snippets to lists.
---
 org-edna.el  | 28 +++++++++------------------
 org-edna.org | 63 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 40 insertions(+), 51 deletions(-)

diff --git a/org-edna.el b/org-edna.el
index 380ab87..e0d3cc0 100644
--- a/org-edna.el
+++ b/org-edna.el
@@ -301,12 +301,10 @@ into `org-map-entries'.
 SCOPE and SKIP are their counterparts in `org-map-entries'.
 SCOPE defaults to agenda, and SKIP defaults to nil.
 
-#+BEGIN_SRC org
-,* TODO Test
+* TODO Test
   :PROPERTIES:
   :BLOCKER:  match(\"test&mine\" agenda)
   :END:
-#+END_SRC
 
 \"Test\" will block until all entries tagged \"test\" and
 \"mine\" in the agenda files are marked DONE."
@@ -407,16 +405,14 @@ IDS are all UUIDs as understood by `org-id-find'."
 
 Example:
 
-#+BEGIN_SRC org
-,* TODO Heading 1
-,** TODO Heading 2
-,*** TODO Heading 3
-,**** TODO Heading 4
-,***** TODO Heading 5
+* TODO Heading 1
+** TODO Heading 2
+*** TODO Heading 3
+**** TODO Heading 4
+***** TODO Heading 5
       :PROPERTIES:
       :BLOCKER:  ancestors
       :END:
-#+END_SRC
 
 In the above example, Heading 5 will be blocked until Heading 1,
 Heading 3, and Heading 4 are marked DONE, while Heading 2 is
@@ -432,12 +428,10 @@ ignored."
 
 Finds the heading given by OLP in FILE.  Both arguments are strings.
 
-#+BEGIN_SRC org
-,* TODO Test
+* TODO Test
   :PROPERTIES:
   :BLOCKER:  olp(\"test.org\" \"path/to/heading\")
   :END:
-#+END_SRC
 
 Test will block if the heading \"path/to/heading\" in
 \"test.org\" is not DONE."
@@ -453,12 +447,10 @@ Test will block if the heading \"path/to/heading\" in
 The `file' finder finds a single file, specified as a string.
 The returned target will be the minimum point in the file.
 
-#+BEGIN_SRC org
-,* TODO Test
+* TODO Test
   :PROPERTIES:
   :BLOCKER:  file(\"~/myfile.org\") headings?
   :END:
-#+END_SRC
 
 Here, \"Test\" will block until myfile.org is clear of headlines.
 
@@ -474,12 +466,10 @@ Note that with the default condition, `file' won't work."
 A special form of `file', `org-file' will find FILE (a string) in
 `org-directory'.
 
-#+BEGIN_SRC org
-,* TODO Test
+* TODO Test
   :PROPERTIES:
   :BLOCKER:  org-file(\"test.org\")
   :END:
-#+END_SRC
 
 Note that the file still requires an extension."
   (with-current-buffer (find-file-noselect (expand-file-name file 
org-directory))
diff --git a/org-edna.org b/org-edna.org
index 930e7b0..bb31c85 100644
--- a/org-edna.org
+++ b/org-edna.org
@@ -307,7 +307,7 @@ DONE.
 :DESCRIPTION: Find a file by name
 :END:
 
-Syntax: file("FILE")
+- Syntax: file("FILE")
 
 The ~file~ finder finds a single file, specified as a string.  The returned 
target
 will be the minimum point in the file.
@@ -330,7 +330,7 @@ Here, "Test" will block until myfile.org is clear of 
headlines.
 :DESCRIPTION: Find the first child of a headline
 :END:
 
-Syntax: first-child
+- Syntax: first-child
 
 The ~first-child~ finder returns the first child of a headline, if any.
 
@@ -340,7 +340,7 @@ The ~first-child~ finder returns the first child of a 
headline, if any.
 :CUSTOM_ID: ids
 :END:
 
-Syntax: id(ID1 ID2 ...)
+- Syntax: id(ID1 ID2 ...)
 
 The ~ids~ finder will search for headlines with given IDs, using ~org-id~.  Any
 number of UUIDs may be specified.  For example:
@@ -364,7 +364,7 @@ Note that UUIDs need not be quoted; Edna will handle that 
for you.
 :DESCRIPTION: Good old tag matching
 :END:
 
-Syntax: match("MATCH-STRING" SCOPE SKIP)
+- Syntax: match("MATCH-STRING" SCOPE SKIP)
 
 The ~match~ keyword will take any arguments that ~org-map-entries~ usually 
takes.
 In fact, the arguments to ~match~ are passed straight into ~org-map-entries~.
@@ -388,7 +388,7 @@ argument.
 :DESCRIPTION: Find the next sibling
 :END:
 
-Syntax: next-sibling
+- Syntax: next-sibling
 
 The ~next-sibling~ keyword returns the next sibling of the current heading, if
 any.
@@ -399,7 +399,7 @@ any.
 :DESCRIPTION: Find a headline by its outline path
 :END:
 
-Syntax: olp("FILE" "OLP")
+- Syntax: olp("FILE" "OLP")
 
 Finds the heading given by OLP in FILE.  Both arguments are strings.
 
@@ -418,7 +418,7 @@ Finds the heading given by OLP in FILE.  Both arguments are 
strings.
 :DESCRIPTION: Find a file in org-directory
 :END:
 
-Syntax: org-file("FILE")
+- Syntax: org-file("FILE")
 
 A special form of ~file~, ~org-file~ will find FILE in ~org-directory~.
 
@@ -437,7 +437,7 @@ Note that the file still requires an extension.
 :DESCRIPTION: Find a parent
 :END:
 
-Syntax: parent
+- Syntax: parent
 
 Returns the parent of the current headline, if any.
 
@@ -447,18 +447,17 @@ Returns the parent of the current headline, if any.
 :DESCRIPTION: Find the previous sibling
 :END:
 
-Syntax: previous-sibling
+- Syntax: previous-sibling
 
 Returns the previous sibling of the current headline on the same level.
 
-
 *** rest-of-siblings
 :PROPERTIES:
 :CUSTOM_ID: rest-of-siblings
 :DESCRIPTION: Find the remaining siblings
 :END:
 
-Syntax: rest-of-siblings
+- Syntax: rest-of-siblings
 
 Starting from the headline following the current one, all same-level siblings
 are returned.
@@ -468,7 +467,7 @@ are returned.
 :CUSTOM_ID: self
 :END:
 
-Syntax: self
+- Syntax: self
 
 Returns the current headline.
 
@@ -478,7 +477,7 @@ Returns the current headline.
 :DESCRIPTION: Find all the siblings
 :END:
 
-Syntax: siblings
+- Syntax: siblings
 
 Returns all siblings of the source heading as targets.
 
@@ -488,7 +487,7 @@ Returns all siblings of the source heading as targets.
 :DESCRIPTION: Find the siblings, but wrap around
 :END:
 
-Syntax: siblings-wrap
+- Syntax: siblings-wrap
 
 Finds the siblings on the same level as the current headline, wrapping when it
 reaches the end.
@@ -507,8 +506,8 @@ Actions must always end with '!'.
 :CUSTOM_ID: planning
 :END:
 
-Syntax: scheduled!(OPTIONS)
-Syntax: deadline!(OPTIONS)
+- Syntax: scheduled!(OPTIONS)
+- Syntax: deadline!(OPTIONS)
 
 There are several forms that the planning keywords can take:
 
@@ -545,7 +544,7 @@ Examples:
 scheduled!("Mon 09:00") -> Set SCHEDULED to the following Monday at 9:00
 *** TODO State
 
-Syntax: todo!(NEW-STATE)
+- Syntax: todo!(NEW-STATE)
 
 Sets the TODO state of the target headline to NEW-STATE.
 
@@ -556,7 +555,7 @@ NEW-STATE may either be a string or a symbol denoting the 
new TODO state.
 :CUSTOM_ID: archive!
 :END:
 
-Syntax: archive!
+- Syntax: archive!
 
 Archives all targets with confirmation.
 
@@ -565,14 +564,14 @@ nil, Edna will not ask before archiving the target.
 
 *** Chain Property
 
-Syntax: chain!("PROPERTY")
+- Syntax: chain!("PROPERTY")
 
 Copies PROPERTY from the source entry to all targets.
 
 *** Clocking
 
-Syntax: clock-in!
-Syntax: clock-out!
+- Syntax: clock-in!
+- Syntax: clock-out!
 
 Clocks into or out of all targets.
 
@@ -581,17 +580,17 @@ multiple targets.
 
 *** Property
 
-Syntax: set-property!("PROPERTY","VALUE")
+- Syntax: set-property!("PROPERTY","VALUE")
 
 Sets the property PROPERTY on all targets to VALUE.
 
-Syntax: delete-property!("PROPERTY")
+- Syntax: delete-property!("PROPERTY")
 
 Deletes the property PROPERTY from all targets.
 
 *** Priority
 
-Syntax: set-priority!(PRIORITY)
+- Syntax: set-priority!(PRIORITY)
 
 Sets the priority of all targets to PRIORITY.  PRIORITY is processed as 
follows:
 
@@ -600,14 +599,14 @@ Sets the priority of all targets to PRIORITY.  PRIORITY 
is processed as follows:
 
 *** Tag
 
-Syntax: tag!("TAG-SPEC")
+- Syntax: tag!("TAG-SPEC")
 
 Tags all targets with TAG-SPEC, which is any valid tag specification,
 e.g. tag1:tag2
 
 *** Effort
 
-Syntax: set-effort!(VALUE)
+- Syntax: set-effort!(VALUE)
 
 Sets the effort of all targets according to VALUE:
 
@@ -633,7 +632,7 @@ that target, then that headline is blocked.
 :CUSTOM_ID: done
 :END:
 
-Syntax: done?
+- Syntax: done?
 
 Blocks the current headline if any target is DONE.
 
@@ -642,7 +641,7 @@ Blocks the current headline if any target is DONE.
 :CUSTOM_ID: headings
 :END:
 
-Syntax: headings?
+- Syntax: headings?
 
 Blocks the current headline if any target belongs to a file that has an Org 
heading.
 
@@ -657,7 +656,7 @@ The above example blocks if refile.org has any headings.
 :CUSTOM_ID: todo-state
 :END:
 
-Syntax: todo-state?(STATE)
+- Syntax: todo-state?(STATE)
 
 Blocks if any target has a headline with TODO state set to STATE.
 
@@ -668,7 +667,7 @@ STATE may be a string or a symbol.
 :CUSTOM_ID: variable-set
 :END:
 
-Syntax: variable-set?(VARIABLE,VALUE)
+- Syntax: variable-set?(VARIABLE,VALUE)
 
 Blocks the current headline if VARIABLE is set to VALUE.
 
@@ -683,7 +682,7 @@ self variable-set?(test-variable,12)
 :CUSTOM_ID: has-property
 :END:
 
-Syntax: has-property?("PROPERTY","VALUE")
+- Syntax: has-property?("PROPERTY","VALUE")
 
 Tests each target for the property PROPERTY, and blocks if it's set to VALUE.
 
@@ -693,7 +692,7 @@ Tests each target for the property PROPERTY, and blocks if 
it's set to VALUE.
 :DESCRIPTION: Search for a regular expression
 :END:
 
-Syntax: re-search?("REGEXP")
+- Syntax: re-search?("REGEXP")
 
 Blocks the current headline if the regular expression REGEXP is present in any
 of the targets.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]