When IkiWiki uses discount to implement [[plugins/mdwn]] rendering, there is a workaround for :
$t=~s/<style/<elyts/ig;
my $r=Text::Markdown::Discount::markdown($t);
$r=~s/<elyts/<style/ig;
However, this workaround also applies to indented text or text in backticks: if you write there is a bug involving the \`<style>\` tag, or use indentation like
you can use this markup:

    <style type="text/css">...</style>
then that gets turned into ` [[Fixed|done]] by passing the `MKD_NOSTYLE` flag to Discount instead. > Unfortunately this isn't bound by [[!cpan Text::Markdown::Discount]] yet, > so for now I'm hard-coding its numeric value. --[[smcv]]