markdown是否支持本机文本对齐而不使用html + css?


当前回答

对于自述文件的Github使用div可以中心一切-

<div align="center">
    Any Text/Card/Item
</div>

但是这样使用p并不适用于所有item-

<p align="center">
    Any Text/Card/Item
</p>

其他回答

对于Markdown Extra,您可以使用自定义属性:

# Example text {style=text-align:center}

这适用于标题和块引号,但不适用于段落、内联元素和代码块。

更短的版本(但在HTML 5中不支持):

# Example text {align=center}

在Github你需要写:

<p align="justify">
  Lorem ipsum
</p>

为了在md文件中居中文本,你可以使用center标签,如html标签:

<center>Centered text</center>

居中对齐,将你想居中对齐的文本用箭头(-> <-)环绕起来,就像这样:

-> This is center aligned <-

我试着将图像居中,答案中建议的技术都不起作用。一个常规的HTML <img>内联CSS为我工作…

<img style="display: block; margin: auto;" alt="photo" src="{{ site.baseurl }}/images/image.jpg">

这是一个在GitHub上托管的Jekyll博客