Coder Social home page Coder Social logo

tri-adam / singularity-admindocs Goto Github PK

View Code? Open in Web Editor NEW

This project forked from sylabs/singularity-admindocs

0.0 1.0 0.0 87.85 MB

Admin documentation for SingularityCE

License: BSD 3-Clause "New" or "Revised" License

Makefile 37.08% Python 62.92%

singularity-admindocs's Introduction

SingularityCE Admin Docs

This project uses reStructured Text (RST) and ReadTheDocs. As a library for the current theme, Sphinx Python library was used, using Python v. 2.7.

Setting up an environment to contribute

First things first, you will need to install the following tools:

pip install -U Sphinx

You're all set! after this you will only need to use your favorite editor for RST files.

How to do stuff in RST

First of all, it is good to have an idea of some files and their functionality in the project:

Structure of the project

This project maintains the following structure:

  1. Index.rst : contains the sections and the initial table of contents tree, every section is referenced by a tag next to it. (e.g. Quick Start <quick_start>)
  2. All other files, are named as the same reference tag described before, so in the previous example, a correspondent quick_start.rst file exists.
  3. The configuration at the moment of compilation is given by the conf.py file, some more description about this file can be found below.

The conf.py file

This file contains the themes, extensions, variables and naming for files that the compilation process produces. Here are some important elements:

  • version : Describes the current version (This one is a short version of the release)
  • release: Describes the current release (Complete or full version description. For a matter of simplicity we maintain both at the same value)
  • html_theme: Describes the theme to be used in the ReadtheDocs document.
  • html_theme_options: Describes the options needed for configuration in the theme (This varies from theme to theme, so we enforce using the options for the Sphinx theme only.
  • html_context: Options related to which is the github repository and what name it has.
  • html_logo: The logo for the sidebar
  • html_favicon: The favicon for the entire project
  • htmlhelp_basename: Default name of the document generated in Latex, we leave all these as default values.

Cheatsheet to get started with reStructured (RST) Text

Some hints on how to write stuff on RST are described in this section.

1. Create a section/subsection/subsubsection title

Sections are all described as plain text, but have specific notations/underlining for titles and subtitles, very similar to Markup Language.

  • To create a main section title: A main section title is described as a surrounded text (above and below) of = characters. Like in the following example:
================
New Main Section
================
  • To create a sub-section: A sub section title is described as a surrounded text (above and below) of - characters. Like in the following example:
---------------
New Sub section
---------------
  • To create a sub-sub-section: A sub-sub section title is described as a text underlined by = characters. Like in the following example:
New sub-sub section
===================
  • Last but not least, could happen that you would need to insert a sub-sub-sub section, in that case the title is described as a text underlined by - characters. Like in the following example:
New sub-sub-sub section
-----------------------

2. Reference sections

You might need to reference sections, for that aim you will need to first create the reference above the title you need to reference and second to reference it where you need the link reference. Remember that this type of references is very different than that of hyperlinks, because at the moment of compilation, the latex document generated will have the reference to the page in which that title was referenced. Very cool, huh? Let's see how it works...

Step 1: Create the reference

To create the reference on the section you need to link, you will need to specify a tag, allowed characters contain also - characters but they need to be unique name tags. So for example, in the build-docker-module section we can have something like:

.. _build-docker-module:

-------------------
build-docker-module
-------------------

Note that it might not be necessarily that the section is called just as the same as the tag-name.

Step 2: Reference it

You can do so by following the next syntax:

The name after the ref tag could also be different, the important thing is that the tag between the < and > is the one that belongs to the previous given tag name. Like in the following example:

:ref:`quickstart <quick-start>`

You can find a lot of information about RST on this site

Generating HTML files from RST

This is pretty straightforward by going to the root of the project on the command line and then do:

make html

This will generate a folder called _build within which you'll see a folder called html that contains all the html files you need.

Generating PDF files from RST

This is very similar to the previous step, you will need to execute on command line:

make latexpdf

With this, a new folder latex will be generated inside _build, that will contain all pdf files generated from RST (by default it is called "ReadTheDocsTemplate.pdf").

(Additional latex files are also generated if needed.)

Generating EPUB files from RST

Very similar to the previous command, you will just need to execute on a command line:

make epub

This will generate an epub folder inside _build. Inside epub, you will find files with an epub extension.

singularity-admindocs's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.