summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-01-23 15:34:03 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-01-23 15:34:03 +0900
commit0a4e3ac77477b353c433a0e8daf33993ec8b38cd (patch)
tree3b17c04c97a86bbef2bb3091c25bb77149922f3c /README.md
parentfe4860f7c8af0f02bfae880e81ce092264e0ec56 (diff)
downloadjson-0a4e3ac77477b353c433a0e8daf33993ec8b38cd.tar.gz
[DOC] Fix yet another dead link to Ragel
And extract the same links to a footnote.
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 8c63c2c..981313e 100644
--- a/README.md
+++ b/README.md
@@ -12,8 +12,7 @@ will be two variants available:
extensions, which are both part of the ruby standard library.
* The quite a bit faster native extension variant, which is in parts
implemented in C or Java and comes with its own unicode conversion
- functions and a parser generated by the ragel state machine compiler
- http://www.colm.net/open-source/ragel/ .
+ functions and a parser generated by the [Ragel] state machine compiler.
Both variants of the JSON generator generate UTF-8 character sequences by
default. If an :ascii\_only option with a true value is given, they escape all
@@ -71,8 +70,7 @@ with:
## Compiling the extensions yourself
If you want to create the `parser.c` file from its `parser.rl` file or draw nice
-graphviz images of the state machines, you need ragel from:
-http://www.colm.net/open-source/ragel/
+graphviz images of the state machines, you need [Ragel].
## Usage
@@ -423,3 +421,5 @@ The latest version of this library can be downloaded at
Online Documentation should be located at
* https://www.rubydoc.info/gems/json
+
+[Ragel]: http://www.colm.net/open-source/ragel/