Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 501 Bytes

File metadata and controls

39 lines (27 loc) · 501 Bytes

This is a simple markdown example

Example 1

the block below will be executed as it is, but won't yield any output

let $var1 = 'foo'

Example 2

# This block will produce some output in a separate block
$var1 | path join 'baz' 'bar'

Output:

# => foo/baz/bar

Example 3

# This block will output results inline
whoami
# => user

2 + 2
# => 4

Example 4

# This block doesn't have a language identifier in the opening fence