To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorImage
Write images in markdown. An alternative message can be added to the picture.
You can create an image by extending a string like:
'https://travis-ci.org/eunomie/koios.svg?branch=master'.img 'Build status'
Or by calling the img
function:
img 'https://travis-ci.org/eunomie/koios.svg?branch=master', 'Build status'
- Scenarios
-
- Extend string to create image
- Extend string to create image with alt content
- Function to create image
- Function to create image with alt content
- Extend string to create image
-
- When
-
I execute the following koios code:
Koios::Doc.write {[ 'https://travis-ci.org/eunomie/koios.svg?branch=master'.img ]}
- Then
-
the markdown output is:

- Extend string to create image with alt content
-
- When
-
I execute the following koios code:
Koios::Doc.write {[ 'https://travis-ci.org/eunomie/koios.svg?branch=master'.img('Build status') ]}
- Then
-
the markdown output is:

- Function to create image
-
- When
-
I execute the following koios code:
Koios::Doc.write {[ img('https://travis-ci.org/eunomie/koios.svg?branch=master') ]}
- Then
-
the markdown output is:

- Function to create image with alt content
-
- When
-
I execute the following koios code:
Koios::Doc.write {[ img('https://travis-ci.org/eunomie/koios.svg?branch=master', 'Build status') ]}
- Then
-
the markdown output is:

Last published almost 7 years ago by eunomie.