Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/docs/how-to/routing/mdx-plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ by Gatsby image processing.
![my image](./my-awesome-image.png)
```

By default, the text `my image` will be used as the alt attribute of the
By default, the text `my awesome image` will be used as the alt attribute of the
generated `img` tag. If an empty alt attribute like `alt=""` is wished,
a reserved keyword `GATSBY_EMPTY_ALT` can be used.

Expand Down
6 changes: 3 additions & 3 deletions packages/gatsby-remark-images/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ plugins: [
You can reference an image using the relative path, where that path is relative to the location of the Markdown file you're typing in.

```md
![Alt text here](./image.jpg)
![Alt text here](./my-awesome-image.png)
```

By default, the text `Alt text here` will be used as the alt attribute of the generated `img` tag. If an empty alt attribute like `alt=""` is wished,
By default, the text `my awesome image` will be used as the alt attribute of the generated `img` tag. If an empty alt attribute like `alt=""` is wished,
a reserved keyword `GATSBY_EMPTY_ALT` can be used.

```markdown
![GATSBY_EMPTY_ALT](./image.png)
![GATSBY_EMPTY_ALT](./my-awesome-image.png)
```

## Options
Expand Down