-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Feat: Add low level comments and comment replies support #1467
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
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! |
hi @bhavasagar-dv, What if a comment already exists and is linked to a certain paragraph, is there a way to reply to that comment using this? |
Comment support is being added in #1495 if you want to take a look. Should merge in a week or so. |
Comment support was added to This feature includes a way to create comments ( Note this support does not include the ability to directly access the comment "reference", i.e. the @bhavasagar-dv I'm closing this PR for now, but I see that you had implemented some of the comment features this did not include. The comments PR is here: #1495 if you want to take a look and perhaps adapt these features to the current support. |
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
Fixes the issue: #93
Another similar PR #624 but it doesn't address the comment replies. So, I have created this PR.