diff options
author | Mark Pulford <mark@kyne.com.au> | 2012-01-22 14:10:41 +1030 |
---|---|---|
committer | Mark Pulford <mark@kyne.com.au> | 2012-03-04 18:54:36 +1030 |
commit | cbea0e4258c2033dd1cf3c2003f800a83f75db40 (patch) | |
tree | 50d2a7358355d8f21ea3d911ba409017b4ce9837 | |
parent | a3264c9778c6571e4e34fd86b82edcfa86ab022f (diff) | |
download | lua-cjson-cbea0e4258c2033dd1cf3c2003f800a83f75db40.tar.gz lua-cjson-cbea0e4258c2033dd1cf3c2003f800a83f75db40.tar.bz2 lua-cjson-cbea0e4258c2033dd1cf3c2003f800a83f75db40.zip |
Escape tilde characters in documentation
-rw-r--r-- | manual.txt | 10 | ||||
-rw-r--r-- | performance.txt | 2 |
2 files changed, 6 insertions, 6 deletions
@@ -21,7 +21,7 @@ Lua CJSON is covered by the MIT license. Review the file +LICENSE+ for | |||
21 | details. | 21 | details. |
22 | 22 | ||
23 | The latest version of this software is available from the | 23 | The latest version of this software is available from the |
24 | http://www.kyne.com.au/~mark/software/lua-cjson.php[Lua CJSON website]. | 24 | http://www.kyne.com.au/%7Emark/software/lua-cjson.php[Lua CJSON website]. |
25 | 25 | ||
26 | Feel free to email me if you have any patches, suggestions, or comments. | 26 | Feel free to email me if you have any patches, suggestions, or comments. |
27 | 27 | ||
@@ -369,10 +369,10 @@ JSON libraries. To ensure the output is valid JSON, applications should | |||
369 | ensure all Lua strings passed to +cjson.encode+ are UTF-8. | 369 | ensure all Lua strings passed to +cjson.encode+ are UTF-8. |
370 | 370 | ||
371 | Base64 is commonly used to encode binary data as the most efficient | 371 | Base64 is commonly used to encode binary data as the most efficient |
372 | encoding under UTF-8 can only reduce the encoded size by a further \~8%. | 372 | encoding under UTF-8 can only reduce the encoded size by a further |
373 | Lua Base64 routines can be found in the | 373 | ~8%. Lua Base64 routines can be found in the |
374 | http://w3.impa.br/~diego/software/luasocket/[LuaSocket] and | 374 | http://w3.impa.br/%7Ediego/software/luasocket/[LuaSocket] and |
375 | http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/#lbase64[lbase64] packages. | 375 | http://www.tecgraf.puc-rio.br/%7Elhf/ftp/lua/#lbase64[lbase64] packages. |
376 | ========= | 376 | ========= |
377 | 377 | ||
378 | Lua CJSON uses a heuristic to determine whether to encode a Lua table as | 378 | Lua CJSON uses a heuristic to determine whether to encode a Lua table as |
diff --git a/performance.txt b/performance.txt index 2fd5c7d..05e39af 100644 --- a/performance.txt +++ b/performance.txt | |||
@@ -26,7 +26,7 @@ http://chiselapp.com/user/dhkolf/repository/dkjson/[DKJSON 2.1]:: | |||
26 | https://github.com/brimworks/lua-yajl[Lua YAJL 2.0]:: | 26 | https://github.com/brimworks/lua-yajl[Lua YAJL 2.0]:: |
27 | - C wrapper for the YAJL library | 27 | - C wrapper for the YAJL library |
28 | 28 | ||
29 | http://www.kyne.com.au/~mark/software/lua-cjson.php[Lua CSJON 2.0.0]:: | 29 | http://www.kyne.com.au/%7Emark/software/lua-cjson.php[Lua CSJON 2.0.0]:: |
30 | - C implementation with no dependencies on other libraries | 30 | - C implementation with no dependencies on other libraries |
31 | 31 | ||
32 | 32 | ||