#size #image #syntax #height #width #width-height

bin+lib mdbook-image-size

支持图像大小语法的mdbook预处理器

2个不稳定版本

0.2.1 2024年7月18日
0.1.0 2023年11月27日

#862文本处理

Download history 20/week @ 2024-05-04 1/week @ 2024-05-11 4/week @ 2024-05-18 9/week @ 2024-05-25 2/week @ 2024-06-01 2/week @ 2024-06-08 1/week @ 2024-06-22 119/week @ 2024-07-13 25/week @ 2024-07-20 47/week @ 2024-07-27 9/week @ 2024-08-03 23/week @ 2024-08-10

每月131次下载

MIT 许可证

19KB
230

mdbook-image-size

支持图像大小语法的mdbook预处理器

大小

宽度 & 高度

![the alt](path/to/your/image "the title" =500x400)

<p><img src="path/to/your/image" alt="the alt" title="the title" width="500" height="400"></p>

仅宽度

![the alt](path/to/your/image "the title" =500x)

<p><img src="path/to/your/image" alt="the alt" title="the title" width="500"></p> 

仅高度

![the alt](path/to/your/image "the title" =x400)

<p><img src="path/to/your/image" alt="the alt" title="the title" height="400"></p>

[!TIP] 无alt或title也可以。

对齐

默认为左对齐

居中

![the alt](path/to/your/image "the title" =500x400 center)

<p style="text-align:center"><img src="path/to/your/image" alt="the alt" title="the title" width="500" height="400"></p>

![the alt](path/to/your/image "the title" =500x400 right)

<p style="text-align:right"><img src="path/to/your/image" alt="the alt" title="the title" width="500" height="400"></p>

安装

cargo install mdbook-image-size

在book.toml中将它作为预处理器添加

[preprocessor.image-size]
command = "mdbook-image-size"

依赖项

~12–26MB
~333K SLoC