I'm using Maruku as a markdown filter in HAML, and it creates huge useless (for me) IDs on every single header.
So if I have something like this
## This is a header
It'll make
<h2 id="this_is_a_header">This is a header</h2>
Which at a certain point starts to become ridiculous, and populates my HTML with a bunch of IDs I do not need, nor want, since Maruku provides me with a way to provide my own IDs,
## {#id} This is a header
Is there any way to prevent it's behaviour?