Skip to content

Commit 85af3ac

Browse files
committed
docs(readme): fix typos
1 parent acbe5d8 commit 85af3ac

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,42 +12,42 @@ Multi-platform Docker container with utilities to process Mardown and text files
1212

1313
## Example without using the filesystem
1414

15-
Let's say that you want to convert an Markdown file intput.md in your current working directory to HTML:
15+
Let's say that you want to convert an Markdown file input.md in your current working directory to HTML:
1616

1717
**Mac/Linux**
1818

1919
```bash
20-
cat intput.md | docker run --rm -i --net=none leplusorg/md pandoc -o - > output.html
20+
cat input.md | docker run --rm -i --net=none leplusorg/md pandoc -o - > output.html
2121
```
2222

2323
**Windows**
2424

2525
```batch
26-
type intput.md | docker run --rm -i --net=none leplusorg/md pandoc -o - > output.html
26+
type input.md | docker run --rm -i --net=none leplusorg/md pandoc -o - > output.html
2727
```
2828

2929
## Example using the filesystem
3030

31-
Same thing, assuming that you want to convert an Markdown file intput.md in your current working directory to HTML:
31+
Same thing, assuming that you want to convert an Markdown file input.md in your current working directory to HTML:
3232

3333
**Mac/Linux**
3434

3535
```bash
36-
docker run --rm -t --user="$(id -u):$(id -g)" --net=none -v "$(pwd):/tmp" leplusorg/md pandoc -o output.html intput.md
36+
docker run --rm -t --user="$(id -u):$(id -g)" --net=none -v "$(pwd):/tmp" leplusorg/md pandoc -o output.html input.md
3737
```
3838

3939
**Windows**
4040

4141
In `cmd`:
4242

4343
```batch
44-
docker run --rm -t --net=none -v "%cd%:/tmp" leplusorg/md pandoc -o output.html intput.md
44+
docker run --rm -t --net=none -v "%cd%:/tmp" leplusorg/md pandoc -o output.html input.md
4545
```
4646

4747
In PowerShell:
4848

4949
```pwsh
50-
docker run --rm -t --net=none -v "${PWD}:/tmp" leplusorg/md pandoc -o output.html intput.md
50+
docker run --rm -t --net=none -v "${PWD}:/tmp" leplusorg/md pandoc -o output.html input.md
5151
```
5252

5353
## NPM Packages
@@ -80,11 +80,11 @@ docker buildx imagetools inspect leplusorg/md --format '{{ json .Provenance }}'
8080

8181
[Sigstore](https://docs.sigstore.dev) is trying to improve supply
8282
chain security by allowing you to verify the origin of an
83-
artifcat. You can verify that the image that you use was actually
83+
artifact. You can verify that the image that you use was actually
8484
produced by this repository. This means that if you verify the
8585
signature of the Docker image, you can trust the integrity of the
8686
whole supply chain from code source, to CI/CD build, to distribution
87-
on Maven Central or whever you got the image from.
87+
on Maven Central or wherever you got the image from.
8888

8989
You can use the following command to verify the latest image using its
9090
sigstore signature attestation:

0 commit comments

Comments
 (0)