You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It appears that the term renderer attempted to implement io.Reader and io.Writer interfaces with the Read() and Write() functions. However, they don't appear to do anything. They seem to proxy calls to read/write of two different bytes.Buffer objects.
My expectation was that those functions were used to render a markdown file from an io.Reader. So, I tried to do:
But this doesn't appear to work, and as mentioned above, after looking at the source code, those methods appear to do nothing. Is there some functionality I'm missing or are they in fact not functional?
The text was updated successfully, but these errors were encountered:
It appears that the term renderer attempted to implement
io.Reader
andio.Writer
interfaces with theRead()
andWrite()
functions. However, they don't appear to do anything. They seem to proxy calls to read/write of two differentbytes.Buffer
objects.My expectation was that those functions were used to render a markdown file from an
io.Reader
. So, I tried to do:But this doesn't appear to work, and as mentioned above, after looking at the source code, those methods appear to do nothing. Is there some functionality I'm missing or are they in fact not functional?
The text was updated successfully, but these errors were encountered: