Skip to content

Commit

Permalink
Fix bad pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Huggins committed Jul 20, 2020
1 parent b09b75a commit 6753de6
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions docs/TransactionMapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,17 +85,17 @@ The table of filters should not be considered exhaustive; see [Liquid's official

|Property|Parameters|Example|Description|
|--------|----------|-------|-----------|
|**sequence**|string|<!-- {% raw %}Start Liquid Code Sample -->`{{ 'LX' \| sequence }}`<!-- End Liquid Code Sample{% endraw %} -->|Method for assigning sequence values in a loop.|
|**in_loop**|string|<!-- {% raw %}Start Liquid Code Sample -->`{{ input.someValue \| in_loop }}`<!-- End Liquid Code Sample{% endraw %} -->|Method for serializing values within a loop to preserve them for use by the loop; only use this as the last filter, see example for defining loops.|
|**json_parse**|string|<!-- {% raw %}Start Liquid Code Sample -->`{{ '{\"example\": \"content\"\}' \| json_parse }}`<!-- End Liquid Code Sample{% endraw %} -->|Method for returning an object from valid JSON.|
|**json_stringify**|string|<!-- {% raw %}Start Liquid Code Sample -->`{{ inport.someObject \| json_stringify }}`<!-- End Liquid Code Sample{% endraw %} -->|Method for converting a value to valid JSON.|
|**size**|any[] |<!-- {% raw %}Start Liquid Code Sample -->`{{ input.someArray \| size }}`<!-- End Liquid Code Sample{% endraw %} -->|Method for returning the length of an array or string. Default Liquid filter.|
|**map**|any[], string|<!-- {% raw %}Start Liquid Code Sample -->`{{ input.someArray \| map: 'someProperty' }}`<!-- End Liquid Code Sample{% endraw %} -->|Method for returning an array of a specific property in array of objects.|
|**sum_array**|any[] |<!-- {% raw %}Start Liquid Code Sample -->`{{ input.someArray \| sum_array }}`<!-- End Liquid Code Sample{% endraw %} -->|Method for returning the sum of an array of numbers.|
|**truncate**|string \| string[], number|<!-- {% raw %}Start Liquid Code Sample -->`{{ input.someArray \| truncate: 45 }}`<!-- End Liquid Code Sample{% endraw %} -->|Method for truncating a string or array of strings to the desired character length. Overrides default Liquid implementation.|
|**random**|N/A|<!-- {% raw %}Start Liquid Code Sample -->`{{ macro \| random }}`<!-- End Liquid Code Sample{% endraw %} -->|Method for returning a random 4 digit number.|
|**edi_date**|N/A,string|<!-- {% raw %}Start Liquid Code Sample -->`{{ macro \| edi_date: 'long' }}`<!-- End Liquid Code Sample{% endraw %} -->|The current date; takes argument of `'long'` for YYYYmmdd or `'short'` for YYmmdd.|
|**edi_time**|N/A|<!-- {% raw %}Start Liquid Code Sample -->`{{ macro \| edi_time }}`<!-- End Liquid Code Sample{% endraw %} -->|The current time in HHMM format.|
|**sequence**|string|<!-- {% raw %}Start Liquid Code Sample -->`{{ 'LX' | sequence }}`<!-- End Liquid Code Sample{% endraw %} -->|Method for assigning sequence values in a loop.|
|**in_loop**|string|<!-- {% raw %}Start Liquid Code Sample -->`{{ input.someValue | in_loop }}`<!-- End Liquid Code Sample{% endraw %} -->|Method for serializing values within a loop to preserve them for use by the loop; only use this as the last filter, see example for defining loops.|
|**json_parse**|string|<!-- {% raw %}Start Liquid Code Sample -->`{{ '{\"example\": \"content\"\}' | json_parse }}`<!-- End Liquid Code Sample{% endraw %} -->|Method for returning an object from valid JSON.|
|**json_stringify**|string|<!-- {% raw %}Start Liquid Code Sample -->`{{ inport.someObject | json_stringify }}`<!-- End Liquid Code Sample{% endraw %} -->|Method for converting a value to valid JSON.|
|**size**|any[] |<!-- {% raw %}Start Liquid Code Sample -->`{{ input.someArray | size }}`<!-- End Liquid Code Sample{% endraw %} -->|Method for returning the length of an array or string. Default Liquid filter.|
|**map**|any[], string|<!-- {% raw %}Start Liquid Code Sample -->`{{ input.someArray | map: 'someProperty' }}`<!-- End Liquid Code Sample{% endraw %} -->|Method for returning an array of a specific property in array of objects.|
|**sum_array**|any[] |<!-- {% raw %}Start Liquid Code Sample -->`{{ input.someArray | sum_array }}`<!-- End Liquid Code Sample{% endraw %} -->|Method for returning the sum of an array of numbers.|
|**truncate**|string \| string[], number|<!-- {% raw %}Start Liquid Code Sample -->`{{ input.someArray | truncate: 45 }}`<!-- End Liquid Code Sample{% endraw %} -->|Method for truncating a string or array of strings to the desired character length. Overrides default Liquid implementation.|
|**random**|N/A|<!-- {% raw %}Start Liquid Code Sample -->`{{ macro | random }}`<!-- End Liquid Code Sample{% endraw %} -->|Method for returning a random 4 digit number.|
|**edi_date**|N/A,string|<!-- {% raw %}Start Liquid Code Sample -->`{{ macro | edi_date: 'long' }}`<!-- End Liquid Code Sample{% endraw %} -->|The current date; takes argument of `'long'` for YYYYmmdd or `'short'` for YYmmdd.|
|**edi_time**|N/A|<!-- {% raw %}Start Liquid Code Sample -->`{{ macro | edi_time }}`<!-- End Liquid Code Sample{% endraw %} -->|The current time in HHMM format.|

#### Legacy Macro Language

Expand Down

0 comments on commit 6753de6

Please sign in to comment.