Skip to content

Commit b8abc63

Browse files
Update README.md
1 parent 53fa452 commit b8abc63

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Diff for: README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Build maintainable regular expressions for TypeScript and JavaScript.
1010

11-
[API docs](./docs/API.md) | [Examples](./docs/Examples.md)
11+
[API docs](https://callstack.github.io/ts-regex-builder/api) | [Examples](https://callstack.github.io/ts-regex-builder/examples)
1212

1313
## Goal
1414

@@ -89,7 +89,7 @@ const currencyAmount = buildRegExp([
8989
]);
9090
```
9191

92-
See [API doc](./docs/API.md) for more info.
92+
See [Types](https://callstack.github.io/ts-regex-builder/api/types) for more info.
9393

9494
### Regex Builders
9595

@@ -98,7 +98,7 @@ See [API doc](./docs/API.md) for more info.
9898
| `buildRegExp(...)` | `/.../` | Create `RegExp` instance |
9999
| `buildRegExp(..., { ignoreCase: true })` | `/.../i` | Create `RegExp` instance with flags |
100100

101-
See [Regex Builder API doc](./docs/API.md#builder) for more info.
101+
See [Regex Builder API doc](https://callstack.github.io/ts-regex-builder/api/builder) for more info.
102102

103103
### Regex Constructs
104104

@@ -111,7 +111,7 @@ See [Regex Builder API doc](./docs/API.md#builder) for more info.
111111
| `lookbehind(...)` | `(?<=...)` | Match preceding text without consuming it |
112112
| `negativeLookbehind(...)` | `(?<!...)` | Reject preceding text without consuming it |
113113

114-
See [Regex Constructs API doc](./docs/API.md#constructs) for more info.
114+
See [Regex Constructs API doc](https://callstack.github.io/ts-regex-builder/api/constructs) for more info.
115115

116116
> [!NOTE]
117117
> TS Regex Builder does not have a construct for non-capturing groups. Such groups are implicitly added when required.
@@ -127,7 +127,7 @@ See [Regex Constructs API doc](./docs/API.md#constructs) for more info.
127127
| `repeat(x, { min: n, })` | `x{n,}` | Pattern repeats at least given number of times |
128128
| `repeat(x, { min: n, max: n2 })` | `x{n1,n2}` | Pattern repeats between n1 and n2 number of times |
129129

130-
See [Quantifiers API doc](./docs/API.md#quantifiers) for more info.
130+
See [Quantifiers API doc](https://callstack.github.io/ts-regex-builder/api/quantifiers) for more info.
131131

132132
### Character classes
133133

@@ -142,7 +142,7 @@ See [Quantifiers API doc](./docs/API.md#quantifiers) for more info.
142142
| `charClass(...)` | `[...]` | Union of multiple character classes |
143143
| `inverted(...)` | `[^...]` | Negation of a given character class |
144144

145-
See [Character Classes API doc](./docs/API.md##character-classes) for more info.
145+
See [Character Classes API doc](https://callstack.github.io/ts-regex-builder/api/character-classes) for more info.
146146

147147
### Anchors
148148

@@ -152,11 +152,11 @@ See [Character Classes API doc](./docs/API.md##character-classes) for more info.
152152
| `endOfString` | `$` | Match the end of the string (or the end of a line in multiline mode) |
153153
| `wordBoundary` | `\b` | Match the start or end of a word without consuming characters |
154154

155-
See [Anchors API doc](./docs/API.md#anchors) for more info.
155+
See [Anchors API doc](https://callstack.github.io/ts-regex-builder/api/anchors) for more info.
156156

157157
## Examples
158158

159-
See [Examples document](./docs/Examples.md).
159+
See [Examples document](https://callstack.github.io/ts-regex-builder/examples.md).
160160

161161
## Performance
162162

0 commit comments

Comments
 (0)