Skip to content
This repository has been archived by the owner on Oct 14, 2023. It is now read-only.

Commit

Permalink
Remove support for the Rust blog
Browse files Browse the repository at this point in the history
It's broken with the new site and would need new styling.
I may re-add support in the future.
  • Loading branch information
Cldfire committed Jan 2, 2019
1 parent 985e41b commit 7df3078
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion README.md
Expand Up @@ -20,7 +20,6 @@ Home to CSS based on the ST3 theme [ayu](https://github.com/dempfi/ayu) for the
* [play.integer32.com](https://play.integer32.com/)
* Same as above
* [this-week-in-rust.org](https://this-week-in-rust.org/)
* [blog.rust-lang.org](https://blog.rust-lang.org/)

## Usage

Expand Down
6 changes: 3 additions & 3 deletions combine-for-release/src/main.rs
Expand Up @@ -10,7 +10,7 @@ fn main() {
let docs_rs = include_str!("../../css/docs.rs.css");
let playground = include_str!("../../css/playground.css");
let rustdoc = include_str!("../../css/rustdoc.css");
let rust_blog = include_str!("../../css/rust-blog.css");
let twir = include_str!("../../css/twir.css");

let output = "@-moz-document domain(\"docs.rs\") {\n".to_owned()
+ docs_rs +
Expand All @@ -33,8 +33,8 @@ fn main() {
@-moz-document url-prefix(\"https://doc.rust-lang.org/rust-by-example\") {\n"
+ rustbyexample +
"\n}\n\n\
@-moz-document domain(\"this-week-in-rust.org\"), domain(\"blog.rust-lang.org\") {\n"
+ rust_blog +
@-moz-document domain(\"this-week-in-rust.org\") {\n"
+ twir +
"\n}";

let file = File::create("ayu-rs_release.css").expect("file");
Expand Down
File renamed without changes.

0 comments on commit 7df3078

Please sign in to comment.