30 releases
0.8.2 | Sep 30, 2024 |
---|---|
0.8.1 | Jul 27, 2024 |
0.7.0 | Jun 15, 2024 |
0.6.4 | Mar 16, 2024 |
0.1.5 | Mar 29, 2023 |
#175 in Images
47KB
187 lines
mdbook-tailor
This is a preprocessor for mdbook.
We plan to take some more time before a major release 🐣
🔺It includes some issues as noted in Issues.
Purpose
The following warnings in PageSpeed Insights can be eliminated by using this preprocessor.
Explicitly setting the width and height of image elements will reduce layout deviations and improve CLS.
Corresponding image file
The image files that this project can handle depend on Imaging library.
It supports PNG
, JPEG
, GIF
, WebP
etc. as generally used in web pages 😉
🔺AVIF is not currently supported.
Installation
- Use
cargo
to install.
cargo install mdbook-tailor
- Add the following to
book.toml
.
[preprocessor.tailor]
Usage
- Use markdown notation as usual.
![example](example.webp)
- Do the mdbook build as usual.
mdbook build
The HTML
generated from the above steps should contain the image size as measured by the mdbook-tailor
.
In addition, a delayed loading setting will be added!
<img src="example.webp" alt="example" width="789" height="456" loading="lazy">
Example
This is actually a site I am producing myself ☺️
- GitHub Pages https://coralpink.github.io/commentary
- GitHub https://github.com/CoralPink/commentary
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Dependencies
~14–25MB
~382K SLoC