Skip to content

Commit 028c8b0

Browse files
authored
Merge pull request #743 from mattico/remove-stylus-redux
Convert Stylus to CSS
2 parents b3e0942 + 05f3c69 commit 028c8b0

32 files changed

+896
-2546
lines changed

CONTRIBUTING.md

-24
Original file line numberDiff line numberDiff line change
@@ -48,30 +48,6 @@ mdBook builds on stable Rust, if you want to build mdBook from source, here are
4848

4949
The resulting binary can be found in `mdBook/target/debug/` under the name `mdBook` or `mdBook.exe`.
5050

51-
52-
### Making changes to the style
53-
54-
mdBook doesn't use CSS directly but uses [Stylus](http://stylus-lang.com/), a CSS-preprocessor which compiles to CSS.
55-
56-
When you want to change the style, it is important to not change the CSS directly because any manual modification to
57-
the CSS files will be overwritten when compiling the stylus files. Instead, you should make your changes directly in the
58-
[stylus files](https://github.com/rust-lang-nursery/mdBook/tree/master/src/theme/stylus) and regenerate the CSS.
59-
60-
For this to work, you first need [Node and NPM](https://nodejs.org/en/) installed on your machine.
61-
Then run the following command to install both [stylus](http://stylus-lang.com/) and [nib](https://tj.github.io/nib/), you might need `sudo` to install successfully.
62-
63-
```
64-
npm install -g stylus nib
65-
```
66-
67-
When that finished, you can simply regenerate the CSS files by building mdBook with the following command:
68-
69-
```
70-
cargo build --features=regenerate-css
71-
```
72-
73-
This should automatically call the appropriate stylus command to recompile the files to CSS and include them in the project.
74-
7551
### Making a pull-request
7652

7753
When you feel comfortable that your changes could be integrated into mdBook, you can create a pull-request on GitHub.

Cargo.toml

+1-9
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@ repository = "https://github.com/rust-lang-nursery/mdBook"
88
keywords = ["book", "gitbook", "rustbook", "markdown"]
99
license = "MPL-2.0"
1010
readme = "README.md"
11-
build = "build.rs"
12-
exclude = [
13-
"book-example/*",
14-
"src/theme/stylus/**",
15-
]
11+
exclude = ["book-example/*"]
1612

1713
[dependencies]
1814
clap = "2.24"
@@ -47,9 +43,6 @@ ws = { version = "0.7", optional = true}
4743
elasticlunr-rs = { version = "2.3", optional = true, default-features = false }
4844
ammonia = { version = "1.1", optional = true }
4945

50-
[build-dependencies]
51-
error-chain = "0.12"
52-
5346
[dev-dependencies]
5447
select = "0.4"
5548
pretty_assertions = "0.5"
@@ -60,7 +53,6 @@ pulldown-cmark-to-cmark = "1.1.0"
6053
default = ["output", "watch", "serve", "search"]
6154
debug = []
6255
output = []
63-
regenerate-css = []
6456
watch = ["notify"]
6557
serve = ["iron", "staticfile", "ws"]
6658
search = ["elasticlunr-rs", "ammonia"]

appveyor.yml

-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
environment:
22
global:
33
PROJECT_NAME: mdBook
4-
nodejs_version: "6"
54
matrix:
65
# Stable channel
76
- TARGET: i686-pc-windows-msvc
@@ -32,17 +31,12 @@ install:
3231
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
3332
- rustc -Vv
3433
- cargo -V
35-
- ps: Install-Product node $env:nodejs_version
36-
- node --version
37-
- npm --version
38-
- npm install -g stylus nib
3934

4035
build: false
4136

4237
# Equivalent to Travis' `script` phase
4338
test_script:
4439
- cargo build --verbose
45-
- cargo build --verbose --features=regenerate-css
4640
- cargo test --verbose
4741

4842
before_deploy:

build.rs

-100
This file was deleted.

ci/github_pages.sh

+1-4
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,14 @@ if [ "$TRAVIS_PULL_REQUEST" != "false" ] ||
1111
exit 0
1212
fi
1313

14-
# Make sure we have the css dependencies
15-
npm install -g stylus nib
16-
1714
NC='\033[39m'
1815
CYAN='\033[36m'
1916
GREEN='\033[32m'
2017

2118
rev=$(git rev-parse --short HEAD)
2219

2320
echo -e "${CYAN}Running cargo doc${NC}"
24-
cargo doc --features regenerate-css > /dev/null
21+
cargo doc > /dev/null
2522

2623
echo -e "${CYAN}Running mdbook build${NC}"
2724
cargo run -- build book-example/

src/book/init.rs

+14-2
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,20 @@ impl BookBuilder {
127127
let mut index = File::create(themedir.join("index.hbs"))?;
128128
index.write_all(theme::INDEX)?;
129129

130-
let mut css = File::create(themedir.join("book.css"))?;
131-
css.write_all(theme::CSS)?;
130+
let cssdir = themedir.join("css");
131+
fs::create_dir(&cssdir)?;
132+
133+
let mut general_css = File::create(cssdir.join("general.css"))?;
134+
general_css.write_all(theme::GENERAL_CSS)?;
135+
136+
let mut chrome_css = File::create(cssdir.join("chrome.css"))?;
137+
chrome_css.write_all(theme::CHROME_CSS)?;
138+
139+
let mut print_css = File::create(cssdir.join("print.css"))?;
140+
print_css.write_all(theme::PRINT_CSS)?;
141+
142+
let mut variables_css = File::create(cssdir.join("variables.css"))?;
143+
variables_css.write_all(theme::VARIABLES_CSS)?;
132144

133145
let mut favicon = File::create(themedir.join("favicon.png"))?;
134146
favicon.write_all(theme::FAVICON)?;

src/renderer/html_handlebars/hbs_renderer.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,10 @@ impl HtmlHandlebars {
139139
)?;
140140

141141
write_file(destination, "book.js", &theme.js)?;
142-
write_file(destination, "book.css", &theme.css)?;
142+
write_file(destination, "css/general.css", &theme.general_css)?;
143+
write_file(destination, "css/chrome.css", &theme.chrome_css)?;
144+
write_file(destination, "css/print.css", &theme.print_css)?;
145+
write_file(destination, "css/variables.css", &theme.variables_css)?;
143146
write_file(destination, "favicon.png", &theme.favicon)?;
144147
write_file(destination, "highlight.css", &theme.highlight_css)?;
145148
write_file(destination, "tomorrow-night.css", &theme.tomorrow_night_css)?;

0 commit comments

Comments
 (0)