Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Allow setting escape option per parameter replacing #756

Merged
merged 1 commit into from
May 6, 2024

Conversation

susnux
Copy link
Contributor

@susnux susnux commented May 4, 2024

Allows to use HTML inside the parameters like the following example. This will still escape the user input but keep the HTML tags for a and end_a.

t(
	'app',
	'Click: {a}{userInput}{end_a}',
	{
		a: {
			value: '<a>',
			escape: false,
		},
		userInput,
		end_a: {
			value: '</a>',
			escape: false,
		},
	},
)

Allows to use HTML inside the parameters like the following example.
This will still escape the user input but keep the HTML tags for `a` and `end_a`.
```js
t(
	'app',
	'Click: {a}{userInput}{end_a}',
	{
		a: {
			value: '<a>',
			escape: false,
		},
		userInput,
		end_a: {
			value: '</a>',
			escape: false,
		},
	},
)
```

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
@susnux susnux added enhancement New feature or request 3. to review labels May 4, 2024
@susnux susnux merged commit 558a387 into main May 6, 2024
12 checks passed
@susnux susnux deleted the feat/allow-per-replacement-escaping branch May 6, 2024 13:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
3. to review enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants