We're a place where coders share, stay up-to-date and grow their careers.
This extractor is working for me, but I've not tested it thoroughly:
function extractor(content) { const matches = content.match(/[A-Za-z0-9-_:/]+/g) || []; const res = matches.map(match => { if (match.startsWith("class:")) { return match.split(":")[1]; } return match; }); return res; }
This extractor is working for me, but I've not tested it thoroughly: