mirror of
https://github.com/jzillmann/pdf-to-markdown.git
synced 2024-11-21 23:33:31 +01:00
WIP rename splitIntoBlocks to DetectPdfBlocks
This commit is contained in:
parent
767462bc9b
commit
d78d9be8a3
@ -3,7 +3,7 @@ import { Enum } from 'enumify';
|
||||
import CalculateGlobalStats from './transformations/CalculateGlobalStats.jsx';
|
||||
import RemoveRepetitiveElements from './transformations/RemoveRepetitiveElements.jsx'
|
||||
import VerticalToHorizontal from './transformations/VerticalToHorizontal.jsx';
|
||||
import SplitInBlocks from './transformations/SplitInBlocks.jsx'
|
||||
import DetectPdfBlocks from './transformations/DetectPdfBlocks.jsx'
|
||||
import DetectCodeBlocks from './transformations/DetectCodeBlocks.jsx'
|
||||
import DetectFormats from './transformations/DetectFormats.jsx'
|
||||
import CombineSameY from './transformations/CombineSameY.jsx';
|
||||
@ -28,7 +28,7 @@ export default class AppState {
|
||||
new CalculateGlobalStats(),
|
||||
new RemoveRepetitiveElements(),
|
||||
new VerticalToHorizontal(),
|
||||
new SplitInBlocks(),
|
||||
new DetectPdfBlocks(),
|
||||
// new DetectCodeBlocks(),
|
||||
// new DetectFormats(),
|
||||
// new CombineSameY(),
|
||||
|
@ -4,10 +4,10 @@ import ParseResult from '../ParseResult.jsx';
|
||||
import PdfBlockPage from '../PdfBlockPage.jsx';
|
||||
import PdfBlock from '../PdfBlock.jsx';
|
||||
|
||||
export default class SplitInBlocks extends ToPdfBlockViewTransformation {
|
||||
export default class DetectPdfBlocks extends ToPdfBlockViewTransformation {
|
||||
|
||||
constructor() {
|
||||
super("Split Into Blocks");
|
||||
super("Detect Blocks");
|
||||
}
|
||||
|
||||
showModificationCheckbox() {
|
Loading…
Reference in New Issue
Block a user