From 86b9d615551fcefbcb86e6fef7badcbf699ee964 Mon Sep 17 00:00:00 2001 From: Chris O'Donnell Date: Sun, 12 Jun 2016 16:11:22 -0400 Subject: [PATCH] Fix formatting. --- List-of-Macros.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/List-of-Macros.md b/List-of-Macros.md index 5978533..f3450a8 100644 --- a/List-of-Macros.md +++ b/List-of-Macros.md @@ -5,6 +5,7 @@ ### declarepath `(declarepath name)` + `(declarepath name params)` Declares a new symbol available to be defined as a path. If the path will require parameters, these must be specified here. @@ -20,6 +21,8 @@ See also [providepath](#providepath) (0 0 2 3 4) ``` +## Collector Macros + ### defcollector `(defcollector name params collect-val-impl)` @@ -38,9 +41,12 @@ An informative example is the actual implementation of `putval`, which follows. (3 4 5 6 7) ``` +## Navigator Macros + ### defnav `(defnav name params select-impl transform-impl)` + `(defnav name params transform-impl select-impl)` Canonically the first is used. @@ -78,6 +84,7 @@ See also [nav](#nav) ### nav `(nav params select-impl transform-impl)` + `(nav params transform-impl select-impl)` Returns an "anonymous navigator." See [defnav](#defnav).