Post History
I prefer sticking to Markdown in my own posts, for compatibility for anyone who wants to reuse sections of my posts outside Codidact, but there are already several ways to format posts using the ex...
#1: Initial revision
I prefer sticking to Markdown in my own posts, for compatibility for anyone who wants to reuse sections of my posts outside Codidact, but there are already several ways to format posts using the existing HTML classes that Codidact defines (through [Co-Design](https://design.codidact.org/utilities/colors/)). ## Examples ```html <section class="notice">  </section> ``` <section class="notice">  </section> --- ```html <section class="notice is-success">  </section> ``` <section class="notice is-success">  </section> --- ```html <section class="notice is-warning">  </section> ``` <section class="notice is-warning">  </section> --- ```html <section class="notice is-danger">  </section> ``` <section class="notice is-danger">  </section> --- ```html <section class="notice has-margin-24">  </section> ``` <section class="notice has-margin-24">  </section> --- ```html <section class="notice has-background-color-white has-border-color-black">  </section> ``` <section class="notice has-background-color-white has-border-color-black">  </section>