From 60f2982c2536aa428c61390086f739f116d7ff1f Mon Sep 17 00:00:00 2001 From: squidfunk Date: Sun, 21 Feb 2016 18:30:49 +0100 Subject: [PATCH] Prepare 0.1.3 release --- CHANGELOG | 2 +- bower.json | 2 +- docs/getting-started.md | 13 ++++++++++--- mkdocs.yml | 2 +- package.json | 2 +- setup.py | 2 +- 6 files changed, 15 insertions(+), 8 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 55f0a9e05..abaf47642 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -mkdocs-material-0.x.x (2016-xx-xx) +mkdocs-material-0.1.3 (2016-02-21) * Fixed #3: Ordered lists within an unordered list have ::before content * Fixed #4: Click on Logo/Title without Github-Repository: "None" diff --git a/bower.json b/bower.json index 5e5fc5f7b..1271a19cd 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "mkdocs-material", - "version": "0.1.2", + "version": "0.1.3", "description": "A material design theme for MkDocs", "homepage": "http://squidfunk.github.io/mkdocs-material/", "authors": [ diff --git a/docs/getting-started.md b/docs/getting-started.md index 0a1a8c6ba..09c14f953 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -202,10 +202,17 @@ This will print the following block: Nothing to see here, move along. The Material template adds a neutral color for the `note` class and a red color -for the `warning` class. +for the `warning` class. You can also add a custom title: -!!! warning - You shall not pass. +``` markdown +!!! warning "Don't try this at home" + If you do, you will regret it. +``` + +This will print: + +!!! warning "Don't try this at home" + If you do, you will regret it. More colors can be freely defined. diff --git a/mkdocs.yml b/mkdocs.yml index ebc2ab6b0..5a1aeb6f3 100755 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -36,7 +36,7 @@ theme_dir: material # Options extra: - version: 0.1.2 + version: 0.1.3 logo: images/logo.png font: text: Ubuntu diff --git a/package.json b/package.json index 90bd35f18..025d41b2c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mkdocs-material", - "version": "0.1.2", + "version": "0.1.3", "description": "A material design theme for MkDocs", "homepage": "http://squidfunk.github.io/mkdocs-material/", "authors": [ diff --git a/setup.py b/setup.py index ab2043347..0b004c644 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ from setuptools import setup, find_packages # Package description setup( name = 'mkdocs-material', - version = '0.1.2', + version = '0.1.3', url = 'http://squidfunk.github.io/mkdocs-material/', license = 'MIT', description = 'A material design theme for MkDocs',