Giuseppe Calabrese

Results 2 issues of Giuseppe Calabrese

A plausible occurrence in a document is `("text")`, which `cmark --smart` correctly turns into (“text”) However, if we emphasize the text, ("*text*") we get (”text”) Note the incorrect right quote...

As I'm writing, its absence is also evident in GitHub syntax highlighting: ```java public interface Reader { int readInto(byte[] buf, int n); default int readInto(byte[] buf) { return readInto(buf, buf.length);...