I have a lot of data frame such as [COMPANY]
in my html text file which I want exclude while Deepl translating my text. I use Deepl Java lib with api and not allowed to change the data frame format.
Any Idea how to exclude df[TEXT] from translation?
Example text:
Dear client,
Please find enclosed [EVENT] for the order you wish to execute for your account [ACCOUNT_NAME_TEXT].
Kind regards,
[COMPANY_NAME]
html file
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p>Dear client,</p>
<p>Please find enclosed the Events for the order you wish to execute for your account [ACCOUNT_NAME_TEXT].</p>
<p> </p>
<p>Kind regards,</p>
<p>[COMPANY_NAME]</p>
</body>
</html>