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
const React = require('react'); | |
const fs = require('fs-extra'); | |
const path = require('path'); | |
const readMetadata = require('../../server/readMetadata.js'); | |
const CompLibrary = require('../../core/CompLibrary.js'); | |
const MarkdownBlock = CompLibrary.MarkdownBlock; /* Used to read markdown */ | |
const join = path.join; | |
const CWD = process.cwd(); |