Revert "migrate docs to mdx"

This reverts commit 3cb12b5a52.
This commit is contained in:
Dylan Staley
2021-11-22 15:57:25 -08:00
parent 3cb12b5a52
commit 0e48f58688
321 changed files with 4602 additions and 4223 deletions

View File

@@ -1,22 +0,0 @@
---
page_title: abs - Functions - Configuration Language
description: The abs function returns the absolute value of the given number.
sidebar_title: abs
---
# `abs` Function
`abs` returns the absolute value of the given number. In other words, if the
number is zero or positive then it is returned as-is, but if it is negative
then it is multiplied by -1 to make it positive before returning it.
## Examples
```
> abs(23)
23
> abs(0)
0
> abs(-12.4)
12.4
```