Skip to content

Commit

Permalink
docs(parse): fix branch links
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Apr 20, 2020
1 parent b5c33af commit 853869f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 19 deletions.
22 changes: 11 additions & 11 deletions packages/parse/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ Package sizes (gzipped, pre-treeshake): ESM: 4.44 KB / CJS: 4.77 KB / UMD: 4.46

## Dependencies

- [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/api)
- [@thi.ng/checks](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/checks)
- [@thi.ng/errors](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/errors)
- [@thi.ng/strings](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/strings)
- [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/develop/packages/api)
- [@thi.ng/checks](https://github.com/thi-ng/umbrella/tree/develop/packages/checks)
- [@thi.ng/errors](https://github.com/thi-ng/umbrella/tree/develop/packages/errors)
- [@thi.ng/strings](https://github.com/thi-ng/umbrella/tree/develop/packages/strings)

## API

Expand All @@ -73,18 +73,18 @@ TODO

### Context & reader creation

- [`defContext`](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/context.ts)
- [`defContext`](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/context.ts)

Source:
[/readers](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/readers)
[/readers](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/readers)

- `defArrayReader`
- `defStringReader`

### Presets parsers

Source:
[/presets](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/presets)
[/presets](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/presets)

- `WS` / `WS0` / `WS1` / `NL` / `DNL` / `SPACE` / `SPACES` / `SPACES0`
- `ALPHA` / `LOWER_CASE` / `UPPER_CASE` / `ALPHA_NUM`
Expand All @@ -97,7 +97,7 @@ Source:
### Primitives

Source:
[/prims](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/prims)
[/prims](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/prims)

- `always`
- `fail`
Expand All @@ -124,7 +124,7 @@ Source:
### Combinators

Source:
[/combinators](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/combinators)
[/combinators](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/combinators)

- `alt` / `altD`
- `check`
Expand All @@ -139,7 +139,7 @@ Source:
### Transformers

Source:
[/xform](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/xform)
[/xform](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/xform)

Syntax sugars for `xform(parser, fn)`:

Expand All @@ -163,7 +163,7 @@ Actual transforms:
## Grammar definition

Complex parsers can be constructed via
[`defGrammar()`](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/grammar.ts#L228),
[`defGrammar()`](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/grammar.ts#L228),
which accepts a string of rule definitions in the built-in (and still
WIP) grammar rule definition language, similar to PEGs and regular
expressions:
Expand Down
1 change: 0 additions & 1 deletion packages/parse/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@
},
"sideEffects": false,
"thi.ng": {
"branch": "feature/parse",
"status": "alpha",
"year": 2020
}
Expand Down
14 changes: 7 additions & 7 deletions packages/parse/tpl.readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,18 +57,18 @@ TODO

### Context & reader creation

- [`defContext`](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/context.ts)
- [`defContext`](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/context.ts)

Source:
[/readers](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/readers)
[/readers](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/readers)

- `defArrayReader`
- `defStringReader`

### Presets parsers

Source:
[/presets](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/presets)
[/presets](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/presets)

- `WS` / `WS0` / `WS1` / `NL` / `DNL` / `SPACE` / `SPACES` / `SPACES0`
- `ALPHA` / `LOWER_CASE` / `UPPER_CASE` / `ALPHA_NUM`
Expand All @@ -81,7 +81,7 @@ Source:
### Primitives

Source:
[/prims](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/prims)
[/prims](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/prims)

- `always`
- `fail`
Expand All @@ -108,7 +108,7 @@ Source:
### Combinators

Source:
[/combinators](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/combinators)
[/combinators](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/combinators)

- `alt` / `altD`
- `check`
Expand All @@ -123,7 +123,7 @@ Source:
### Transformers

Source:
[/xform](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/xform)
[/xform](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/xform)

Syntax sugars for `xform(parser, fn)`:

Expand All @@ -147,7 +147,7 @@ Actual transforms:
## Grammar definition

Complex parsers can be constructed via
[`defGrammar()`](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/grammar.ts#L228),
[`defGrammar()`](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/grammar.ts#L228),
which accepts a string of rule definitions in the built-in (and still
WIP) grammar rule definition language, similar to PEGs and regular
expressions:
Expand Down

0 comments on commit 853869f

Please sign in to comment.