typora 图片左对齐

Align images

Currently Typora does not support image alignment. But you can use HTML code like <center>![img](src)</center> to align images in exported HTML or PDF.

Also, by default, if a paragraph only contains one image, it will be center aligned. It is controlled by CSS, and can be changed by add custom CSS:

1
2
3
4
p .md-image:only-child{
width: auto;
text-align: inherit;
}