Compare commits

..

4 Commits

Author SHA1 Message Date
Mathieu David
04c7020168 Merge pull request #65 from kbknapp/cargo-install
adds version for deps to make cargo installable
2015-11-22 20:36:43 +01:00
Kevin K
274c22c702 adds version for deps to make cargo installable 2015-11-20 08:41:16 -05:00
Mathieu David
6dcb411f6a Bumped version that was still set to 0.0.1 + added a bigger top margin for h2 and h3 elements 2015-11-10 16:26:39 +01:00
Mathieu David
aae23f46aa Include Cargo.lock in versioning 2015-10-10 13:35:32 +02:00
4 changed files with 17 additions and 11 deletions

2
.gitignore vendored
View File

@@ -1,5 +1,5 @@
target
Cargo.lock
target
book-test
book-example/book

View File

@@ -1,6 +1,6 @@
[package]
name = "mdbook"
version = "0.0.1"
version = "0.0.3"
authors = ["Mathieu David <mathieudavid@mathieudavid.org>"]
description = "create books from markdown files (like Gitbook)"
documentation = "http://azerupi.github.io/mdBook/index.html"
@@ -14,13 +14,13 @@ exclude = [
]
[dependencies]
clap = "*"
handlebars = "*"
rustc-serialize = "*"
pulldown-cmark = "*"
clap = "~1.5.3"
handlebars = "=0.11.2"
rustc-serialize = "~0.3.16"
pulldown-cmark = "~0.0.3"
[dev-dependencies]
tempdir = "*"
tempdir = "~0.3.4"
[features]
default = ["output"]

View File

@@ -9,6 +9,10 @@ body {
.right {
float: right;
}
h2,
h3 {
margin-top: 2.5em;
}
.sidebar {
position: absolute;
left: 0;

View File

@@ -1,12 +1,14 @@
html, body {
font-family: "Open Sans", sans-serif;
color: #333;
font-family: "Open Sans", sans-serif
color: #333
}
.left {
float: left;
float: left
}
.right {
float: right;
float: right
}
h2, h3 { margin-top: 2.5em }