pre-commit fixers and linters for handling text files
Project description
texthooks
A collection of pre-commit
hooks for handling text files.
In particular, hooks for handling unicode characters which may be undesirable in a repository.
Usage with pre-commit
To use with pre-commit
, include this repo and the desired hooks in
.pre-commit-config.yaml
:
- repo: https://github.com/sirosen/texthooks
rev: 0.3.0
hooks:
- id: fix-smartquotes
- id: fix-ligatures
Standalone Usage
Each hook is usable as a CLI script. Simply
pip install texthooks
and then invoke, e.g.
fix-smartquotes FILENAME
Supported Hooks
fix-smartquotes
This fixes copy-paste from some applications which replace double-quotes with curly quotes. It does not convert corner brackets, braile quotation marks, or angle quotation marks. Those characters are not typically the result of copy-paste errors, so they are allowed.
Low quotation marks vary in usage and meaning by language, and some languages use quotation marks which are facing "outwards" (opposite facing from english). For the most part, these and exotic characters (double-prime quotes) are ignored.
In files with the offending marks, they are replaced and the run is marked as failed.
Overriding Quotation Characters
Two options are available for specifying exactly which characters will be replaced. For ease of use, they are specified as hex-encoded unicode codepoints.
Suppose you wanted to avoid replacing the "Heavy single comma quotation
mark ornament" (275C
) and the "Heavy single turned comma quotation mark
ornament" (275B
) characters. You could override the single quote codepoints
as follows:
- repo: https://github.com/sirosen/texthooks
rev: 0.3.0
hooks:
- id: fix-smartquotes
# replace default single quote chars with this set:
# apostrophe, fullwidth apostrophe, left single quote, single high
# reversed-9 quote, right single quote
args: ["--single-quote-codepoints", "0027,FF07,2018,201B,2019"]
fix-ligatures
Automatically find and replace ligature characters with their ascii equivalents.
This replaces liguatures which may be created by programs like LaTeX for
presentation with their strictly-equivalent ASCII counterparts. For example,
fi
and ff
may be ligature-ized.
This hook converts these back into ASCII so that tools like grep
will behave
as expected.
forbid-bidi-controls
This is checker which forbids the use of unicode bidirectional text control characters.
These are directional formatting characters which can be used to construct text
with unexpected or unclear semantics. For example, in programming languages
which allow bidirectional text in statements, "X" = ייִדיש
can be written
with right-to-left reversal to mean that the variable ייִדיש
is assigned a
value of "X"
.
macro-expand
Replace simple "macro" strings in text. This fixer is a no-op if no macro
arguments are supplied. Add --macro
to arguments to do replacements.
For example, convert issue:NNN
to an issue link in markdown with the
following sample config:
- repo: https://github.com/sirosen/texthooks
rev: 0.3.0
hooks:
- id: macro-expand
args:
- "--macro"
- "issue:"
- '[texthooks#$VALUE](https://github.com/sirosen/texthooks/issues/$VALUE)'
CHANGELOG
0.3.1
- Minor fixes to docstrings
0.3.0
- Add the macro-expand fixer
0.2.2
- Fix a bug in CLI argument handling for all hooks
0.2.1
- Fix a typo in
forbid-bidi-controls
entrypoint
0.2.0
- Add the
forbid-bidi-controls
hook - Adjust the handling of file encodings. Files will be read with UTF-8 encoding by default in most cases.
0.1.0
- Initial release with
fix-ligatures
andfix-smartquotes
hooks
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file texthooks-0.3.1.tar.gz
.
File metadata
- Download URL: texthooks-0.3.1.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2cbd2f99737221484af86fd3bd32b5c8b158b5459ba4821c3e14a4917fa226f9 |
|
MD5 | b6fbc3a375c5fde541cd8ccc9d314793 |
|
BLAKE2b-256 | c2e61499206cae269f7104a114df11ebb0300ccafb570361026140258eeaeeef |
File details
Details for the file texthooks-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: texthooks-0.3.1-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32d781b4d803e271332faac102cbc83e4931096f1017e0ed43e18cf8cf957977 |
|
MD5 | 45e910ed9ccabbbf521319ab68bf0d4d |
|
BLAKE2b-256 | 08dc7bd46130ae0eca0d1993d9b7d8ddd29f6ab655d1abc249da8071ec635bef |