Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 1000 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 1000 Bytes

MarkdownChecker

a script that generates a JSON file from the markdown which contains status of proposals.

modules

this script consist of three main stage like other compilers have

  • parser
  • analyzer
  • transformer
  • generator
Parser
  • readMarkdown : string
    • source file will be parsed as an AST
  • parseToAST : object
    • an AST representation of the markdown
Analyzer
  • 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
Transformer
  • 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
Generator