Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sub and superscripts test #1341

Merged
merged 3 commits into from
May 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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