i want to parse raw style element in markdown file.
but Kramdown change spaces to  
like below.
from
<style markdown="0">
.sample {
color :red !important;
}
</style>
to
<style>
.sample {
color :red !important;
}
</style>