By utilizing the import.io connector, I successfully extracted a portion of HTML from the source website. The output was returned as "html" type, consisting of a single table of data with styles defined in the body HTML but not fully extracted. Consequently, the extracted HTML segment appeared without any style, looking visually unappealing.
I'm wondering if there is a method to also extract CSS styles, including multiple CSS hrefs present in the source HTML, such as:
<link rel="stylesheet" href="http://cdn.ideamelt.com/1.3/css/ideamelt.min.css">
Additionally, is it possible to include dynamic CSS like the example below simultaneously:
<style type="text/css">
#financials-iframe-wrap {
width: 635px
}
.td_genTable table {
border: none
}
tr.net {
font-weight: bold;
border-top: 1px solid #009EC2
}
.td_genTable td {
border: 0;
padding: 0
}
a.h3-link {
color: #ffffff;
text-decoration: underline;
float: right
}
</style>
...within the connector extraction process to ensure that the resulting HTML segment can be correctly styled and displayed?
Appreciate any help in advance!