add language hints to code blocks

This commit is contained in:
Joel Wetzell
2026-03-28 14:48:30 -05:00
parent 4d76d36d37
commit 694c0e505a
59 changed files with 63 additions and 60 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ The `string.create` processor creates a string based on the provided template. T
### Example
This would create a string using the `Address` property of the incoming message like and OSC message
```
```yaml
- type: string.create
params:
template: "{{.Address}}
+1 -1
View File
@@ -9,6 +9,6 @@ The `string.decode` processor takes a array of bytes and turn it into string. Th
- **type**: `string.decode`
### Example
```
```yaml
- type: string.decode
```
+1 -1
View File
@@ -9,6 +9,6 @@ The `string.encode` processor takes a string and turns it into an array of bytes
- **type**: `string.encode`
### Example
```
```yaml
- type: string.encode
```
+2 -1
View File
@@ -12,7 +12,8 @@ The `string.split` processor takes a string and turns it into an array of string
### Example
Split incoming string on `,` i.e `"one,two,three"` -> `["one","two","three"]`
```
```yaml
- type: string.split
params:
separator: ","