#mdbook #github #link #page #add #linker #edit

bin+lib mdbook-open-on-gh

mdbook preprocessor to add a open-on-github link on every page

20 stable releases

2.4.2 Dec 13, 2023
2.4.1 Aug 5, 2023
2.3.3 Feb 14, 2023
2.3.1 Dec 18, 2022
1.0.1 Jan 30, 2020

#553 in Text processing

Download history 4/week @ 2024-01-28 3/week @ 2024-02-04 10/week @ 2024-02-11 27/week @ 2024-02-18 58/week @ 2024-02-25 52/week @ 2024-03-03 71/week @ 2024-03-10 28/week @ 2024-03-17 8/week @ 2024-03-24 53/week @ 2024-03-31 18/week @ 2024-04-07 26/week @ 2024-04-14

111 downloads per month
Used in mdbook-dtmo

MPL-2.0 license

25KB
204 lines

mdbook-open-on-gh

A preprocessor for mdbook to add a open-on-github link on every page.

It adds an "Edit this file on GitHub" link on the bottom of every page, linking directly to the source file. It uses the configured git-repository-url as the base.

Installation

If you want to use only this preprocessor, install the tool:

cargo install mdbook-open-on-gh

Add it as a preprocessor to your book.toml:

[preprocessor.open-on-gh]
command = "mdbook-open-on-gh"
renderer = ["html"]

Configuration

mdbook-open-on-gh is configured using additional options under [output.html]:

[output.html]
# Required: Your repository URL used in the link.
git-repository-url = "https://github.com/$user/$project"

# Your git branch. Defaults to `main`
git-branch = "main"

# The text to use in the footer.
# The link text is marked by `[]`
open-on-text = "Found a bug? [Edit this page on GitHub.]"

To style the footer add a custom CSS file for your HTML output:

[output.html]
additional-css = ["open-in.css"]

And in open-in.css style the <footer> element or directly the CSS element id open-on-gh:

footer {
  font-size: 0.8em;
  text-align: center;
  border-top: 1px solid black;
  padding: 5px 0;
}

This code block shrinks the text size, center-aligns it under the rest of the content and adds a small horizontal bar above the text to separate it from the page content.

Finally, build your book as normal:

mdbook path/to/book

License

MPL. See LICENSE.
Copyright (c) 2020-2022 Jan-Erik Rediger janerik@fnordig.de

Dependencies

~12–25MB
~336K SLoC