IIRC, Waindigo's TABLE BB-Code sets a plainChildren flag internally on its contents. I have no idea why the BB-Code does that, but it makes Auto-Links think that BB-Codes (such as AUTOLINK) won't work there. There's nothing really that we can do about this from our end without adding a specific rule for Waindigo's add-on. But it's better if Waindigo uses the API we have provided for this, since it's the add-on using an unusual behavior (defining itself as plain-text, but not actually being plain-text).
Waindigo's add-on can workaround this issue by removing itself from the AutoLink skip-list, which is defined in
vault/core/model/parser/handle/autolink/vw.php. By creating a Code-Event Listener for event 'vw_autolinks_create', with listener code:
Code:
public function vw_autolinks_create($autolinker)
{
$key = array_search('table', $autolinker->skip_tags);
if ($key !== false)
unset($autolinker->skip_tags["$key"]);
}