Skip to content

Commit 670acf4

Browse files
committed
Add note on regexes to README.
1 parent d4804ef commit 670acf4

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

README.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ in a declarative manner, directly as a part of your component hierarchy.
1313

1414
## Docs
1515

16-
* [Overview][docs]
16+
* [Overview and Usage][docs]
1717
* [Implementation Visualization][implementation]
1818
* [Hash Routing][hash-routing]
1919
* [Server-side Rendering][server-side]
2020
* [Multiple Routers][multiple]
2121
* [Contextual Routers][contextual]
2222
* [Asynchronous Routes][async]
23-
* [Capturing Clicks on anchor elements][a-elements]
24-
* [A custom Link component][rec-custom-link]
25-
* [A custom Router component][rec-custom-router]
23+
* [Capturing Clicks on Anchor Elements][a-elements]
24+
* [A custom Link Component][rec-custom-link]
25+
* [A custom Router Component][rec-custom-router]
2626

2727
## Project Overview
2828

@@ -52,8 +52,8 @@ users.
5252
React router component can dispatch based on `location.pathname` or
5353
`location.hash` if browser doesn't support History API (see [hash routing][hash-routing]).
5454

55-
Furthermore it provides advanced features like support for [full page server
56-
side rendering][server-side], [multiple routers][multiple] on the same page,
55+
Furthermore it provides advanced features like support for [regex matching][regex],
56+
[full page server side rendering][server-side], [multiple routers][multiple] on the same page,
5757
[contextual routers][contextual] and support for [async components][async].
5858

5959
Its functionality is tested using [Saucelabs][] on all modern browsers (IE >= 9,
@@ -75,6 +75,7 @@ Compatible with React 0.12 and React 0.13. Older versions work with older versio
7575
See [docs][] for the usage.
7676

7777
[hash-routing]: http://strml.viewdocs.io/react-router-component/hash-routing
78+
[regex]: http://strml.viewdocs.io/react-router-component#user-content-regular-expressions
7879
[server-side]: http://strml.viewdocs.io/react-router-component/server-side
7980
[multiple]: http://strml.viewdocs.io/react-router-component/multiple
8081
[contextual]: http://strml.viewdocs.io/react-router-component/contextual

0 commit comments

Comments
 (0)