kstenerud / safe-encoding

Binary-to-text encoding that is safe to pass through modern text processors
Other
32 stars 5 forks source link

Safe85 values 36 and 52 are the same #10

Closed berezovskyi closed 5 years ago

berezovskyi commented 5 years ago

Both are 0x60 in ASCII in the spec. Refimpl uses | for value 52.

kstenerud commented 5 years ago

It looks like the table renderer code in Github doesn't like the pipe for 0x52. The text document is correct, but the renderer is broken.

I'll have to see if there's a workaround.

berezovskyi commented 5 years ago

I see, thanks! https://stackoverflow.com/questions/17319940/how-to-escape-a-pipe-char-in-a-code-statement-in-a-markdown-table suggests to use codeHTML tag.

kstenerud commented 5 years ago

A perfect! updated.