CatPtain's picture
Upload 339 files
89ce340 verified
raw
history blame
410 Bytes
// 参考:https://github.com/andrejewski/himalaya 用TypeScript重写并简化部分功能
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 }