Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/opsschool/curriculum
Ops School Curriculum
https://github.com/opsschool/curriculum
curriculum restructuredtext sphinx
Last synced: 5 days ago
JSON representation
Ops School Curriculum
- Host: GitHub
- URL: https://github.com/opsschool/curriculum
- Owner: opsschool
- License: other
- Created: 2012-10-12T13:27:34.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2023-11-23T14:05:07.000Z (12 months ago)
- Last Synced: 2024-08-02T12:47:23.725Z (3 months ago)
- Topics: curriculum, restructuredtext, sphinx
- Language: Python
- Homepage: http://www.opsschool.org/
- Size: 1.18 MB
- Stars: 1,620
- Watchers: 146
- Forks: 449
- Open Issues: 44
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: security_101.rst
Awesome Lists containing this project
- awesome-repositories - opsschool/curriculum - Ops School Curriculum (Python)
- awesome-starred - opsschool/curriculum - Ops School Curriculum (others)
README
Ops School Curriculum
=====================
[![Build Status](https://travis-ci.org/opsschool/curriculum.svg?branch=master)](https://travis-ci.org/opsschool/curriculum)
[![GitHub issues](https://img.shields.io/github/issues/opsschool/curriculum.svg?maxAge=2592000)](https://github.com/opsschool/curriculum/issues)The current documentation based on these sources can be seen at:
Welcome!
If you have arrived here, you are probably interested in helping out.
So thank you for your time.Things you should know:
* This project is written in [reStructuredText](http://docutils.sourceforge.net/docs/user/rst/quickstart.html)
* Hosted by [Read the Docs](http://readthedocs.org/)
* Tested by rendering in [Sphinx](http://sphinx-doc.org/) on [Travis CI](https://travis-ci.org)This is the only Markdown file in the repository, as it's not meant to be
included in the documentation itself.If you are looking to add content, fix formatting, syntax, typos or other
wonderful things, please follow this process:* Read the [Style Guide](http://www.opsschool.org/en/latest/meta/style_guide.html)
* Install Sphinx: `pip install -r requirements.txt` (This is best done in a virtual environment.)
* Fork the `opsschool/curriculum` repository to your own account
* Check out a branch to make your changes on: `git checkout --branch `
* Execute `make html` to build the docs in to `_build/`
* Make your changes
* Execute `make html` again and verify your changes don't cause any warnings/errors
* Commit with a descriptive message, and submit a pull request from your branch to `master`
* One of the editors will review the change, and either merge it or provide some
feedback. Community review is also encouraged.If you submit a pull request and would like to have your name associated with
the project, add it to the `meta/contributions.rst` file!Some cool things:
* `vim-common` contains a reStructuredText syntax highlighter
* The [Emacs support][emacs] via rst-mode comes as part of the docutils package
under `/docutils/tools/editors/emacs/rst.el`[emacs]: http://docutils.sourceforge.net/docs/user/emacs.html
Note about internal links
-------------------------When creating a link to another page inside the curriculum, use Sphinx's
built-in cross-reference mechanisms to achieve this.Examples:
* linking to a top-level document such as "Text Editing 101" should be done
inline, like so:See :doc:`text_editing_101` for details...
where the name provided is the RST file path. The title will be linked to
the document like so:See Text Editing 101 for details...
* linking to a reference point, such as a sub-topic on a page should be done by
creating a globally unique reference point, such as:.. _gnu-screen:
GNU Screen
----------and using this inline anywhere in the docs like so:
See :ref:`gnu-screen` for more details.
The sub-topic's title will be replaced in the hyperlink as well.
After modifications to links, please run `make linkcheck` to see the status of
all the links in the docs.More on cross-referencing can be read in the [Sphinx Docs](http://sphinx-doc.org/markup/inline.html#cross-referencing-arbitrary-locations).