-
Notifications
You must be signed in to change notification settings - Fork 809
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 Image element and find_embedded_image
function
#130
Conversation
…into image-element
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 once the version bumps are in! Don't forget to also remove DRAFT
and add the feat:
prefix. Second line in the testing instructions should also be the following (just a slight filename typo)
elements = partition_email("example-docs/email-image-embedded.eml")
@@ -5,6 +5,7 @@ | |||
* Test for `clean_ordered_bullets`. | |||
* Test for `extract_ordered_bullets`. | |||
* Added `partition_docx` for pre-processing Word Documents. | |||
* Add new `Image` element and function to find embedded images `find_embedded_images` |
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.
Reminder to update the version to 0.3.6-devx
and also bump the version in unstructured/__version__.py
find_embedded_image
functionfind_embedded_image
function
…into image-element
…structured into image-element
This PR adds a new
Element
calledImage
and adds a new function to find images embedded in text. Can move this totext.py
whenpartition_text
is merged.Testing