diff --git a/docs-2.0/2.quick-start/6.cheatsheet-for-ngql.md b/docs-2.0/2.quick-start/6.cheatsheet-for-ngql.md index cb4aa291cb9..13879fac203 100644 --- a/docs-2.0/2.quick-start/6.cheatsheet-for-ngql.md +++ b/docs-2.0/2.quick-start/6.cheatsheet-for-ngql.md @@ -13,9 +13,9 @@ | double sqrt(double x) | Returns the square root of the argument. | | double cbrt(double x) | Returns the cubic root of the argument. | | double hypot(double x, double y) | Returns the hypotenuse of a right-angled triangle. | - | double pow(double x, double y) | Returns the result of $x^y$. | - | double exp(double x) | Returns the result of $e^x$. | - | double exp2(double x) | Returns the result of $2^x$. | + | double pow(double x, double y) | Returns the result of x^y^. | + | double exp(double x) | Returns the result of e^x^. | + | double exp2(double x) | Returns the result of 2^x^. | | double log(double x) | Returns the base-e logarithm of the argument. | | double log2(double x) | Returns the base-2 logarithm of the argument. | | double log10(double x) | Returns the base-10 logarithm of the argument. | diff --git a/docs-2.0/3.ngql-guide/6.functions-and-expressions/1.math.md b/docs-2.0/3.ngql-guide/6.functions-and-expressions/1.math.md index 1cd0fed6eb4..4376ade2bdd 100644 --- a/docs-2.0/3.ngql-guide/6.functions-and-expressions/1.math.md +++ b/docs-2.0/3.ngql-guide/6.functions-and-expressions/1.math.md @@ -13,9 +13,9 @@ double round(double x, int y) | Returns the rounded value of x. y specifies the double sqrt(double x) | Returns the square root of the argument. | double cbrt(double x) | Returns the cubic root of the argument. | double hypot(double x, double y) | Returns the hypotenuse of a right-angled triangle. | -double pow(double x, double y) | Returns the result of $x^y$. | -double exp(double x) | Returns the result of $e^x$. | -double exp2(double x) | Returns the result of $2^x$. | +double pow(double x, double y) | Returns the result of x^y^. | +double exp(double x) | Returns the result of e^x^. | +double exp2(double x) | Returns the result of 2^x^. | double log(double x) | Returns the base-e logarithm of the argument. | double log2(double x) | Returns the base-2 logarithm of the argument. | double log10(double x) | Returns the base-10 logarithm of the argument. | diff --git a/mkdocs.yml b/mkdocs.yml index 62c09099b9c..750a1861432 100755 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -52,6 +52,8 @@ markdown_extensions: base_path: docs-2.0/reuse/ - pymdownx.arithmatex: generic: true + - pymdownx.caret + - pymdownx.tilde # Plugins plugins: