-
Notifications
You must be signed in to change notification settings - Fork 66
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
Extract Code Snippets from MD Files #309
Conversation
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.
one comment, otherwise LGTM
// Open the document for write access and get a reference. | ||
using (var document = WordprocessingDocument.Open(fileName, true)) | ||
{ | ||
if (document.MainDocumentPart is null || document.MainDocumentPart.StyleDefinitionsPart is null || document.MainDocumentPart.StylesWithEffectsPart is null) | ||
if (document.MainDocumentPart is null || document.MainDocumentPart.StyleDefinitionsPart is null && document.MainDocumentPart.StylesWithEffectsPart is null) |
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.
this reads weird. I think you need parentheses
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.
You're right, I corrected it.
Learn Build status updates of commit 4962826: ✅ Validation status: passed
For more details, please refer to the build report. For any questions, please:
|
closes Extract code snippets from how-to-set-a-custom-property-in-a-word-processing-document.md #238
closes Extract code snippets from how-to-retrieve-comments-from-a-word-processing-document.md #237
closes Extract code snippets from how-to-retrieve-application-property-values-from-a-word-processing-document.md #236
closes Extract code snippets from how-to-replace-the-styles-parts-in-a-word-processing-document.md #235
closes Extract code snippets from how-to-replace-the-header-in-a-word-processing-document.md #234
closes Extract code snippets from how-to-remove-the-headers-and-footers-from-a-word-processing-document.md #233
closes Extract code snippets from how-to-remove-hidden-text-from-a-word-processing-document.md #232