We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acf9522 commit 246e3a5Copy full SHA for 246e3a5
src/index.js
@@ -86,7 +86,7 @@ async function getInterests(onSuccess) {
86
rows.pop();
87
const interests = rows.map((a) => ({
88
img: a.match(/(\[?\(.+\)\])/g)[0].slice(1, -2),
89
- title: a.match(/(\[\w+\])/g)[0].slice(1, -1),
+ title: a.match(/(\[[\w.-]+\])/g)[0].slice(1, -1),
90
href: a.match(/(\)\]\(.+\))/g)[0].slice(3, -1),
91
}));
92
onSuccess(interests);
0 commit comments