How to center text in markdown?
Learn how to center text in Markdown documents.
How to Center Text in Markdown
Standard Markdown doesn't support text centering, but you can use HTML tags or extended Markdown syntax depending on your processor.
Methods
-
•
HTML: Use
<center>text</center>or<div align="center">text</div> -
•
Extended Markdown: Some processors support
→text←syntax -
•
CSS: Use HTML with inline styles:
<p style="text-align: center">text</p>