Center text in the Post Signature block

I’m working with a post signature for my blog. I want this text to be center aligned:

[RSS](https://ldstephens.me/feed) | [Micro.blog](https://micro.blog/ldstephens) | [Mastodon](https://micro.blog/ldstephens?remote_follow=1) | [Medium]([https://ldstephens.medium.com](https://ldstephens.medium.com/)) | [Substack]([https://ldstephens.substack.com](https://ldstephens.substack.com/))

I’m not sure why is not center aligning in the signature block? It center aligns in iA Writer. Any help would be appreciated.

Loren

Hey Loren, we don’t automatically center any text, so you’d need to use some HTML to get this effect.

Note that Markdown also doesn’t render inside custom HTML, so you’d need to convert all the Markdown links, e.g.

<div style="text-align:center"><a href="https://ldstephens.me/feed">RSS</a> | <a href="https://micro.blog/ldstephens">Micro.blog</a> | ...</div>

Got it… Thanks for the help Matt.