You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I am using the unstructured for partition a readme file. Now wherever there are images, I want to replace the images with their Alt texts. To do that I would do the following steps:
Partition markdown file with unstructured.
Detect image elements where they are present and convert them into a narrative text elements and the text of those narrative text elements should be the alt text of the image with some description.
I would make the markdown file back from the updated list of elements.
for creating the file back from step 3 : I do not have the function to create markdown back from list of elements. While it is relatively easier, but time taking.
Describe the solution you'd like
Add a function (the responsibility of the function given below) in the existing library for as many formats as you like. The responsibility of the function would be:
Re-make the entire source file from list of elements which are extracted by unstructured only.
Describe alternatives you've considered
I considered using regex to detect the images rather than using uns. altogether but uns. is more convenient if this feature (which I described above) is available.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I am using the unstructured for partition a readme file. Now wherever there are images, I want to replace the images with their Alt texts. To do that I would do the following steps:
for creating the file back from step 3 : I do not have the function to create markdown back from list of elements. While it is relatively easier, but time taking.
Describe the solution you'd like
Add a function (the responsibility of the function given below) in the existing library for as many formats as you like. The responsibility of the function would be:
Re-make the entire source file from list of elements which are extracted by unstructured only.
Describe alternatives you've considered
I considered using regex to detect the images rather than using uns. altogether but uns. is more convenient if this feature (which I described above) is available.
The text was updated successfully, but these errors were encountered: