Skip to content

Commit

Permalink
Fix formatting warnings with commonmark enabled
Browse files Browse the repository at this point in the history
This makes documentation work correctly with the new pulldown-cmark
Markdown parser (rust-lang/rust#44229).
  • Loading branch information
mbrubeck committed Oct 17, 2017
1 parent 1b5214e commit 2659868
Show file tree
Hide file tree
Showing 13 changed files with 35 additions and 29 deletions.
4 changes: 2 additions & 2 deletions src/bmp/mod.rs
Expand Up @@ -3,8 +3,8 @@
//! A decoder and encoder for BMP (Windows Bitmap) images
//!
//! # Related Links
//! * https://msdn.microsoft.com/en-us/library/windows/desktop/dd183375%28v=vs.85%29.aspx
//! * https://en.wikipedia.org/wiki/BMP_file_format
//! * <https://msdn.microsoft.com/en-us/library/windows/desktop/dd183375%28v=vs.85%29.aspx>
//! * <https://en.wikipedia.org/wiki/BMP_file_format>
//!

pub use self::encoder::BMPEncoder;
Expand Down
2 changes: 1 addition & 1 deletion src/dynimage.rs
Expand Up @@ -296,7 +296,7 @@ impl DynamicImage {
/// ```sigma``` is the amount to blur the image by.
/// ```threshold``` is a control of how much to sharpen.
///
/// See https://en.wikipedia.org/wiki/Unsharp_masking#Digital_unsharp_masking
/// See <https://en.wikipedia.org/wiki/Unsharp_masking#Digital_unsharp_masking>
pub fn unsharpen(&self, sigma: f32, threshold: i32) -> DynamicImage {
dynamic_map!(*self, ref p => imageops::unsharpen(p, sigma, threshold))
}
Expand Down
3 changes: 2 additions & 1 deletion src/gif.rs
Expand Up @@ -3,8 +3,9 @@
//! GIF (Graphics Interchange Format) is an image format that supports lossless compression.
//!
//! # Related Links
//! * http://www.w3.org/Graphics/GIF/spec-gif89a.txt - The GIF Specification
//! * <http://www.w3.org/Graphics/GIF/spec-gif89a.txt> - The GIF Specification
//!

extern crate gif;

use std::io::{Read, Write};
Expand Down
18 changes: 11 additions & 7 deletions src/hdr/hdr_decoder.rs
Expand Up @@ -127,19 +127,19 @@ impl RGBE8Pixel {

/// Converts ```RGBE8Pixel``` into ```Rgb<T>``` with scale=1 and gamma=2.2
///
/// color_ldr = (color_hdr*scale)^gamma
/// color_ldr = (color_hdr*scale)<sup>gamma</sup>
///
/// # Panic
///
/// Panics when ```T::max_value()``` cannot be represented as f32.
/// # Panic
///
/// Panics when ```T::max_value()``` cannot be represented as f32.
#[inline]
pub fn to_ldr<T: Primitive + Zero>(self) -> Rgb<T> {
self.to_ldr_scale_gamma(1.0, 2.2)
}

/// Converts RGBE8Pixel into Rgb<T> using provided scale and gamma
///
/// color_ldr = (color_hdr*scale)^gamma
/// color_ldr = (color_hdr*scale)<sup>gamma</sup>
///
/// # Panic
///
Expand Down Expand Up @@ -574,10 +574,14 @@ pub struct HDRMetadata {
/// First pair tells how resulting pixel coordinates change along a scanline.
/// Second pair tells how they change from one scanline to the next.
pub orientation: ((i8, i8), (i8, i8)),
/// Divide color values by exposure to get to get physical radiance in watts/steradian/m^2
/// Divide color values by exposure to get to get physical radiance in
/// watts/steradian/m<sup>2</sup>
///
/// Image may not contain physical data, even if this field is set.
pub exposure: Option<f32>,
/// Divide color values by corresponing tuple member (r, g, b) to get to get physical radiance in watts/steradian/m^2
/// Divide color values by corresponing tuple member (r, g, b) to get to get physical radiance
/// in watts/steradian/m<sup>2</sup>
///
/// Image may not contain physical data, even if this field is set.
pub color_correction: Option<(f32,f32,f32)>,
/// Pixel height divided by pixel width
Expand Down
5 changes: 3 additions & 2 deletions src/hdr/mod.rs
Expand Up @@ -3,8 +3,9 @@
//! A decoder for Radiance HDR images
//!
//! # Related Links
//! * http://radsite.lbl.gov/radiance/refer/filefmts.pdf
//! * http://www.graphics.cornell.edu/~bjw/rgbe/rgbe.c
//!
//! * <http://radsite.lbl.gov/radiance/refer/filefmts.pdf>
//! * <http://www.graphics.cornell.edu/~bjw/rgbe/rgbe.c>
//!

extern crate scoped_threadpool;
Expand Down
4 changes: 2 additions & 2 deletions src/ico/mod.rs
Expand Up @@ -3,8 +3,8 @@
//! A decoder and encoder for ICO (Windows Icon) image container files.
//!
//! # Related Links
//! * https://msdn.microsoft.com/en-us/library/ms997538.aspx
//! * https://en.wikipedia.org/wiki/ICO_%28file_format%29
//! * <https://msdn.microsoft.com/en-us/library/ms997538.aspx>
//! * <https://en.wikipedia.org/wiki/ICO_%28file_format%29>

pub use self::decoder::ICODecoder;
pub use self::encoder::ICOEncoder;
Expand Down
4 changes: 2 additions & 2 deletions src/imageops/mod.rs
Expand Up @@ -49,8 +49,8 @@ pub use self::colorops:: {
};

mod affine;
/// Public only because of Rust bug:
/// https://github.com/rust-lang/rust/issues/18241
// Public only because of Rust bug:
// https://github.com/rust-lang/rust/issues/18241
pub mod colorops;
mod sample;

Expand Down
2 changes: 1 addition & 1 deletion src/imageops/sample.rs
Expand Up @@ -454,7 +454,7 @@ pub fn blur<I: GenericImage + 'static>(image: &I, sigma: f32)
/// ```sigma``` is the amount to blur the image by.
/// ```threshold``` is the threshold for the difference between
///
/// See https://en.wikipedia.org/wiki/Unsharp_masking#Digital_unsharp_masking
/// See <https://en.wikipedia.org/wiki/Unsharp_masking#Digital_unsharp_masking>
// TODO: Do we really need the 'static bound on `I`? Can we avoid it?
pub fn unsharpen<I, P, S>(image: &I, sigma: f32, threshold: i32)
-> ImageBuffer<P, Vec<S>>
Expand Down
4 changes: 2 additions & 2 deletions src/jpeg/mod.rs
Expand Up @@ -3,8 +3,8 @@
//! JPEG (Joint Photographic Experts Group) is an image format that supports lossy compression.
//! This module implements the Baseline JPEG standard.
//!
//! #Related Links
//! * http://www.w3.org/Graphics/JPEG/itu-t81.pdf - The JPEG specification
//! # Related Links
//! * <http://www.w3.org/Graphics/JPEG/itu-t81.pdf> - The JPEG specification
//!

pub use self::decoder::JPEGDecoder;
Expand Down
2 changes: 1 addition & 1 deletion src/math/nq.rs
Expand Up @@ -2,7 +2,7 @@
//! See "Kohonen neural networks for optimal colour quantization"
//! in "Network: Computation in Neural Systems" Vol. 5 (1994) pp 351-367.
//! for a discussion of the algorithm.
//! See also http://www.acm.org/~dekker/NEUQUANT.HTML
//! See also <http://www.acm.org/~dekker/NEUQUANT.HTML>

/* NeuQuant Neural-Net Quantization Algorithm
* ------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions src/png.rs
Expand Up @@ -4,7 +4,7 @@
//! PNG (Portable Network Graphics) is an image format that supports lossless compression.
//!
//! # Related Links
//! * http://www.w3.org/TR/PNG/ - The PNG Specification
//! * <http://www.w3.org/TR/PNG/> - The PNG Specification
//!

extern crate png;
Expand Down Expand Up @@ -151,4 +151,4 @@ impl From<png::DecodingError> for ImageError {
CorruptFlateStream => ImageError::FormatError("compressed data stream corrupted".into())
}
}
}
}
2 changes: 1 addition & 1 deletion src/tga/mod.rs
@@ -1,7 +1,7 @@
//! Decoding of TGA Images
//!
//! # Related Links
//! http://googlesites.inequation.org/tgautilities
//! <http://googlesites.inequation.org/tgautilities>

/// A decoder for TGA images
///
Expand Down
10 changes: 5 additions & 5 deletions src/tiff/mod.rs
@@ -1,10 +1,10 @@
//! Decoding and Encoding of TIFF Images
//! Decoding and Encoding of TIFF Images
//!
//! TIFF (Tagged Image File Format) is a versatile image format that supports
//! lossless and lossy compression.
//! TIFF (Tagged Image File Format) is a versatile image format that supports
//! lossless and lossy compression.
//!
//! # Related Links
//! * http://partners.adobe.com/public/developer/tiff/index.html - The TIFF specification
//! # Related Links
//! * <http://partners.adobe.com/public/developer/tiff/index.html> - The TIFF specification
//!

pub use self::decoder::TIFFDecoder;
Expand Down

0 comments on commit 2659868

Please sign in to comment.