Skip to content
Open
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
10 changes: 5 additions & 5 deletions docs/syntax/images.md
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IMO, that's a bug

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I figured you'd say this, but in case you don't get to fix this quickly due to priorities, we can still update these docs so that they correspond to the current behavior? I'll open an issue in parallel

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is always time for small bugs.

Let me try if copilot can fix this.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I created #2016

Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ For inline images, the alt text always overrides any title specified in the Mark
Image sizing is specified through the title argument. You can specify just the size without needing to provide a redundant title:

```markdown
![alt](img.png "=WxH")
![alt](img.png "=W")
![alt](img.png " =WxH")
![alt](img.png " =W")
```

In this case, the alt text will be used as both the `alt` and `title` attributes, and the size parameters will be applied.
Expand All @@ -91,9 +91,9 @@ In this case, the alt text will be used as both the `alt` and `title` attributes
If `H` is omitted `W` is used as the height as well.

```markdown
![alt](img.png "=250x330")
![alt](img.png "=50%x40%")
![alt](img.png "=50%")
![alt](img.png " =250x330")
![alt](img.png " =50%x40%")
![alt](img.png " =50%")
```


Expand Down
Loading