Skip to content

Commit beb39f9

Browse files
committed
Add link to open source file on GitHub
1 parent b7781ae commit beb39f9

File tree

5 files changed

+15
-0
lines changed

5 files changed

+15
-0
lines changed

.spelling

+1
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ MacOS
151151
McCrosky
152152
mdbook
153153
mdbook-toc
154+
mdbook-open-on-gh
154155
Melancon
155156
metadata
156157
metastore

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ matrix:
66
- curl -LSfs https://japaric.github.io/trust/install.sh | sh -s -- --git rust-lang/mdBook
77
- curl -LSfs https://japaric.github.io/trust/install.sh | sh -s -- --git badboy/mdbook-toc
88
- curl -LSfs https://japaric.github.io/trust/install.sh | sh -s -- --git badboy/mdbook-mermaid
9+
- curl -LSfs https://japaric.github.io/trust/install.sh | sh -s -- --git badboy/mdbook-open-on-gh
910
- mdbook --version
1011
- mdbook-toc --version
1112
- mdbook-mermaid --version

book.toml

+3
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ command = "mdbook-toc"
1515
additional-css = ["dtmo.css", "mermaid.css"]
1616
additional-js = ["mermaid.min.js", "mermaid-init.js"]
1717
git-repository-url = "https://github.com/mozilla/firefox-data-docs"
18+
19+
[preprocessor.open-on-gh]
20+
command = "mdbook-open-on-gh"

dtmo.css

+7
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,10 @@
44
.content code mark {
55
display: inline-block;
66
}
7+
8+
footer#open-on-gh {
9+
font-size: 0.8em;
10+
text-align: center;
11+
border-top: 1px solid black;
12+
padding: 5px 0;
13+
}

src/meta/contributing.md

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ To build the documentation locally, you'll need additional preprocessors:
2626

2727
* [mdbook-toc](https://github.com/badboy/mdbook-toc/releases)
2828
* [mdbook-mermaid](https://github.com/badboy/mdbook-mermaid/releases)
29+
* [mdbook-open-on-gh](https://github.com/badboy/mdbook-open-on-gh/releases)
2930

3031
Download releases for your system, unpack it and place the binary in a directory of your `$PATH`.
3132

@@ -34,6 +35,7 @@ If you have [rustc](https://www.rust-lang.org/) already installed, you can insta
3435
```bash
3536
curl -LSfs https://japaric.github.io/trust/install.sh | sh -s -- --git badboy/mdbook-toc
3637
curl -LSfs https://japaric.github.io/trust/install.sh | sh -s -- --git badboy/mdbook-mermaid
38+
curl -LSfs https://japaric.github.io/trust/install.sh | sh -s -- --git badboy/mdbook-open-on-gh
3739
```
3840

3941
This will place `mdbook-toc` and `mdbook-mermaid` into `~/.cargo/bin`.
@@ -44,6 +46,7 @@ You can also build and install the preprocessors:
4446
```bash
4547
cargo install mdbook-toc
4648
cargo install mdbook-mermaid
49+
cargo install mdbook-open-on-gh
4750
```
4851

4952
You can then serve the documentation locally with:

0 commit comments

Comments
 (0)