Skip to content

Commit 29c8996

Browse files
Integrated latest changes at 11-28-2025 10:30:03 AM
1 parent 2a7fb1d commit 29c8996

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ej2-javascript/rich-text-editor/smart-editing/mail-merge.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ When the **Merge Data** button is clicked, the editor content is processed to re
194194

195195
{% if page.publishingplatform == "typescript" %}
196196

197-
{% endhighlight %}
198-
{% endtabs %}
197+
{% highlight %}
198+
{% tabs %}
199199

200200
document.getElementById('merge_data')?.addEventListener('click', onClickHandler);
201201

@@ -209,6 +209,9 @@ function replacePlaceholders(template: string, data: { [key: string]: string }):
209209
return template.replace(/{{\s*(\w+)\s*}}/g, (match, key) => data[key.trim()] || match);
210210
}
211211

212+
{% endhighlight %}
213+
{% endtabs %}
214+
212215
{% elsif page.publishingplatform == "javascript" %}
213216

214217
{% tabs %}
@@ -243,9 +246,6 @@ function replacePlaceholders(template, data) {
243246
{% endtabs %}
244247
{% endif %}
245248

246-
{% tabs %}
247-
{% highlight ts tabtitle="app.ts" %}
248-
249249
{% if page.publishingplatform == "typescript" %}
250250

251251
{% tabs %}

0 commit comments

Comments
 (0)