Skip to content

Commit dd1e025

Browse files
authoredJul 7, 2024··
Replace "Implicit Figures" with Shortcode (#1545)
1 parent 25eb035 commit dd1e025

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+2026
-967
lines changed
 

Diff for: ‎.github/newsletter-issue-template.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,10 @@ Please use these templates as a starting point:
115115
```md
116116
### [Game name]
117117

118-
![alt text](img)
119-
_optional image label_
118+
{{ image_figure(
119+
alt="alt text"
120+
src="img"
121+
caption="optional image label") }}
120122

121123
[Game name] ([GitHub], [Discord], [Twitter]) by [@nickname]
122124
is... {short project description in one sentence}.
@@ -133,8 +135,10 @@ _Discussions: [/r/rust_gamedev](link), [Twitter](link), [etc](link)_
133135
```md
134136
### [Article name]
135137

136-
![alt text](img)
137-
_optional image label_
138+
{{ image_figure(
139+
alt="alt text"
140+
src="img"
141+
caption="optional image label") }}
138142

139143
[@nickname] published an [article] about...
140144
{overview what the resource is about}.

Diff for: ‎.github/newsletter-template.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,10 @@ Ideal section structure is:
5050
```
5151
### [Title]
5252
53-
![image/GIF description](image link)
54-
_image caption_
53+
{{ image_figure(
54+
alt="image/GIF description"
55+
src="image link"
56+
caption="image caption") }}
5557
5658
A paragraph or two with a summary and [useful links].
5759

0 commit comments

Comments
 (0)
Please sign in to comment.