About
This crate seeks to be a low-level parser for Javadoc-style doc comment formats, e.g. JavaDoc, JSDoc, TSDoc, etc.
Example
use parse;
use ;
assert_eq!;
🔮 Design Goals
- The crate is agnostic from the concrete set of valid tags so that more high-level parsers (JSDoc, TSDoc, etc.) can be built on top of it.
- The parser tries to allocate as little memory as possible to ensure great performance, so the AST format is designed to use slices of the input data as much as possible.
👯 Contributing
Please check the contributing documentation