Apr 29, 2021 10:22 AM
I have an airtable database of over 1,000 resumes. I’d like to extract a small set of information from each resume and get it in markdown or HTML.
I’ve found javascript libraries that can do this alone, but I’m looking for a way to handle that on Airtable. Ideally, I would love to be able to have this automated for the resumes already in the database and resumes that get added.
Would be nice to even create a new attachment on the record with the desired results. Any insight would be helpful, thank you!
Apr 30, 2021 05:31 PM
Welcome to the Airtable community!
You can run a script with an automation; however the entire script needs to fit in a single file. If you can find a minified version of the library that you can include in the script file, you might be able to use it.
Another option is to create a custom app that uses a library of your choice. Unlike scripts, custom apps can include libraries.
In order to create a new attachment using scripting, the file to be attached must exist at a publicly available url. However, if your goal is a markdown or html file, you can store the markdown or html in a long text field.
May 05, 2021 05:56 PM
Thank you so much! Are there any examples like this that I can take a look at in the mean time?