#10384 - Changes after suggestions

This commit is contained in:
mxd4 2022-05-02 11:29:11 +02:00
parent 85524b5817
commit d2d5ce4eb6
No known key found for this signature in database
GPG Key ID: 19EE015203AA7278
2 changed files with 7 additions and 4 deletions

View File

@ -12,10 +12,10 @@ This extension converts images in your document to appropriate format for
builders. For example, it allows you to use SVG images with LaTeX builder. builders. For example, it allows you to use SVG images with LaTeX builder.
As a result, you don't mind what image format the builder supports. As a result, you don't mind what image format the builder supports.
Internally, this extension uses Imagemagick_ to convert images, The extension uses ImageMagick_ to perform conversions,
you'll have to install it on your machine. and will fail if ImageMagick is not installed.
.. _Imagemagick: https://www.imagemagick.org/script/index.php .. _ImageMagick: https://www.imagemagick.org
.. note:: .. note::

View File

@ -1,5 +1,8 @@
"""Test sphinx.ext.imgconverter extension. """Test sphinx.ext.imgconverter extension.
Requires ImageMagick to be installed, otherwise the conversion will be skipped and this test will fail.
Unix only. Fails if ImageMagick_ is not installed.
.. _ImageMagick: https://imagemagick.org
""" """
import os import os