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 /manual.txt | |
parent | a3264c9778c6571e4e34fd86b82edcfa86ab022f (diff) | |
download | lua-cjson-cbea0e4258c2033dd1cf3c2003f800a83f75db40.tar.gz lua-cjson-cbea0e4258c2033dd1cf3c2003f800a83f75db40.tar.bz2 lua-cjson-cbea0e4258c2033dd1cf3c2003f800a83f75db40.zip |
Escape tilde characters in documentation
Diffstat (limited to 'manual.txt')
-rw-r--r-- | manual.txt | 10 |
1 files changed, 5 insertions, 5 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 |