forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request barryclark#19 from pmarsceill/task-lists
Task lists
- Loading branch information
Showing
17 changed files
with
182 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
layout: default | ||
title: Configuration | ||
nav_order: 2 | ||
--- | ||
|
||
# Configuration | ||
|
||
Just the Docs has some specific configuration parameters that can be definied in your Jekyll site's `config.yml` file. | ||
|
||
## Search enabled | ||
|
||
```yml | ||
# Enable or disable the site search | ||
search_enabled: true | ||
``` | ||
## Aux links | ||
```yml | ||
# Aux links for the upper right navigation | ||
aux_links: | ||
"Just the Docs on GitHub": | ||
- "//github.com/pmarsceill/just-the-docs" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
layout: default | ||
title: Customization | ||
nav_order: 5 | ||
nav_order: 6 | ||
--- | ||
|
||
# Customization | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
layout: default | ||
title: Navigation Structure | ||
nav_order: 4 | ||
nav_order: 5 | ||
--- | ||
|
||
# Navigation Structure | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
layout: default | ||
title: Code | ||
parent: UI Components | ||
nav_order: 5 | ||
nav_order: 6 | ||
--- | ||
|
||
# Code | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
--- | ||
layout: default | ||
title: Lists | ||
parent: UI Components | ||
nav_order: 5 | ||
--- | ||
|
||
# Lists | ||
{:.no_toc} | ||
|
||
## Table of contents | ||
{: .no_toc .text-delta } | ||
|
||
1. TOC | ||
{:toc} | ||
|
||
--- | ||
|
||
Most lists can be rendered with pure markdown... | ||
|
||
## Unordered list | ||
<div class="code-example" markdown="1"> | ||
- Item 1 | ||
- Item 2 | ||
- Item 3 | ||
|
||
_or_ | ||
|
||
* Item 1 | ||
* Item 2 | ||
* Item 3 | ||
</div> | ||
```markdown | ||
- Item 1 | ||
- Item 2 | ||
- Item 3 | ||
|
||
_or_ | ||
|
||
* Item 1 | ||
* Item 2 | ||
* Item 3 | ||
``` | ||
|
||
|
||
## Ordered list | ||
<div class="code-example" markdown="1"> | ||
1. Item 1 | ||
1. Item 2 | ||
1. Item 3 | ||
</div> | ||
```markdown | ||
1. Item 1 | ||
1. Item 2 | ||
1. Item 3 | ||
``` | ||
## Task list | ||
|
||
<div class="code-example" markdown="1"> | ||
- [ ] hello, this is a todo item | ||
- [ ] hello, this is another todo item | ||
- [x] goodbye, this item is done | ||
</div> | ||
```markdown | ||
- [ ] hello, this is a todo item | ||
- [ ] hello, this is another todo item | ||
- [x] goodbye, this item is done | ||
``` | ||
|
||
## Definition list | ||
|
||
Definition lists require HTML syntax and aren't supported with the GitHub flavored markdown compiler. | ||
|
||
<div class="code-example" markdown="1"> | ||
<dl> | ||
<dt>Name</dt> | ||
<dd>Godzilla</dd> | ||
<dt>Born</dt> | ||
<dd>1952</dd> | ||
<dt>Birthplace</dt> | ||
<dd>Japan</dd> | ||
<dt>Color</dt> | ||
<dd>Green</dd> | ||
</dl> | ||
</div> | ||
```html | ||
<dl> | ||
<dt>Name</dt> | ||
<dd>Godzilla</dd> | ||
<dt>Born</dt> | ||
<dd>1952</dd> | ||
<dt>Birthplace</dt> | ||
<dd>Japan</dd> | ||
<dt>Color</dt> | ||
<dd>Green</dd> | ||
</dl> | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters