├── .github └── workflows │ └── build.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── LICENSE ├── Makefile ├── README.md ├── demo.png ├── examples ├── 01_Introducing_txtmarker.ipynb └── 02_Highlighting_with_Transformers.ipynb ├── logo.png ├── pyproject.toml ├── setup.py ├── src └── python │ └── txtmarker │ ├── __init__.py │ ├── base.py │ ├── factory.py │ └── pdf.py └── test └── python ├── testfactory.py └── testpdf.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuml/txtmarker/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | *egg-info/ 4 | __pycache__/ 5 | .coverage 6 | *.pyc 7 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuml/txtmarker/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuml/txtmarker/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuml/txtmarker/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuml/txtmarker/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuml/txtmarker/HEAD/README.md -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuml/txtmarker/HEAD/demo.png -------------------------------------------------------------------------------- /examples/01_Introducing_txtmarker.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuml/txtmarker/HEAD/examples/01_Introducing_txtmarker.ipynb -------------------------------------------------------------------------------- /examples/02_Highlighting_with_Transformers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuml/txtmarker/HEAD/examples/02_Highlighting_with_Transformers.ipynb -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuml/txtmarker/HEAD/logo.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.black] 2 | line-length = 150 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuml/txtmarker/HEAD/setup.py -------------------------------------------------------------------------------- /src/python/txtmarker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/txtmarker/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuml/txtmarker/HEAD/src/python/txtmarker/base.py -------------------------------------------------------------------------------- /src/python/txtmarker/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuml/txtmarker/HEAD/src/python/txtmarker/factory.py -------------------------------------------------------------------------------- /src/python/txtmarker/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuml/txtmarker/HEAD/src/python/txtmarker/pdf.py -------------------------------------------------------------------------------- /test/python/testfactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuml/txtmarker/HEAD/test/python/testfactory.py -------------------------------------------------------------------------------- /test/python/testpdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuml/txtmarker/HEAD/test/python/testpdf.py --------------------------------------------------------------------------------