From: Jason Self Date: Sun, 2 Jun 2019 16:17:52 +0000 (-0700) Subject: Clean up more formatting X-Git-Url: https://jxself.org/git/?p=inform-resources.git;a=commitdiff_plain;h=582be378714b41937fb2cc99c4d6f8e96c76a910 Clean up more formatting Pandoc introduced gt & lt where they're not appropriate. --- diff --git a/informqr/informqr.md b/informqr/informqr.md index 9e3f72d..40a9fad 100644 --- a/informqr/informqr.md +++ b/informqr/informqr.md @@ -79,10 +79,10 @@ list of alternatives *q1* `or` *q2* `or` ... *qN*: ---------------- ---------------------------------------- *p == q* *p* is equal to *q* *p ~= q* *p* isn't equal to *q* - *p* > *q* *p* is greater than *q* - *p < q* *p* is less than *q* - *p >= q* *p* is greater than or equal to *q* - *p <= q* *p* is less than or equal to *q* + *p* > *q* *p* is greater than *q* + *p < q* *p* is less than *q* + *p >= q* *p* is greater than or equal to *q* + *p <= q* *p* is less than or equal to *q* *p ofclass q* object *p* is of class *q* *p in q* object *p* is a child of object *q* *p notin q* object *p* isn't a child of object *q* @@ -148,22 +148,22 @@ A **word array** is a set of global words accessed using `array-->0`, Array array --> "string"; A **table array** is a set of global words accessed using -*array-->1*, *array-->2*, ... *array-->N*, with -*array-->0* initialized to *N*: +*array-->1*, *array-->2*, ... *array-->N*, with +*array-->0* initialized to *N*: Array array table N ; Array array table expr1 expr2 ... exprN Array array table "string"; A **byte array** is a set of global bytes accessed using -*array->0*, *array->1*, ... *array->(N-1)*: +*array->0*, *array->1*, ... *array->(N-1)*: Array array -> N; Array array -> expr1 expr2 ... exprN; Array array -> "string"; A **string array** is a set of global bytes accessed using -*array->1*, *array->2*, ... *array->N*, with *array->0* +*array->1*, *array->2*, ... *array->N*, with *array->0* initialized to *N*: Array array string N;