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


当前回答

我知道这不是markdown,但<p align="center">对我有用,所以如果有人找出markdown语法,我很乐意使用它。在此之前,我将使用HTML标记。

其他回答

使用表语法的一个限定的“是”。例如,您可以将纯文本居中对齐如下:

| |
| :-: |
| Excerpts from Romeo and Juliet (arr. V. Borisovsky) |

这个收益率:

Excerpts from Romeo and Juliet (arr. V. Borisovsky)

请注意,您仍然可以在HTML块中使用Markdown。例如:

<div style="font-style: italic; text-align: center;" markdown="1">

## Excerpts from Romeo and Juliet (arr. V. Borisovsky)
### Sergei Prokofiev
#### Timothy Ridout, viola ∙ Frank Dupree, piano

</div>

这有点俗气,但如果你正在使用GFM或其他支持用管道构建表的MD语法,你可以使用列对齐特性:

|| <!-- empty table header -->
|:--:| <!-- table header/body separator with center formatting -->
| I'm centered! | <!-- cell gets column's alignment -->

这在标记中起作用。

原生markdown不支持没有HTML + css的文本对齐。

我发现在jupyter笔记本单元格上使用latex语法非常有用,比如:

![good-boy](https://i.imgur.com/xtoLyW2.jpg  "Good boy on boat")

$$\text{This is some centered text}$$

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

<center>Centered text</center>