File size: 439 Bytes
c20f20c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Reference: https://github.com/andrejewski/himalaya — rewritten in TypeScript with simplified functionality

import { lexer } from './lexer';
import { parser } from './parser';
import { format } from './format';
import { toHTML } from './stringify';
export type { AST } from './types';

export const toAST = (str: string) => {
  const tokens = lexer(str);
  const nodes = parser(tokens);
  return format(nodes);
};

export { toHTML };