I am looking for a way to add comments specific to different rows in a Markdown table (parsed by Slate). I don't want them to appear in the HTML generated from this Markdown file.
I haven't found any comment syntax which works in this setting. I tried
[]: # (comment)
[]: # "comment"
[]: # 'comment'
[//]: # (comment)
[comment]: # (comment)
<!-- comment -->
and variations of them, could not get anything to work.
Have any of you already succeeded to do so?