diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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/ |