diff options
| author | xFrednet <xFrednet@gmail.com> | 2021-04-04 20:05:14 +0200 |
|---|---|---|
| committer | xFrednet <xFrednet@gmail.com> | 2021-04-04 20:15:41 +0200 |
| commit | da04e873b39226cd2f31327a85157b9a8d01be72 (patch) | |
| tree | 9e567d2b5d51f69bc63ba3f662800c5ce1886413 | |
| parent | 6bb608c00cb2d4bf76b3e90f6c1adb78fbf802eb (diff) | |
| download | rust-da04e873b39226cd2f31327a85157b9a8d01be72.tar.gz rust-da04e873b39226cd2f31327a85157b9a8d01be72.zip | |
Quick fix to access the correct css files
| -rw-r--r-- | util/gh-pages/index.html | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/util/gh-pages/index.html b/util/gh-pages/index.html index 39448eec2ef..082cb35c2e0 100644 --- a/util/gh-pages/index.html +++ b/util/gh-pages/index.html @@ -9,12 +9,11 @@ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css"/> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.5.0/styles/github.min.css"/> - <!-- This stylesheet is linked to a specific version to ensure that the link stays static even if mdbook does some refactoring. --> - <!-- gitcdn is used to get the css file as a stylesheet content type. It's open source and published under the GLP-3.0 License --> - <link rel="stylesheet" href="https://gitcdn.xyz/cdn/rust-lang/mdBook/v0.4.7/src/theme/css/variables.css"/> - <link id="styleHighlight" rel="stylesheet" href="https://gitcdn.xyz/repo/rust-lang/mdBook/master/src/theme/highlight.css" disabled="true"> - <link id="styleNight" rel="stylesheet" href="https://gitcdn.xyz/repo/rust-lang/mdBook/master/src/theme/tomorrow-night.css"> - <link id="styleAyu" rel="stylesheet" href="https://gitcdn.xyz/repo/rust-lang/mdBook/master/src/theme/ayu-highlight.css" disabled="true"> + <!-- The files are not copied over into the Clippy project since they use the MPL-2.0 License --> + <link rel="stylesheet" href="https://rust-lang.github.io/mdBook/css/variables.css"/> + <link id="styleHighlight" rel="stylesheet" href="https://rust-lang.github.io/mdBook/highlight.css"> + <link id="styleNight" rel="stylesheet" href="https://rust-lang.github.io/mdBook/tomorrow-night.css" disabled="true"> + <link id="styleAyu" rel="stylesheet" href="https://rust-lang.github.io/mdBook/ayu-highlight.css" disabled="true"> <style> blockquote { font-size: 1em; } [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak { display: none !important; } |
