mirror of
https://github.com/rust-lang/mdBook.git
synced 2025-12-28 13:51:10 -05:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
04c7020168 | ||
|
|
274c22c702 | ||
|
|
6dcb411f6a | ||
|
|
aae23f46aa |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,5 +1,5 @@
|
||||
target
|
||||
Cargo.lock
|
||||
target
|
||||
|
||||
book-test
|
||||
book-example/book
|
||||
|
||||
12
Cargo.toml
12
Cargo.toml
@@ -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"]
|
||||
|
||||
@@ -9,6 +9,10 @@ body {
|
||||
.right {
|
||||
float: right;
|
||||
}
|
||||
h2,
|
||||
h3 {
|
||||
margin-top: 2.5em;
|
||||
}
|
||||
.sidebar {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
|
||||
@@ -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 }
|
||||
|
||||
Reference in New Issue
Block a user