// Derived from PDFium's cpvt_section.h
// Original: Copyright 2014 The PDFium Authors
// Licensed under BSD-3-Clause / Apache-2.0
// See pdfium-upstream/LICENSE for the original license.
//! Section — a paragraph of laid-out text (`CPVT_Section`).
//!
//! A section is a run of text delimited by paragraph breaks. Each section
//! holds its words (characters) and the lines produced by word-wrap.
use Line;
use WordInfo;
/// A section of text (separated by paragraph breaks).
///
/// Corresponds to upstream `CPVT_Section`.