Mirror: The magical sticky regex-based parser generator 🧙

Fix accidental section in README

Changed files
-10
-10
README.md
···
parser. We can now call our grammar using a tagged template literal themselves
to parse this.
-
```js
-
import { interpolation } from 'reghex';
-
-
const anyNumber = interpolation((x) => typeof x === 'number');
-
-
const num = match('num')`
-
${/[+-]?/} ${anyNumber}
-
`;
-
```
-
**That's it! May the RegExp be ever in your favor.**