Browse Source

org-manual: Fix formula markup

* doc/org-manual.org (Formula syntax for Calc): Add zero width spaces
  to avoid unwanted markup.
Nicolas Goaziou 7 years ago
parent
commit
e4ecd04dda
1 changed files with 3 additions and 3 deletions
  1. 3 3
      doc/org-manual.org

+ 3 - 3
doc/org-manual.org

@@ -2221,7 +2221,7 @@ Operations]]).  For example
      ="teen"= if age =$1= is less than 20, else the Org table result
      ="teen"= if age =$1= is less than 20, else the Org table result
      field is set to empty with the empty string.
      field is set to empty with the empty string.
 
 
-- =if("$1" == "nan" || "$2" == "nan", string(""), $1 + $2); E f-1= ::
+- =if("$1" == "nan" || "$2" == "nan", string(""), $1 + $2); E f-1= ::
 
 
      Sum of the first two columns.  When at least one of the input
      Sum of the first two columns.  When at least one of the input
      fields is empty the Org table result field is set to empty.  =E=
      fields is empty the Org table result field is set to empty.  =E=
@@ -2229,7 +2229,7 @@ Operations]]).  For example
      optional Calc format string similar to =%.1f= but leaves empty
      optional Calc format string similar to =%.1f= but leaves empty
      results empty.
      results empty.
 
 
-- =if(typeof(vmean($1..$7)) == 12, string(""), vmean($1..$7); E= ::
+- =if(typeof(vmean($1..$7)) == 12, string(""), vmean($1..$7); E= ::
 
 
      Mean value of a range unless there is any empty field.  Every
      Mean value of a range unless there is any empty field.  Every
      field in the range that is empty is replaced by =nan= which lets
      field in the range that is empty is replaced by =nan= which lets
@@ -2238,7 +2238,7 @@ Operations]]).  For example
      this when the sample set is expected to never have missing
      this when the sample set is expected to never have missing
      values.
      values.
 
 
-- =if("$1..$7" == "[]", string(""), vmean($1..$7))= ::
+- =if("$1..$7" == "[]", string(""), vmean($1..$7))= ::
 
 
      Mean value of a range with empty fields skipped.  Every field in
      Mean value of a range with empty fields skipped.  Every field in
      the range that is empty is skipped.  When all fields in the range
      the range that is empty is skipped.  When all fields in the range