Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Commit

Permalink
Determining the bulleted lists.
Browse files Browse the repository at this point in the history
  • Loading branch information
walter-weinmann committed Jul 2, 2022
1 parent 2c8af10 commit 0d02379
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Release Date: dd.mm.2022
### 1.1 New Features

- API documentation added
- Determination of bulleted lists.
- Determination of headings.
- Determination of local structures: lists (bulleted and numbered) and tables

### 1.2 Modified Features

Expand Down
4 changes: 2 additions & 2 deletions src/dcr/db/cls_document.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ class Document:
DOCUMENT_LINE_TYPE_FOOTER: ClassVar[str] = "f"
DOCUMENT_LINE_TYPE_HEADER: ClassVar[str] = "h"
DOCUMENT_LINE_TYPE_HEADING: ClassVar[str] = "h_"
DOCUMENT_LINE_TYPE_LIST_BULLETED: ClassVar[str] = "lb"
DOCUMENT_LINE_TYPE_LIST_NUMBERED: ClassVar[str] = "ln"
DOCUMENT_LINE_TYPE_LIST_BULLET: ClassVar[str] = "lb"
DOCUMENT_LINE_TYPE_LIST_NUMBER: ClassVar[str] = "ln"
DOCUMENT_LINE_TYPE_TABLE: ClassVar[str] = "tab"
DOCUMENT_LINE_TYPE_TOC: ClassVar[str] = "toc"

Expand Down

0 comments on commit 0d02379

Please sign in to comment.