a script that generates a JSON file from the markdown which contains status of proposals.
this script consist of three main stage like other compilers have
- parser
- analyzer
- transformer
- generator
- readMarkdown :
string
- source file will be parsed as an AST
- parseToAST :
object
- an AST representation of the markdown
- collectLinkDefinitions :
object
- detects all link definitions declared from bottom of the markdown file and returns these definitions
- detectTables :
object
- extracts all of the tables from the markdown and returns it as a tree
- detectHeaders :
object
- extracts all of the row from the table nodes and returns it as a tree
- traverser
- takes current node as an input if it has an children nodes then applies the logic with given callback functions and returns something declared in the callback function