Skip to content

Commit

Permalink
Fix docs order
Browse files Browse the repository at this point in the history
  • Loading branch information
grachevko committed Sep 4, 2020
1 parent 9e156c1 commit eae6a65
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,23 +256,6 @@ Markdown::builder()->numberedList(['Foo', 'Bar', 'Baz'])->getMarkdown();
3. Baz
```

#### Checklist

```php
Markdown::builder()
->checklist([
'Hallo' => false,
'foo' => false,
'bar' => true,
])->getMarkdown();
```

```markdown
- [ ] Hallo
- [ ] foo
- [X] bar
```

#### Numbered list callable

```php
Expand Down Expand Up @@ -313,6 +296,23 @@ Markdown::builder()
4. D
```

#### Checklist

```php
Markdown::builder()
->checklist([
'Hallo' => false,
'foo' => false,
'bar' => true,
])->getMarkdown();
```

```markdown
- [ ] Hallo
- [ ] foo
- [X] bar
```

#### Checklist callable

```php
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit eae6a65

Please sign in to comment.