Markdown `native` text alignment
The div element has its own alignment attribute, align.
<div align="center">
my text here.
</div>
I known this isn't markdown, but <p align="center">
worked for me, so if anyone figures out the markdown syntax instead I'll be happy to use that. Until then I'll use the HTML tag.
In order to center text in md files you can use the center tag like html tag:
<center>Centered text</center>
native markdown doesn't support text alignment without html
+ css
.