Skip to content

Commit 60f2982

Browse files
committed
Prepare 0.1.3 release
1 parent 610d8c0 commit 60f2982

File tree

6 files changed

+15
-8
lines changed

6 files changed

+15
-8
lines changed

CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mkdocs-material-0.x.x (2016-xx-xx)
1+
mkdocs-material-0.1.3 (2016-02-21)
22

33
* Fixed #3: Ordered lists within an unordered list have ::before content
44
* Fixed #4: Click on Logo/Title without Github-Repository: "None"

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mkdocs-material",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"description": "A material design theme for MkDocs",
55
"homepage": "http://squidfunk.github.io/mkdocs-material/",
66
"authors": [

docs/getting-started.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,10 +202,17 @@ This will print the following block:
202202
Nothing to see here, move along.
203203

204204
The Material template adds a neutral color for the `note` class and a red color
205-
for the `warning` class.
205+
for the `warning` class. You can also add a custom title:
206206

207-
!!! warning
208-
You shall not pass.
207+
``` markdown
208+
!!! warning "Don't try this at home"
209+
If you do, you will regret it.
210+
```
211+
212+
This will print:
213+
214+
!!! warning "Don't try this at home"
215+
If you do, you will regret it.
209216

210217
More colors can be freely defined.
211218

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ theme_dir: material
3636

3737
# Options
3838
extra:
39-
version: 0.1.2
39+
version: 0.1.3
4040
logo: images/logo.png
4141
font:
4242
text: Ubuntu

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mkdocs-material",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"description": "A material design theme for MkDocs",
55
"homepage": "http://squidfunk.github.io/mkdocs-material/",
66
"authors": [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# Package description
2424
setup(
2525
name = 'mkdocs-material',
26-
version = '0.1.2',
26+
version = '0.1.3',
2727
url = 'http://squidfunk.github.io/mkdocs-material/',
2828
license = 'MIT',
2929
description = 'A material design theme for MkDocs',

0 commit comments

Comments
 (0)