chore: remove old parser
This commit is contained in:
committed by
Mrugesh Mohapatra
parent
e3511f2930
commit
a3a678b7af
10
tools/challenge-parser/parser/tools/full-parse.js
Normal file
10
tools/challenge-parser/parser/tools/full-parse.js
Normal file
@@ -0,0 +1,10 @@
|
||||
const { inspect } = require('util');
|
||||
const path = require('path');
|
||||
|
||||
const { parsemd } = require('../index');
|
||||
|
||||
(async () => {
|
||||
const fullPath = path.resolve(__dirname, '../__fixtures__/realistic.md');
|
||||
const output = await parsemd(fullPath);
|
||||
console.log(inspect(output, null, null, true));
|
||||
})();
|
Reference in New Issue
Block a user