So I created the following shortcode to allow me to center text:
<div style="width: 100%;" class="center-align">
{{ body }}
</div>
For some reason, this causes headers to render as plaintext instead of as headers, and I don’t quite understand why. For example, the following will render as #### Welcome to my Website!
{% center() %}
#### Welcome to my Website!
{% end %}