Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/taocpp/config
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinH committed Mar 31, 2024
2 parents 2e3d01b + 2796634 commit 43520ce
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions doc/All-Config-Functions.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# All Config Functions

* [binary](#binary)
* [cbor](#cbor)
* [~~cbor~~](#cbor)
* [default](#default)
* [env](#env)
* [jaxn](#jaxn)
* [json](#json)
* [msgpack](#msgpack)
* [~~json~~](#json)
* [~~msgpack~~](#msgpack)
* [parse](#parse)
* [read](#read)
* [shell](#shell)
* [split](#split)
* [string](#string)
* [ubjson](#ubjson)
* [~~ubjson~~](#ubjson)

This page is the reference documentation for all included config functions.

Expand All @@ -39,7 +39,7 @@ foo = (binary "Hello, world!")
```


## cbor
## ~~cbor~~

The `cbor` function parses binary data as [CBOR] and returns the resulting value.

Expand Down Expand Up @@ -134,7 +134,7 @@ foo = (jaxn '[Infinity, $ff]')
Note that `jaxn` is frequently combined with `read` as in `foo = (jaxn (read "filename.jaxn"))`.


## json
## ~~json~~

The `json` function parses string (or binary) data as [JSON] and returns the resulting value.
In the case of binary data the input is automatically converted to a string, including a check for valid UTF-8.
Expand All @@ -159,7 +159,7 @@ foo = (json '["a","b"]')
Note that `json` is frequently combined with `read` as in `foo = (json (read "filename.json"))`.


## msgpack
## ~~msgpack~~

The `msgpack` value extension parses binary data as [MsgPack] and returns the resulting value.

Expand Down Expand Up @@ -303,7 +303,7 @@ Note that the conversion from `binary` to `string` is automatic when the binary
The automatic conversion, too, checks whether the binary data is a valid UTF-8 sequence and throws an exception if that is not the case.


## ubjson
## ~~ubjson~~

The `ubjson` value function parses binary data as [UBJSON] and returns the resulting value.

Expand Down

0 comments on commit 43520ce

Please sign in to comment.