mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-08-10 16:13:38 +00:00
add layout for remaining processors/modules and order everything
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: String Create
|
||||
title: Create String
|
||||
sidebar:
|
||||
label: Create
|
||||
order: 3
|
||||
---
|
||||
The `string.create` processor creates a string based on the provided template. This processor will return an error if there is an issue executing the template. The template property is just a [Go template](https://pkg.go.dev/text/template) that will be evaluated with the incoming message provided as an environment.
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: String Decode
|
||||
title: Decode String
|
||||
sidebar:
|
||||
label: Decode
|
||||
order: 1
|
||||
---
|
||||
The `string.decode` processor takes a array of bytes and turn it into string. This processor will return an error if the message being processed is not an array of bytes.
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: String Encode
|
||||
title: Encode String
|
||||
sidebar:
|
||||
label: Encode
|
||||
order: 2
|
||||
---
|
||||
The `string.encode` processor takes a string and turns it into an array of bytes. This processor will return an error if the message being processed is not a string.
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: String Split
|
||||
title: Split String
|
||||
sidebar:
|
||||
label: Split
|
||||
order: 5
|
||||
---
|
||||
The `string.split` processor takes a string and turns it into an array of strings by splitting on `params.separator`. This processor will return an error if the message being processed is not a string.
|
||||
|
||||
Reference in New Issue
Block a user