Skip to content

Commit

Permalink
Sub and superscripts test (#1341)
Browse files Browse the repository at this point in the history
* formatting fix test

* Update 1.math.md

* Update mkdocs.yml
  • Loading branch information
abby-cyber authored May 7, 2022
1 parent d511079 commit dfe032f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs-2.0/2.quick-start/6.cheatsheet-for-ngql.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down
6 changes: 3 additions & 3 deletions docs-2.0/3.ngql-guide/6.functions-and-expressions/1.math.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down
2 changes: 2 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ markdown_extensions:
base_path: docs-2.0/reuse/
- pymdownx.arithmatex:
generic: true
- pymdownx.caret
- pymdownx.tilde

# Plugins
plugins:
Expand Down

0 comments on commit dfe032f

Please sign in to comment.