Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 383 Bytes

simple_markdown.md

File metadata and controls

33 lines (23 loc) · 383 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