satnaing / astro-paper

A minimal, accessible and SEO-friendly Astro blog theme
https://astro-paper.pages.dev/
MIT License
2.12k stars 439 forks source link

Right alignment of text in *.md fille #279

Closed AliIslamov closed 3 months ago

AliIslamov commented 4 months ago

I have several *.md posts in content folder. Each post contains several RTL block of texts.

How can I align several paragraphs of text inside a *.md file to the right side when displayed on a website?

benjaminrae commented 4 months ago

You might find that manually adding html makes this easier.

Something like:

<p align="right", dir="rtl", lang="...">
  ...
</p>
AliIslamov commented 3 months ago

You might find that manually adding html makes this easier.

Something like:

<p align="right", dir="rtl", lang="...">
  ...
</p>

Yes, I came to the same conclusion. It's disappointing that markdown doesn't have its own alignment tools.