-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Navigation item functionality added, some organization changes
- Loading branch information
Sethen
committed
Mar 3, 2015
1 parent
89ef4a1
commit baf8e78
Showing
8 changed files
with
197 additions
and
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# How To Install | ||
# How To Install !heading | ||
|
||
markdown-include is available on npm for easy installation: | ||
|
||
|
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,17 +1,18 @@ | ||
# How To Use | ||
# How To Use !heading | ||
|
||
markdown-include is very easy to use. Just include a `markdown.json` file in your project root with your options and run from the command line to compile your documents like so: | ||
|
||
``` | ||
node path/to/markdown-include.js path/to/markdown.json | ||
``` | ||
|
||
## markdown.json | ||
## markdown.json !heading | ||
|
||
`markdown.json` can be populated with the following options: | ||
|
||
| Option | Type | Description | | ||
|:-------------:|:-------------:|:--------------------------------------------------------------------------:| | ||
| `build` | String | File path of where everything should be compiled, like `README.md` | | ||
| `files` | Array | Array of files to to compile | | ||
| Option | Type | Description | | ||
|:-----------------:|:-------------:|:--------------------------------------------------------------------------:| | ||
| `build` | String | File path of where everything should be compiled, like `README.md` | | ||
| `files` | Array | Array of files to to compile | | ||
| `tableOfContents` | Boolean | `true` to build table of contents dynamically | | ||
|
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"build" : "README.md", | ||
"files" : ["./docs/_README.md"] | ||
"files" : ["./docs/_README.md"], | ||
"tableOfContents": true | ||
} |
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