I know nothing about Drupal, but I'm helping someone out with editing a Drupal page they're working on for a conference.
One of the things I did for them was auto-generate a table based on some pictures and data scraped from a CSV file I was provided. A typical row in the table looks something like this:
<tr>
<td>
<img src="http://external.host/pics/pic.jpg" height="100" style="height:100;" />
</td>
<td>
<h3>Name</h3><p>Organization<br />Country of Origin</p>
</td>
</tr>
The problem is, even using completely unfiltered HTML (the configuration for the content type has absolutely nothing checked off), after saving the table, Drupal is escaping all of the quote inside the image tag.
This breaks the tag, and I get a bunch of broken images.
What am I missing?
Edit: Drupal 7