Skip to content

Commit c7a45bb

Browse files
authored
Merge pull request #4133 from segmentio/develop
Release 23.4.2
2 parents 0883f9d + 2e48d56 commit c7a45bb

File tree

16 files changed

+817
-29175
lines changed

16 files changed

+817
-29175
lines changed

scripts/catalog_papi.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,11 @@ const isCatalogItemHidden = (itemURL) => {
144144
}
145145
}
146146

147+
const sanitize = (text) => {
148+
const regex = /(<[^\/a].*?>)/ig;
149+
result = text.replace(regex, "`$1`")
150+
return result
151+
}
147152

148153
const updateSources = async () => {
149154
let sources = []
@@ -381,6 +386,12 @@ const updateDestinations = async () => {
381386
}
382387
return 0;
383388
})
389+
390+
settings.forEach(setting => {
391+
setting.description = sanitize(setting.description)
392+
});
393+
394+
384395
let actions = destination.actions
385396
let presets = destination.presets
386397

src/_data/catalog/destination_categories.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# AUTOGENERATED FROM PUBLIC API. DO NOT EDIT
2-
# destination categories last updated 2023-01-24
2+
# destination categories last updated 2023-01-26
33
items:
44
- display_name: A/B Testing
55
slug: a-b-testing

0 commit comments

Comments
 (0)