From 8a7831e90dc14fb2a0b65ac9ce8d503c5451d6a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 27 Oct 2014 23:07:08 +0100 Subject: [PATCH] Removed autolink-preventing % noise. --- src/MagnumPlugins/AnyImageImporter/AnyImageImporter.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/MagnumPlugins/AnyImageImporter/AnyImageImporter.h b/src/MagnumPlugins/AnyImageImporter/AnyImageImporter.h index 765ce161b..7c9a85853 100644 --- a/src/MagnumPlugins/AnyImageImporter/AnyImageImporter.h +++ b/src/MagnumPlugins/AnyImageImporter/AnyImageImporter.h @@ -49,15 +49,15 @@ namespace Magnum { namespace Trade { Detects file type based on file extension, loads corresponding plugin and then tries to open the file with it. Supported formats: -- BMP (`*.bmp`), loaded with any plugin that provides `%BmpImporter` -- GIF (`*.gif`), loaded with any plugin that provides `%GifImporter` -- HDR (`*.hdr`), loaded with any plugin that provides `%HdrImporter` +- BMP (`*.bmp`), loaded with any plugin that provides `BmpImporter` +- GIF (`*.gif`), loaded with any plugin that provides `GifImporter` +- HDR (`*.hdr`), loaded with any plugin that provides `HdrImporter` - JPEG (`*.jpg`, `*.jpeg`), loaded with @ref JpegImporter or any other plugin that provides it -- PIC (`*.pic`), loaded with any plugin that provides `%PicImporter` +- PIC (`*.pic`), loaded with any plugin that provides `PicImporter` - PNG (`*.png`), loaded with @ref PngImporter or any other plugin that provides it -- PSD (`*.psd`), loaded with any plugin that provides `%PsdImporter` +- PSD (`*.psd`), loaded with any plugin that provides `PsdImporter` - TGA (`*.tga`), loaded with @ref TgaImporter or any other plugin that provides it