Skip to content
Open
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 myst_parser/mdit_to_docutils/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1175,7 +1175,7 @@ def render_image(self, token: SyntaxTreeNode) -> None:

img_node["uri"] = destination

img_node["alt"] = self.renderInlineAsText(token.children or [])
img_node["alt"] = self.renderInlineAsText(token.children or []) or destination

self.copy_attributes(
token,
Expand Down
9 changes: 9 additions & 0 deletions tests/test_renderers/fixtures/docutil_syntax_elements.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,15 @@ Image empty:
<image alt="" uri="">
.

Image without alt:
.
![](src)
.
<document source="notset">
<paragraph>
<image alt="src" uri="src">
.

Image with alt and title:
.
![alt](src "title")
Expand Down
9 changes: 9 additions & 0 deletions tests/test_renderers/fixtures/sphinx_syntax_elements.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,15 @@ Image empty:
<image alt="" uri="">
.

Image without alt:
.
![](src)
.
<document source="<src>/index.md">
<paragraph>
<image alt="src" uri="src">
.

Image with alt and title:
.
![alt](src "title")
Expand Down