##// END OF EJS Templates
Describe usermod changes in What's New docs.
Describe usermod changes in What's New docs.

File last commit:

r5279:4d707b82
r5464:7a27135a
Show More
formatting.ipynb
119 lines | 4.4 KiB | text/plain | TextLexer
Brian E. Granger
Converting notebooks to JSON format.
r4634 {
Brian E. Granger
Implemented metadata for notebook format.
r4637 "metadata": {
"name": "formatting"
},
MinRK
update example notebooks after sort_keys and split_lines
r5279 "nbformat": 2,
Brian E. Granger
Converting notebooks to JSON format.
r4634 "worksheets": [
{
"cells": [
{
MinRK
update example notebooks after sort_keys and split_lines
r5279 "cell_type": "markdown",
"source": [
"# Title (h1)",
"",
"## Heading (h2)",
"",
"### Heading (h3)",
"",
"Here is a paragraph of text.",
"",
"* One.",
" - Sublist",
" - Here we go",
" - Sublist",
" - Here we go",
" - Here we go",
"* Two.",
" - Sublist",
"* Three.",
" - Sublist",
"",
"Now another list:",
"",
"---",
"",
"1. Here we go",
" 1. Sublist",
" 2. Sublist",
"2. There we go",
"3. Now this",
"",
"And another paragraph.",
"",
"### Heading (h3)",
"",
"#### Heading (h4)",
"",
"##### Heading (h5)",
"",
"###### Heading (h6)",
"",
"## Heading (h2)",
""
]
Brian E. Granger
Converting notebooks to JSON format.
r4634 },
{
MinRK
update example notebooks after sort_keys and split_lines
r5279 "cell_type": "markdown",
"source": [
"# Heading (h1)",
"",
"## Heading (h2)",
"",
"### Heading (h3)",
"",
"#### Heading (h4)",
"",
"##### Heading (h5)",
"",
"###### Heading (h6)",
"",
"Now for a simpel code example:",
"",
" for i in range(10):",
" print i",
"",
"Now more text"
]
Brian E. Granger
Converting notebooks to JSON format.
r4634 },
{
MinRK
update example notebooks after sort_keys and split_lines
r5279 "cell_type": "markdown",
"source": [
"## Heading (h2)",
"",
"Here is text.",
"",
"> This is a *block* quote. This is a block quote. This is a block quote. ",
"> This is a **block** quote. This is a block quote. This is a block quote. ",
"> This is a `block` quote. This is a block quote. This is a block quote. ",
"> This is a block quote. This is a block quote. This is a block quote. ",
"> This is a block quote. This is a block quote. This is a block quote. ",
"> This is a block quote. This is a block quote. This is a block quote. ",
"",
"Here is text",
"",
"<table>",
"<tr>",
"<th>Header 1</th>",
"<th>Header 2</th>",
"</tr>",
"<tr>",
"<td>row 1, cell 1</td>",
"<td>row 1, cell 2</td>",
"</tr>",
"<tr>",
"<td>row 2, cell 1</td>",
"<td>row 2, cell 2</td>",
"</tr>",
"</table>"
]
Brian E. Granger
Converting notebooks to JSON format.
r4634 },
{
"cell_type": "code",
"collapsed": true,
MinRK
update example notebooks after sort_keys and split_lines
r5279 "input": [],
"language": "python",
"outputs": []
Brian E. Granger
Converting notebooks to JSON format.
r4634 }
]
}
]
}