PagerDuty / mkdocs-theme-pagerduty

A custom MkDocs theme for all our public Ops Guide websites.

Home Page:https://www.pagerduty.com/ops-guides/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PagerDuty MkDocs Theme Build Status

This is our custom MkDocs theme used for our Ops Guides family of websites. It gives us a consistent design across all the sites, and allows us to make changes in a single place rather than individually in each documentation repository.

PagerDuty MkDocs Theme

Our original theme was a heavy customization of Material for MkDocs version 0.2.4 by squidfunk. This new theme keeps a similar visual style, but was built from the ground-up specifically for our use cases.

You probably do not want to use this theme for your own sites, as a lot of things are hardcoded to point to PagerDuty things. We recommending looking at the latest version of the excellent MkDocs Material theme for your documentation instead.

Development

We use MkDocs to create our static sites. This repository contains a set of test documentation pages with "Lorem ipsum" text in a variety of situations, intermixed with images, callouts and so on. The test documentation will use the current raw theme files so we can get an idea of how everything looks.

Native

For local development on your native device,

  1. Install MkDocs. pip install mkdocs
  2. Install MkDocs PyMdown Extensions. pip install pymdown-extensions
  3. Install Pygments if you want syntax highlighting for any code examples. pip install pygments
  4. To test locally, run mkdocs serve from the project directory.
  5. You can now view the website in your browser at http://127.0.0.1:8000. The site will automatically update as you edit the code.

Docker

For local development using Docker,

  1. Build the docker image and load it for immediate use. docker build --load -t mkdocs .
  2. Run the container and pass through your current working directory. docker run -v $(pwd):/docs -p 127.0.0.1:8000:8000 mkdocs
  3. You can now view the website in your browser at http://127.0.0.1:8000. The site will automatically update as you edit the code.

Note: If you're using an Apple Silicon device, add --platform linux/arm64/v8 to the docker build command to get a native Apple Silicon image. That will work faster than translating an arm64 image.

Installing

To install and use the theme for other projects, clone this repository and then run python3 setup.py install.

Then in your project mkdocs.yml file specify your theme as pagerduty. You should also specify a title for the site while you're there.

theme:
  name: 'pagerduty'
  title: 'Your Site Title'

Deploying

There are no special deployment instructions. Any PagerDuty sites using this theme will automatically get the latest version on their next deployment. If you want to update immediately, you can force a redeployment of the various documentation sites in CI.

License

Apache 2 (See LICENSE file)

Contributing

Thank you for considering contributing! If you have any questions, just ask - or submit your issue or pull request anyway. The worst that can happen is we'll politely ask you to change something. We appreciate all friendly contributions.

Here is our preferred process for submitting a pull request,

  1. Fork it ( https://github.com/PagerDuty/mkdocs-theme-pagerduty/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request.

About

A custom MkDocs theme for all our public Ops Guide websites.

https://www.pagerduty.com/ops-guides/

License:Apache License 2.0


Languages

Language:CSS 76.8%Language:HTML 17.8%Language:JavaScript 4.3%Language:Dockerfile 0.5%Language:Python 0.5%