-
Notifications
You must be signed in to change notification settings - Fork 502
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use string builder to avoid copies on notes rendering #978
Conversation
@hoegaarden, @cpanato @justaugustus may I ask for a review? :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm very nice!
/hold
Need rebase |
We now use the `strings.Builder` to avoid a lot of copies during document rendering. Beside this, we render the markdown in a temporarily buffer before writing it into a file. This will be needed when it comes to the TOC generation which will be an intermediate step. Signed-off-by: Sascha Grunert <[email protected]>
Rebased on top of the latest master. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please catch the errors when you write to the string builder.
The string builder always returns |
TIL:
👍 /lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: cpanato, hoegaarden, saschagrunert The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/hold cancel |
We now use the
strings.Builder
to avoid a lot of copiesduring document rendering.
Beside this, we render the markdown in a temporarily buffer before
writing it into a file. This will be needed when it comes to the TOC
generation which will be an intermediate step.