//! parfit — paragraph fit.
//!
//! Reflow prose in code comments to a target width using optimal-fit
//! line breaking. Lines that look like directives (`//go:generate`,
//! `// eslint-disable`, `#!/usr/bin/env bash`, `#[derive(…)]`, …)
//! pass through unchanged. Lines inside triple-backtick code fences
//! pass through unchanged. Words that look like URLs never split.
pub use Options;
pub use reflow;