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 collaboratorInline text formating
Formatting text is available using String
extensions. You can by example write "my text".italic
to get an italic version of this text.
Italic is done by surounding the text with _
and bold version with **
. Strikethrough is also available.
- Scenarios
-
- Italic
-
- When
-
I execute the following koios code:
Koios::Doc.write {[ 'italic'.italic ]}
- Then
-
the markdown output is:
_italic_
- Bold
-
- When
-
I execute the following koios code:
Koios::Doc.write {[ 'bold'.bold ]}
- Then
-
the markdown output is:
**bold**
- Strikethrough
-
- When
-
I execute the following koios code:
Koios::Doc.write {[ 'strikethrough'.strikethrough ]}
- Then
-
the markdown output is:
~~strikethrough~~
- Code
-
- When
-
I execute the following koios code:
Koios::Doc.write {[ 'code'.code ]}
- Then
-
the markdown output is:
code
Last published almost 7 years ago by eunomie.