Skip to content

Commit 3cc656d

Browse files
author
Nicklas Utgaard
committed
docs: ✏️ added more information to readme
1 parent cf5f154 commit 3cc656d

File tree

1 file changed

+54
-4
lines changed

1 file changed

+54
-4
lines changed

README.md

+54-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,60 @@
1-
# Textparser
1+
# Textparser - Simple regex-based parser
22

3-
Simple regex-rule-based parser, see [rules](./rules.ts)
3+
Parses text into an AST given a set of regex-based rules.
44

5-
## Sample
5+
## Usage
6+
```typescript
7+
import React from 'react';
8+
import { parse, build, AST, ParagraphRule, LinebreakRule, LinkRule } from '@navikt/textparser'
69

10+
const rules = [ParagraphRule, LinebreakRule, LinkRule];
11+
const textFromUser : string = '...';
12+
const ast : AST = parse(textFromUser, rules);
13+
14+
const reactOutput : React.ReactElement<{}> = build(ast, rules);
15+
```
16+
17+
## Creating your own rule
18+
Rules are split into two group; block-rules and inline-rules.
19+
Block-rules are useful when working with structures spanning multiple lines, e.g paragraphs, lists, tables etc.
20+
Whereas inline-rules are useful can be used to implement bold, italics, linking etc. Take a look at [the predefined rules](src/rules.ts) for more inspiration.
21+
22+
```typescript
23+
type Rule = {
24+
name: string;
25+
scope: RuleScope;
26+
regex: RegExp;
27+
parse(match: RegexMatch): ASTNode;
28+
react(node: ASTNode): ReactElementDescription;
29+
}
30+
31+
const atRule = {
32+
name: 'atRule',
33+
scope: RuleScope.INLINE,
34+
regex: /\s?@(\w+)/,
35+
parse(match): ASTNode {
36+
return { name: 'atRule', content: [match.capture[0]] }
37+
},
38+
react(node: ASTNode): ReactElementDescription {
39+
return { type: 'a', props: { href: `https://url.com?user=${Utils.getText(node)}` } }
40+
}
41+
};
42+
```
43+
44+
## Customizing existing rule
45+
```typescript
46+
import * as Utils from '@navikt/textparser';
47+
import { Link } from 'react-router';
48+
49+
const customLinkRule: Rule = {
50+
...LinkRule,
51+
react(node: string | { name: string; content: AST }): ReactElementDescription {
52+
return {type: Link, props: {className: 'paragraph-class', to: Utils.getText(node) }}
53+
}
54+
};
55+
```
56+
57+
## AST showcase
758
**INPUT**
859

960
```
@@ -24,7 +75,6 @@ spans multiple lines.
2475
```
2576

2677
**OUTPUT**
27-
2878
```
2979
[
3080
{

0 commit comments

Comments
 (0)