URI Convert tool
The URI Convert tool encodes or decodes URI percent-escape sequences in
block text. Decoding turns %XX escapes back into their characters; encoding
replaces reserved characters with percent escapes. Use it to make URL-encoded
content readable for translation, or to re-encode it for output.
By default the tool decodes the target text for the configured locale; a target locale is required when applying to the target.
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
applySource | boolean | false | Apply to source text |
applyTarget | boolean | true | Apply to target text |
mode | string | decode | URI conversion direction |
targetLocale | string | Target locale for processing |
Configure these parameters interactively and copy the flow-step YAML on the Tool Reference.
Examples
Decode percent escapes in the target
Make URL-encoded target text readable.
mode: decode applyTarget: true targetLocale: fr-FR
Encode source text
Percent-encode reserved characters in the source.
mode: encode applySource: true
Processing notes
Operates on translatable blocks only; non-translatable blocks pass through unchanged.
Conversion uses path-style escaping; decoding malformed escape sequences fails the run.
← Back to the Tool Reference