Skip to content

Commit

Permalink
add more sections here
Browse files Browse the repository at this point in the history
  • Loading branch information
joshrotenberg committed Dec 18, 2021
1 parent 18b9f42 commit 0908709
Showing 1 changed file with 57 additions and 1 deletion.
58 changes: 57 additions & 1 deletion guide/src/format/markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,63 @@ this documentation, but below is a high level overview of some of the basics. Fo

## Text and Paragraphs

## Titles
Text is rendered relatively predictably:

```markdown
Here is a line of text.

This is a new line.
```

Will look like you might expect:

Here is a line of text.

This is a new line.

## Headings

Headings use the `#` marker and should be on a line by themselves. More `#` mean smaller headings:

```markdown
### A heading

Some text.

#### A smaller heading

More text.
```

### A heading

Some text.

#### A smaller heading

More text.

## Lists

Lists can be unordered or ordered. Ordered lists will order automatically:

```markdown
* milk
* eggs
* butter

1. carrots
1. celery
1. radishes
```

* milk
* eggs
* butter

1. carrots
1. celery
1. radishes

## Links

Expand Down

0 comments on commit 0908709

Please sign in to comment.