Skip to content

Commit

Permalink
Fix typos (#185)
Browse files Browse the repository at this point in the history
Found via `codespell -S package-lock.json -L ist,als,sie`
  • Loading branch information
kianmeng authored Nov 6, 2024
1 parent 436cc0a commit d2a4d44
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Align `ol` and `ul` elements to match paragraph indentation.
### 0.2.12

- Fixes indentation of images wrapped in `<p>` tags ([#48](https://github.com/danburzo/percollate/issues/48))
- Adds basic styles for tables ([#50](https://github.com/danburzo/percollate/issues/50)), figures, defition terms, et cetera.
- Adds basic styles for tables ([#50](https://github.com/danburzo/percollate/issues/50)), figures, definition terms, et cetera.
- Adds a better font stack, using CSS variables
- Better CLI feedback with [ora](https://github.com/sindresorhus/ora) (thanks [@emersonlaurentino](https://github.com/emersonlaurentino)!)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ To keep the tool up-to-date, you can run:
npm install -g percollate
```

Occasionally, an ugrade might not go according to plan; in this case, you can uninstall and re-install `percollate`:
Occasionally, an upgrade might not go according to plan; in this case, you can uninstall and re-install `percollate`:

```bash
npm uninstall -g percollate && npm install -g percollate
Expand Down
2 changes: 1 addition & 1 deletion cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Commands:
html Bundle web pages as a HTML file.
md Bundle web pages as a Markdown file.
Commmon options:
Common options:
-h, --help Output usage information.
-V, --version Output program version.
Expand Down
2 changes: 1 addition & 1 deletion src/enhancements.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import replaceElementType from './replace-element-type.js';
import { isImageURL } from './util/file-mimetype.js';

/*
Convert AMP markup to HMTL markup
Convert AMP markup to HTML markup
(naive / incomplete implementation)
*/
function ampToHtml(doc) {
Expand Down
2 changes: 1 addition & 1 deletion test/enhancements.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ tape('imagesAtFullSize', t => {
);

t.test(
'should not unlink linked img elements if the link doesnt point to an image',
'should not unlink linked img elements if the link doesn\'t point to an image',
t => {
const doc = dom`
<a href="/some-random-link">
Expand Down

0 comments on commit d2a4d44

Please sign in to comment.