Skip to content

Commit 5ac9a91

Browse files
authored
Merge branch 'develop' into vanand17-patch-6
2 parents b5c5859 + 266074c commit 5ac9a91

File tree

86 files changed

+4389
-30421
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+4389
-30421
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-19
2+
# destination categories last updated 2023-02-02
33
items:
44
- display_name: A/B Testing
55
slug: a-b-testing

0 commit comments

Comments
 (0)