Files
pdf-to-markdown/src/javascript/models/TextItem.jsx
Johannes Zillmann 1b326a9f36 Headline to upper case transformation
* Add testing capability (mocha, chai)
* Add MarkdownElement to text item
2017-02-05 21:22:42 +01:00

15 lines
378 B
JavaScript

//A text iteme, i.e. a line, within a page
export default class TextItem {
constructor(options) {
this.x = options.x;
this.y = options.y;
this.width = options.width;
this.height = options.height;
this.text = options.text;
this.annotation = options.annotation;
this.markdownElement = options.markdownElement;
}
}