Skip to content

Commit

Permalink
DOC: Fix links
Browse files Browse the repository at this point in the history
See #1436

Co-authored-by: pavlidvg <74056182+pavlidvg@users.noreply.github.com>
  • Loading branch information
MartinThoma and pavlidvg committed Nov 19, 2022
1 parent df933f2 commit 1842c21
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/dev/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pip install -r requirements/dev.txt

## Running Tests

See [testing PyPDF2 with pytest](testing.html)
See [testing PyPDF2 with pytest](testing.md)

## The sample-files git submodule
The reason for having the submodule `sample-files` is that we want to keep
Expand Down
2 changes: 1 addition & 1 deletion docs/user/encryption-decryption.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Encryption and Decryption of PDFs

> Please see the note in the [installation guide](installation.html)
> Please see the note in the [installation guide](installation.md)
> for installing the extra dependencies if interacting with PDFs that use AES.
## Encrypt
Expand Down
2 changes: 1 addition & 1 deletion docs/user/extract-images.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Extract Images

> Please note: In order to use the following code you need to install optional
> dependencies, see [installation guide](installation.html).
> dependencies, see [installation guide](installation.md).
Every page of a PDF document can contain an arbitrary amount of images.
The names of the files may not be unique.
Expand Down
2 changes: 1 addition & 1 deletion docs/user/migration-1-to-2.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Migration Guide: 1.x to 2.x

`PyPDF2<2.0.0` ([docs](https://pypdf2.readthedocs.io/en/1.27.12/meta/history.html))
is very different from `PyPDF2>=2.0.0` ([docs](https://pypdf2.readthedocs.io/en/latest/meta/history.html)).
is very different from `PyPDF2>=2.0.0` ([docs](../meta/history.md)).

Luckily, most changes are simple naming adjustments. This guide helps you to
make the step from `PyPDF2 1.x` (or even the original PyPpdf) to `PyPDF2>=2.0.0`.
Expand Down
6 changes: 3 additions & 3 deletions docs/user/robustness.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ PyPDF2 gives you the option to be strict or not.

PyPDF2 has three core objects and all of them have a `strict` parameter:

* [`PdfReader`](https://pypdf2.readthedocs.io/en/latest/modules/PdfReader.html)
* [`PdfWriter`](https://pypdf2.readthedocs.io/en/latest/modules/PdfWriter.html)
* [`PdfMerger`](https://pypdf2.readthedocs.io/en/latest/modules/PdfMerger.html)
* [`PdfReader`](../modules/PdfReader.md)
* [`PdfWriter`](../modules/PdfWriter.md)
* [`PdfMerger`](../modules/PdfMerger.md)

Choosing `strict=True` means that PyPDF2 will raise an exception if a PDF does
not follow the specification.
Expand Down

0 comments on commit 1842c21

Please sign in to comment.