-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Feat: Add low level comments and comment replies support #1467
base: master
Are you sure you want to change the base?
Feat: Add low level comments and comment replies support #1467
Conversation
…eEnd, CT_CommentReference
@scanny can you please look into this, and if any changes are required please let us know, we are happy to contribute to this feature. Thanks. |
…aphs. Add `mark_comment_start` and `mark_comment_end` methods to support comments spanning across multiple paragraphs
thanks,can you add a comment to a run? like this: run = paragraph2.add_run('text1') #add a run to the paragraph run.add_comment('comment') # add a comment only for the run text run.add_comment('comment2') run_comments = run.comments |
@rdaim we can add a comment for a
|
wowww, thanks a lot! |
Feature: Enhanced Word Document Comments and comment replies Support
This pull request adds comprehensive support for comments and comment replies in Word documents, introducing new capabilities for handling comment metadata and references.
New Capabilities:
Example Usage:
To mark a comment over multiple paragraphs or just a single run
Another similar PR #624 but it doesn't address the comment replies. So, I have created this PR.