asciidoc vs markdown...

This commit is contained in:
2016-12-07 21:53:50 +01:00
parent be97dae43e
commit aa6a20f17b

View File

@@ -1,12 +1,12 @@
= berl32
# berl32
Quick and Dirty Crockford Base32 Erlang Implementation
== Build
## Build
$ rebar3 compile
== Encoding
## Encoding
> berl32:encode("*").
{ok,<<"1A">>}
@@ -23,7 +23,7 @@ Quick and Dirty Crockford Base32 Erlang Implementation
> berl32:encode(<<18446744073709551615:64/integer>>).
{ok, <<"FZZZZZZZZZZZZ">>}
== Decoding
## Decoding
> berl32:decode(<<"1A">>).
{ok,<<"*">>}
@@ -34,7 +34,7 @@ Quick and Dirty Crockford Base32 Erlang Implementation
> berl32:decode(<<"FZZZZZZZZZZZZZZ">>).
{ok,<<"ÿÿÿÿÿÿÿÿÿ">>}
== Todo
## Todo
* add checksum/control character support
* add more unit test