mirror of
https://github.com/UglyToad/PdfPig.git
synced 2026-03-10 00:23:29 +08:00
remove unnecessary 'inheritdoc'
This commit is contained in:
@@ -13,7 +13,6 @@
|
||||
using UglyToad.PdfPig.Graphics;
|
||||
using Util;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Alto 4.1 (XML) text exporter.
|
||||
/// <para>See https://github.com/altoxml/schema </para>
|
||||
@@ -66,7 +65,6 @@
|
||||
return Serialize(altoDocument);
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Get the Alto (XML) string of the page layout. Excludes <see cref="T:UglyToad.PdfPig.Geometry.PdfSubpath" />s.
|
||||
/// </summary>
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
using Graphics.Colors;
|
||||
using Graphics.Core;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Exports a page as an SVG.
|
||||
/// </summary>
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Default Page Segmenter. All words are included in one block.
|
||||
/// </summary>
|
||||
@@ -17,7 +16,6 @@
|
||||
/// </summary>
|
||||
public static DefaultPageSegmenter Instance { get; } = new DefaultPageSegmenter();
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Get the blocks using default options values.
|
||||
/// </summary>
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
using System.Linq;
|
||||
using UglyToad.PdfPig.Geometry;
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// The recursive X-Y cut is a top-down page segmentation technique that decomposes a document
|
||||
/// recursively into a set of rectangular blocks. This implementation leverages bounding boxes.
|
||||
@@ -21,7 +20,6 @@
|
||||
/// </summary>
|
||||
public static RecursiveXYCut Instance { get; } = new RecursiveXYCut();
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Get the blocks using default options values.
|
||||
/// </summary>
|
||||
@@ -32,7 +30,6 @@
|
||||
return GetBlocks(words, new RecursiveXYCutOptions());
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Get the blocks using options values.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user