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
Currently the MarkdownProcessor takes in and returns a String. This can become very slow if the markdown if very large. Usually the actual markdown is accessed throw some io operation, like reading from a file of an http call, which with the current implementation requires the caller to convert the raw stream into an String. It would be much more efficient if the MarkdownProcessor would read the markdown dirrectly form the InputStream, and allow a String as a separate option.
The text was updated successfully, but these errors were encountered:
Currently the
MarkdownProcessor
takes in and returns aString
. This can become very slow if the markdown if very large. Usually the actual markdown is accessed throw some io operation, like reading from a file of an http call, which with the current implementation requires the caller to convert the raw stream into anString
. It would be much more efficient if theMarkdownProcessor
would read the markdown dirrectly form theInputStream
, and allow aString
as a separate option.The text was updated successfully, but these errors were encountered: