Skip to content

Commit fa259a0

Browse files
leavessterbosd
authored andcommitted
docs: fix docs branch link
1 parent ba8fb60 commit fa259a0

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
Try it yourself in our interactive quickstart notebook. [![image](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/camelot-dev/camelot/blob/master/examples/camelot-quickstart-notebook.ipynb)
1818

19-
Or check out a simple example using [this pdf](https://github.com/camelot-dev/camelot/blob/main/docs/_static/pdf/foo.pdf).
19+
Or check out a simple example using [this pdf](https://github.com/camelot-dev/camelot/blob/master/docs/_static/pdf/foo.pdf).
2020

2121
<pre>
2222
>>> import camelot
@@ -48,7 +48,7 @@ Or check out a simple example using [this pdf](https://github.com/camelot-dev/ca
4848

4949
Camelot also comes packaged with a [command-line interface](https://camelot-py.readthedocs.io/en/latest/user/cli.html)!
5050

51-
Refer to the [QuickStart Guide](https://github.com/camelot-dev/camelot/blob/main/docs/user/quickstart.rst#quickstart) to quickly get started with Camelot, extract tables from PDFs and explore some basic options.
51+
Refer to the [QuickStart Guide](https://github.com/camelot-dev/camelot/blob/master/docs/user/quickstart.rst#quickstart) to quickly get started with Camelot, extract tables from PDFs and explore some basic options.
5252

5353
**Tip:** Visit the `parser-comparison-notebook` to get an overview of all the packed parsers and their features. [![image](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/camelot-dev/camelot/blob/master/examples/parser-comparison-notebook.ipynb)
5454

@@ -119,4 +119,4 @@ Camelot uses [Semantic Versioning](https://semver.org/). For the available versi
119119

120120
## License
121121

122-
This project is licensed under the MIT License, see the [LICENSE](https://github.com/camelot-dev/camelot/blob/main/LICENSE) file for details.
122+
This project is licensed under the MIT License, see the [LICENSE](https://github.com/camelot-dev/camelot/blob/master/LICENSE) file for details.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
# documentation.
145145
html_theme_options = {
146146
"repository_url": "https://github.com/camelot-dev/camelot",
147-
"repository_branch": "main",
147+
"repository_branch": "master",
148148
"path_to_docs": "/docs",
149149
"use_repository_button": True,
150150
# "launch_buttons": "dict to notebooks to launch",

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Release v\ |version|. (:ref:`Installation <install>`)
1212
:target: https://camelot-py.readthedocs.io/
1313
:alt: Documentation Status
1414

15-
.. image:: https://codecov.io/github/camelot-dev/camelot/badge.svg?branch=main&service=github
16-
:target: https://codecov.io/github/camelot-dev/camelot/?branch=main
15+
.. image:: https://codecov.io/github/camelot-dev/camelot/badge.svg?branch=master&service=github
16+
:target: https://codecov.io/github/camelot-dev/camelot/?branch=master
1717

1818
.. image:: https://img.shields.io/pypi/v/camelot-py.svg
1919
:target: https://pypi.org/project/camelot-py/

docs/user/advanced.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ Table areas that you want camelot to analyze can be passed as a list of comma-se
229229
Specify table regions
230230
---------------------
231231

232-
However there may be cases like `[1] <../_static/pdf/table_regions.pdf>`__ and `[2] <https://github.com/camelot-dev/camelot/blob/main/tests/files/tableception.pdf>`__, where the table might not lie at the exact coordinates every time but in an approximate region.
232+
However there may be cases like `[1] <../_static/pdf/table_regions.pdf>`__ and `[2] <https://github.com/camelot-dev/camelot/blob/master/tests/files/tableception.pdf>`__, where the table might not lie at the exact coordinates every time but in an approximate region.
233233

234234
You can use the ``table_regions`` keyword argument to :meth:`read_pdf() <camelot.read_pdf>` to solve for such cases. When ``table_regions`` is specified, camelot will only analyze the specified regions to look for tables.
235235

0 commit comments

Comments
 (0)