Skip to content
Merged
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 RoboFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ public function processChangelog()
$repo = $release['repo'] ?? 'Codeception';
$changelog .= sprintf("\n\n### %s %s: %s\n\n", $repo, $release['tag_name'], $release['name']);

$changelog .= sprintf("Released by [![](%s) %s](%s) on %s",
$changelog .= sprintf('Released by [![](%s){:height="16" width="16"} %s](%s) on %s',
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 got the syntax from https://kramdown.gettalong.org/syntax.html#images

Since additional attributes can be added via span and block IALs, it is possible, for example, to specify image width and height:

Here is an inline ![smiley](smiley.png){:height="36px" width="36px"}.

$release['author']['avatar_url'] . '&s=16',
$release['author']['login'],
$release['author']['html_url'],
Expand Down