Non-nested table
[subbu@earth parsoid] echo "[[File:Foo.jpg|thumb|180px|Foo<br/>\n{|\n|x\n|}\n]]" | parse.js --normalize
<figure><a href="File:Foo.jpg"><img src="//upload.wikimedia.org/wikipedia/commons/0/06/Foo.jpg" data-file-width="300" data-file-height="197" data-file-type="bitmap" height="118" width="180"/></a><figcaption>Foo<br/>
<table>
<tbody>
<tr>
<td>x</td>
</tr>
</tbody>
</table>
</figcaption></figure>Nested table (the table is missing in the output)
[subbu@earth parsoid] echo "[[File:Foo.jpg|thumb|180px|Foo<br/>\n{|\n|\n{|\n|z\n|}\n|}\n]]" | parse.js --normalize
<figure><a href="File:Foo.jpg"><img src="//upload.wikimedia.org/wikipedia/commons/0/06/Foo.jpg" data-file-width="300" data-file-height="197" data-file-type="bitmap" height="118" width="180"/></a><figcaption>} </figcaption></figure>----Original bug report ----
When an image caption contains a wikitable, the linter may flag bogus-image-options while everything on the page looks "as intended".
Examples:
- https://nl.wikipedia.org/w/index.php?title=Heuvelland_(Zuid-Limburg)&action=edit&lintid=2747869
- https://nl.wikipedia.org/w/index.php?title=Klimaatclassificatie_van_K%C3%B6ppen&action=edit&lintid=1272515
There is nothing to fix, so these cases are false positives.