Created
February 10, 2021 14:45
-
-
Save nafeu/ad48fe8dc156fea952e633f217922423 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Step 2: Construct page data from components */ | |
| for (const component of components) { | |
| const { content } = Marked.parse(component); | |
| const [matchedComponentType] = content.matchAll(COMPONENT_TYPE_PATTERN); | |
| const [, path, name] = matchedComponentType; | |
| console.log({ path, name }); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment