Text Post Processing

1 min read

Textprocessors

Text processors are used to modify text in some way e.g. turning a sharp s into an ss when translating to german for swiss german readers.

Existing processors

Currently there are who text processors available

  1. Replace sharp s with ss

  2. American to British

Configuration

Default

By default, no post-processing is applied.

Config with post-processing

List of post-processing steps

json
[
  {
    "name": "Replace sharp s with ss",
    "active": true,
    "applied_to_language_names": ["German"]
  },
  {
    "name": "American to British",
    "active": true,
    "applied_to_language_names": ["English"]
  }
]

Parameter Description

Parameter

Description

Default Value

name

Name of the processor

null

active

If the processor is used or not

false

applied_to_languages

The languages that will be processed by this processor.

[]

Last updated