Skip to content
This repository has been archived by the owner on Mar 1, 2022. It is now read-only.

Latest commit

 

History

History
175 lines (123 loc) · 9.02 KB

style-guide.md

File metadata and controls

175 lines (123 loc) · 9.02 KB

+++ title = "Style Guide" menutitle = "Style Guide" description = "Start Here: Formatting and Quickstart Guide" pre = " " +++

Summary

Welcome to Project Trident!

This document is designed to unify the style of documentation contributions to Project Trident. It outlines the tools needed for documentation and elements of style for the project. The goal is to encourage contribution to the project by providing reference materials and guidelines, lowering the barriers to entry for new contributors.

Quickstart

Contributors are encouraged to reference this style guide when writing Trident documentation. Documentation Pull Requests are quickly reviewed for relevancy to the project, then merged. Trident documentation will be periodically reviewed and edited to conform to this style guide.

All documentation is stored as Markdown files in the trident-website repository on GitHub. These files are published to http://www.project-trident.org as articles.

Every documentation file needs an introduction section explaining the goal of the document and a summary of the most useful procedure.

Trident Basic Style Elements:

Element Markup Example
Headings #, ##, ###, ####, ##### # Title of Document ## Main Section of Document
Empty space around paragraphs and elements Enter key. # Example Section Text for the example section. New paragraph for the example. Ending this paragraph and section. # Next Example Section
Links [link text](www.full-link.com) The [Trident website](https://www.project-trident.org)
Lists 1. OR #. OR - 1. Enumerated list. #. Autonumbered list. - Unordered list.
Images ![Text](URL) ![Project Trident](https://github.com/project-trident/trident-website/tree/master/hugo-site/static/images/logo.svg)
Graphical Interface Item **Bold Text that Matches the Item Name Exactly** **Insight** file manager
Examples or an exact string to type One backtick (`) for inline text. Three backticks (```) for blocks. "Open a terminal and type `ls`" becomes "Open a terminal and type ls"
Markdown Escape Character \ Use a backtick (\\).`

The rest of this document provides more details about Trident documentation tools and more guidelines for writing style.

Documentation Tools and Publishing Process

This section outlines the tools that Trident uses to build and publish its documentation.

Documentation Tools

Project Trident uses the Hugo site generator to create the Project Trident website. The website is created from files stored in the trident-website repository. Documentation articles are written with the Markdown syntax. The online GitHub web editor can be used to write and test Markdown files. There is no requirement to download or use a text editing program.

Publishing Process

All documentation articles are contained in the /hugo-site/content directory of the trident-website repository. Adding a new file or editing an existing article will trigger rebuilding the website. The website updates every .

Text Style

The following sections explain the different standards that Trident applies to documentation contributions. These sections have a "top-down" approach, starting with universal elements that are applied to every file and zooming in to describe specific markup to use for text elements.

Standard Elements for a Documentation File

Every Markdown file needs to include several elements:

  • Date of last revision. Contributions to a file need to update this element.
  • An introduction section that explains the goal of the document.
  • A quickstart or summary section that provides very brief instruction to accomplish the most common or sought for task.
  • Every document is to be written in English.
  • Text is to be active, simplistic, and as brief as possible. This is to avoid confusing the reader and make translations simpler.
  • Use empty lines to separate elements and text paragraphs.
  • Sentences begin on a new line.

Images and Tables

Store images in the /static/images subdirectory of the hugo-site. Create images as .png files and name them according to a descending order of description: trident-installer-disk.png Image syntax in a Markdown file is ![image name(https://github.com/project-trident/trident-website/tree/master/hugo-site/static/images/exampleimage.png).

Table syntax is complex, but there are many markdown table generators online to simplify creating tables. Example table:

| Column 1 | Column 2 |
| -------- | -------- |
| Row 1    | Cell2    |
| R2, C3   | R2, C4   |

Text Style

  • Write in complete sentences with proper capitalization and punctuation.
  • Use the Oxford comma: item 1, item 2, and item 3
  • Avoid contractions: can't > cannot
  • Use title case when appropriate: # Title of a Document, Person Name, and Image Title or Caption.
  • Define an abbreviation before using it later in the document: Use a hard drive with at least 100 Gibibytes (GiB) of space.
  • Always give proper attribution when quoting another document or person: "You lose." - Calvin Coolidge

Typography

Markdown syntax is very simple.

Here is a simple list of Markdown syntax elements provided by markdownguide.org

Headings: # H1
          ## H2
          ### H3

Bold: **bold text**

Italic: *italicized text*

Blockquote: > blockquote

Ordered List: 1. First item
              2. Second item
              3. Third item

Unordered List: - First item
                - Second item
                - Third item

Code: `code`

Horizontal Rule: ---

Link: [title](https://www.example.com)

Image: ![alt text](image.jpg)

Table:
       | Syntax | Description |
       | ----------- | ----------- |
       | Header | Title |
       | Paragraph | Text |

Fenced Code Block:
                   ```
                   {
                     "firstName": "John",
                     "lastName": "Smith",
                     "age": 25
                   }
                   ```

Footnote:	Here's a sentence with a footnote. [^1]

          [^1]: This is the footnote.

Heading ID: ### My Great Heading {#custom-id}

Strikethrough: ~~The world is flat.~~

Task List: - [x] Write the press release
           - [ ] Update the website
           - [ ] Contact the media

Here is specific syntax usage used by Project Trident:

  • Emphasis: *italic*
  • Name of a Specific Item: **bold**
  • Examples: Inline `code blocks`

Translations

Translation system is still to be determined. Update this section when the translation system is finalized.

Translation files are stored in . <define any required tools to process or build translations, or make recommendations>