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

bin+lib mdbook-image-size

A mdbook preprocessor which support image size syntax

2 unstable releases

0.2.1 Jul 18, 2024
0.1.0 Nov 27, 2023

#1389 in Text processing

Download history 28/week @ 2024-10-29 40/week @ 2024-11-05 26/week @ 2024-11-12 21/week @ 2024-11-19 71/week @ 2024-11-26 4/week @ 2024-12-03 38/week @ 2024-12-10 37/week @ 2024-12-17 12/week @ 2025-01-28 25/week @ 2025-02-04 50/week @ 2025-02-11

87 downloads per month

MIT license

19KB
230 lines

mdbook-image-size

A mdbook preprocessor which support image size syntax

size

width & height

From

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

To

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

width only

From

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

To

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

height only

From

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

To

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

[!TIP] No alt or title is ok.

align

left

left is default

center

From

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

To

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

right

From

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

To

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

Installation

cargo install mdbook-image-size

add it as a preprocessor in book.toml

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

Dependencies

~13–25MB
~371K SLoC