feat(challenge-md): Parse seed files from md
This commit is contained in:
6
tools/challenge-md-parser/utils/index.js
Normal file
6
tools/challenge-md-parser/utils/index.js
Normal file
@ -0,0 +1,6 @@
|
||||
exports.sectionFilter = (
|
||||
{ type, tagName, properties: { id = '' } },
|
||||
sectionId
|
||||
) => {
|
||||
return type === 'element' && tagName === 'section' && id === sectionId;
|
||||
};
|
Reference in New Issue
Block a user