validate
validate <img src=..." >
exceptions %var name%, [[var_name]], {{=var_name}}
idea:
from bs4 import BeautifulSoup
soup = BeautifulSoup(html_body, 'html.parser')
for a in soup.find_all('a'):
if not a['href'] in exceptions:
verify_url(a['href'])