Skip to content

Commit

Permalink
docs(gitbook): No subject (3)
Browse files Browse the repository at this point in the history
  • Loading branch information
Atomys authored and gitbook-bot committed Mar 30, 2024
1 parent c0e8676 commit a9677e4
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 20 deletions.
File renamed without changes.
23 changes: 23 additions & 0 deletions docs/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Table of contents

* [Type Conversion Functions](README.md)
* [Cryptographic and Security Functions](crypto.md)
* [Date Functions](date.md)
* [Default Functions](defaults.md)
* [Dictionaries and Dict Functions](dicts.md)
* [Encoding Functions](encoding.md)
* [Flow Control Functions](flow\_control.md)
* [Sprig Function Documentation](index.md)
* [Integer Slice Functions](integer\_slice.md)
* [Lists and List Functions](lists.md)
* [Integer Math Functions](math.md)
* [Float Math Functions](mathf.md)
* [Network Functions](network.md)
* [OS Functions](os.md)
* [Path and Filepath Functions](paths.md)
* [Reflection Functions](reflection.md)
* [Semantic Version Functions](semver.md)
* [String Slice Functions](string\_slice.md)
* [String Functions](strings.md)
* [URL Functions](url.md)
* [UUID Functions](uuid.md)
40 changes: 20 additions & 20 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@

The Sprig library provides over 70 template functions for Go's template language.

- [String Functions](strings.md): `trim`, `wrap`, `randAlpha`, `plural`, etc.
- [String List Functions](string_slice.md): `splitList`, `sortAlpha`, etc.
- [Integer Math Functions](math.md): `add`, `max`, `mul`, etc.
- [Integer Slice Functions](integer_slice.md): `until`, `untilStep`
- [Float Math Functions](mathf.md): `addf`, `maxf`, `mulf`, etc.
- [Date Functions](date.md): `now`, `date`, etc.
- [Defaults Functions](defaults.md): `default`, `empty`, `coalesce`, `fromJson`, `toJson`, `toPrettyJson`, `toRawJson`, `ternary`
- [Encoding Functions](encoding.md): `b64enc`, `b64dec`, etc.
- [Lists and List Functions](lists.md): `list`, `first`, `uniq`, etc.
- [Dictionaries and Dict Functions](dicts.md): `get`, `set`, `dict`, `hasKey`, `pluck`, `dig`, `deepCopy`, etc.
- [Type Conversion Functions](conversion.md): `atoi`, `int64`, `toString`, etc.
- [Path and Filepath Functions](paths.md): `base`, `dir`, `ext`, `clean`, `isAbs`, `osBase`, `osDir`, `osExt`, `osClean`, `osIsAbs`
- [Flow Control Functions](flow_control.md): `fail`
- Advanced Functions
- [UUID Functions](uuid.md): `uuidv4`
- [OS Functions](os.md): `env`, `expandenv`
- [Version Comparison Functions](semver.md): `semver`, `semverCompare`
- [Reflection](reflection.md): `typeOf`, `kindIs`, `typeIsLike`, etc.
- [Cryptographic and Security Functions](crypto.md): `derivePassword`, `sha256sum`, `genPrivateKey`, etc.
- [Network](network.md): `getHostByName`
* [String Functions](strings.md): `trim`, `wrap`, `randAlpha`, `plural`, etc.
* [String List Functions](string\_slice.md): `splitList`, `sortAlpha`, etc.
* [Integer Math Functions](math.md): `add`, `max`, `mul`, etc.
* [Integer Slice Functions](integer\_slice.md): `until`, `untilStep`
* [Float Math Functions](mathf.md): `addf`, `maxf`, `mulf`, etc.
* [Date Functions](date.md): `now`, `date`, etc.
* [Defaults Functions](defaults.md): `default`, `empty`, `coalesce`, `fromJson`, `toJson`, `toPrettyJson`, `toRawJson`, `ternary`
* [Encoding Functions](encoding.md): `b64enc`, `b64dec`, etc.
* [Lists and List Functions](lists.md): `list`, `first`, `uniq`, etc.
* [Dictionaries and Dict Functions](dicts.md): `get`, `set`, `dict`, `hasKey`, `pluck`, `dig`, `deepCopy`, etc.
* [Type Conversion Functions](./): `atoi`, `int64`, `toString`, etc.
* [Path and Filepath Functions](paths.md): `base`, `dir`, `ext`, `clean`, `isAbs`, `osBase`, `osDir`, `osExt`, `osClean`, `osIsAbs`
* [Flow Control Functions](flow\_control.md): `fail`
* Advanced Functions
* [UUID Functions](uuid.md): `uuidv4`
* [OS Functions](os.md): `env`, `expandenv`
* [Version Comparison Functions](semver.md): `semver`, `semverCompare`
* [Reflection](reflection.md): `typeOf`, `kindIs`, `typeIsLike`, etc.
* [Cryptographic and Security Functions](crypto.md): `derivePassword`, `sha256sum`, `genPrivateKey`, etc.
* [Network](network.md): `getHostByName`

0 comments on commit a9677e4

Please sign in to comment.