Skip to content

Latest commit

 

History

History
421 lines (282 loc) · 17.8 KB

CONTRIBUTING.md

File metadata and controls

421 lines (282 loc) · 17.8 KB

Contributing to CockroachDB Docs

The CockroachDB docs are open source just like the database itself. We welcome your contributions!

Setup

  1. Fork the CockroachDB docs repository.

  2. Create a local clone of your fork.

  3. CockroachDB uses Jekyll to transform Markdown and layout files into a complete, static HTML site. We also use htmltest to check the generated HTML for errors (broken internal and external links, missing images, etc.).

    Install Jekyll, htmltest, and some other dependencies so you can view doc changes locally:

    $ cd path/to/docs
    $ make bootstrap
  4. Learn the essentials of our Docs Structure.

  5. Review our simple Style Guide.

Get Started

Once you're ready to contribute:

  1. Create a new local branch for your work:

    $ cd path/to/docs
    $ git checkout -b "<your branch name>"
  2. Make your changes.

    Note that there are distinct directories for each documented version of CockroachDB. For example, docs for CockroachDB v1.0 are in the v1.0 directory, whereas docs for CockroachDB v1.1 are in the v1.1 directory.

  3. Build and test the docs locally.

  4. Commit your changes.

  5. Push to your local branch to your remote fork.

  6. Back in the CockroachDB docs repo, open a pull request and assign it to jseldess. If you check the Allow edits from maintainers option when creating your pull request, we'll be able to make minor edits or fixes directly, if it seems easier than commenting and asking you to make those revisions, which can streamline the review process.

We'll review your changes, providing feedback and guidance as necessary. Also, Teamcity, the system we use to automate tests, will run the markdown files through Jekyll and then run htmltest against the resulting HTML output to check for errors. Teamcity will also attempt to sync the HTML to an AWS server, but since you'll be working on your own fork, this part of the process will fail; don't worry about the Teamcity fail status.

Keep Contributing

If you want to regularly contribute to the CockroachDB docs, there are a few things we recommend:

  1. Make it easy to bring updated docs into your fork by tracking us upstream:

    $ git remote add --track master upstream https://github.com/cockroachdb/docs.git
  2. When you're ready to make your next round of changes, get our latest docs:

    $ git fetch upstream
    $ git merge upstream/master
  3. Repeat the write, build, push, pull flow from the Get Started section above.

Docs Structure

Pages

We provide documentation for each major version of CockroachDB. The pages for each version are found in a directory named for the version. For example, docs for CockroachDB v1.0 are in the v1.0 directory, whereas docs for CockroachDB v1.1 are in the v1.1 directory.

Within each version directory, each page must be an .md file written in the redcarpet dialect of Markdown, and must start with the following front-matter:

---
title: Title of Page
summary: Short description of page for SEO
---
Field Description Default
title Used as the h1 header. Nothing
summary Used as the page's meta description for SEO. Keep this under 155 characters. Consider using the first sentence of the page, or something similar. Nothing

Optionally, you can specify other fields in the front-matter:

Field Description Default
toc Adds an auto-generated table of contents to the top of the page. Usually, we accept the false default and place the TOC after the introduction. See Page TOC for more details. false
toc_not_nested Limits a page's TOC to h2 headers only. false
allowed_hashes Specifies a list of allowed hashes that don't correspond to a section heading on the page. Nothing
asciicast Adds code required to play asciicasts on the page. See Asciicasts for more details. false
feedback Adds "Yes/No" feedback buttons at the bottom of the page. See Feedback Widget for more details. true
contribute Adds "Contribute" options at the top-right of the page. See Contributing Options for more details. true
redirect_from Specifies other internal URLs that should redirect to the page. See Client-Side Redirects Nothing
twitter Adds code required to track the page as part of a Twitter campaign false
no_sidebar If true, removes the sidebar from a page. See Sidebar for more details. Nothing

Page TOC

The CockroachDB Jekyll theme can auto-generate a page-level table of contents listing all h2 and h3 headers or just all h2 headers on the page. Related files: js/toc.js and _includes/toc.html.

  • To add a page TOC to the very top of the page, set toc: true in the page's front-matter.

  • To add a page TOC anywhere else on the page (for example, after an intro paragraph), set toc: false in the page's front-matter and add the following HTML where you want the toc to appear on the page:

    <div id="toc"></div>
  • To omit a page TOC from the page, set toc: false in the page's front-matter.

  • By default, a page TOC includes h2 and h3 headers. To limit a page TOC to h2 headers only, set toc_not_nested: true in the page's front-matter.

Auto-Included Content

Some pages auto-include content from the _includes directory. For example, each SQL statement page includes a syntax diagram from _includes/sql/diagrams, and the build-an-app-with-cockroachdb.md tutorials include code samples from _includes/app.

The syntax for including content is {% include <filepath> %}, for example, {% include app/basic-sample.rb %}.

Version Tags

New and changed features should be called out in the documentation using version tags.

  • To add a version tag to a paragraph, place <span class="version-tag">New in vX.X:</span> at the start of the paragraph, e.g:

    <span class="version-tag">New in v1.1:</span> The `user_privileges` view identifies global privileges.
    
  • To add a version tag to a heading, place <span class="version-tag">New in vX.X</span> to the right of the heading, e.g.:

    ## SQL Shell Welcome <div class="version-tag">New in v1.1</div>
    

When calling out a change, rather than something new, change New in vX.X to Changed in vX.X.

Allowed Hashes

In a page's front-matter, you can specify a list of allowed hashes that don't correspond to a section heading on the page. This is currently used for pages with JavaScript toggle buttons, where the toggle to activate by default can be specified in the URL hash. If you attempt to link to, for example, page-with-toggles.html#toggle-id without listing toggle-id in allowed_hashes, our HTML tester will complain that toggle-id does not exist on the page. Listing a hash in allowed_hashes will generate a dummy element with that ID at the top of the page, which keeps our HTML tester happy.

Here's an example from a page with OS toggles:

allowed_hashes: [os-mac, os-linux, os-windows]

Asciicasts

  1. Install asciinema.
  2. Size your shell window to be a bit narrower than our code blocks.
  3. Initiate an asciicast with asciinema rec -c "/bin/bash -l". This makes the asciicast use your shell's appearance.
  4. Press CTRL + D to stop recording.
  5. Press Enter to upload the recording to asciinema.
  6. Click Download.
  7. Rename the .json asciicast file and place it in the /asciicasts directory.
  8. On the page, set asciicast: true in the front-matter.
  9. On the page, include the following html where you want the asciicast to appear. Change the src filepath as relevant, and change poster to the time in the asciicast that you want to use as the static image. For other details about customizing the asciicast appearance, see the asciinema README.
<asciinema-player class="asciinema-demo" src="asciicasts/start-a-local-cluster.json" cols="107" speed="2" theme="solarized-dark" poster="npt:0:30" title="Start a Local Cluster"></asciinema-player>

Feedback Widget

We show "Yes/No" feedback buttons at the bottom of every page by default. To remove these buttons from a page, set feedback: false in the page's front-matter.

Contributing Options

We show "Contribute" options in the top-right of every page by default. To remove these options from a page, set contribute: false in the page's front-matter.

Client-Side Redirects

We use the JekyllRedirectFrom plugin to ensure that multiple URLs resolve to a single page. This is most useful in cases where we change the filename or directory structure of a page.

For example, if v1.0.html page were moved from the root level to releases/v1.0.html, you would add redirect-from: /v1.0.html to the page's front-matter to ensure that https://cockroachlabs.com/docs/v1.0.html gets redirected to https:/cockroachlabs.com/docs/releases/v1.0.html.

If you rename or restructure a versioned page, use a relative link, not an absolute link. For example, if show-transaction.md and show-time-zone.md are merged into show-vars.md for v1.1, use the following redirect_from specification:

redirect_from:
- show-transaction.html
- show-time-zone.html

This ensures that if v1.1 is also the stable or dev version, the corresponding stable or dev redirects will be generated as well.

Sidebar

For each documented version of CockroachDB, a JSON file in the _includes directory defines the pages that appear in the docs sidebar. For example, the sidebar for CockroachDB v1.0 is defined by _includes/sidebar-data-v1.0.json.

If you're adding a page that you think should appear in the sidebar, please mention this in your pull request.

In the JSON file for a version's sidebar, there are three possible fields:

Field Type Description
title String At the top level, this field defines the title for a section of the sidenav, e.g., Get Started. Within the items field, title defines either the title for a subsection or the title for a page, which can be different from the actual page title. See the JSON Example below for more clarity.
items Array of objects The pages in a section of the sidenav.
urls Array of strings The URLs for a page in the sidenav, each formatted as /${VERSION}/<page-name>.html, e.g., /${VERSION}/learn-cockroachdb-sql.html. The first URL is the page to link to. The subsequent URLs are pages that should highlight this title in the sidebar.

JSON Example

This example shows some of the first section of the sidenav, Get Started:

  • The first title field defines the section title.
  • The first items field contains multiple objects, each defining pages in the section:
    • The first object defines the title and URL for the first page in the section, Install CockroachDB.
    • The second object is more complex. It defines a subsection titled Start a Local Cluster. This object contains its own items field, which in turn contains multiple objects, each defining the title and URL for a page.
[
  {
    "title": "Get Started",
    "items": [
      {
        "title": "Install CockroachDB",
        "urls": [
          "/${VERSION}/install-cockroachdb.html"
        ]
      },
      {
        "title": "Start a Local Cluster",
        "items": [
          {
            "title": "From Binary",
            "urls": [
              "/${VERSION}/start-a-local-cluster.html",
              "/${VERSION}/secure-a-cluster.html"
            ]
          },
          {
            "title": "In Docker",
            "urls": [
              "/${VERSION}/start-a-local-cluster-in-docker.html"
            ]
          }
        ]
      },
      ...
  }
]

Style Guide

CockroachDB docs should be:

  • Clear
  • Correct
  • Concise

To enable this, we have the following specific guidance:

We also have additional guidance to ensure consistency with our existing documents.

Code Samples

Code samples are marked with an opening and closing set of 3 tildes (~~~). Shell and SQL commands should be syntax highlighted where appropriate using the following info.

Shell Code Samples

Start shell code samples with ~~~ shell followed by a line break. The first character of the next line must be the terminal marker $.

SQL Code Samples

SQL code samples are broken into two sections: commands and responses.

  • Commands (e.g., SELECT, CREATE TABLE) should begin with ~~~ sql followed by a line break. The first character of the next line must be the terminal marker >.

  • Responses (e.g., retrieved tables) should begin with ~~~ but should not be syntax highlighted.

    Note that not all responses warrant inclusion. For example, if a SQL code sample shows CREATE TABLE, INSERT, and then SELECT, it's unnecessary to show the responses for CREATE TABLE (which is just CREATE TABLE) and INSERT (which is just INSERT <number of rows>).

Copy to Clipboard

Many of our code blocks are written so users can copy and paste them directly into a terminal. To make that easier, add a "copy to clipboard" feature by placing {% include copy-clipboard.html %} on the line directly preceding the code block, for example:

{% include copy-clipboard.html %}
~~~ shell
$ go get -u github.com/lib/pq
~~~

Lists

For each item of a numbered list, use the step number followed by a period, e.g., 1..

For each item of a bulleted list, use the - character.

Nesting Lists

To nest a list under a list item, start the list on the next line (no empty line), and indent the new list four spaces, for example:

1. This is a step.
    - This is a bullet.
    - This is a bullet.
    - This is a bullet.

2. This is a step.

Nesting Paragraphs or Code Blocks

To nest a paragraph or code block under a list item, insert an empty line and then indent the paragraph or code block 4 spaces, for example:

1. This is a step.

    This is a nested paragraph.

    ~~~ shell
    $ command
    ~~~

Similarly, to nest a paragraph or code block under a nested list item, insert an empty line and then indent the paragraph or code block 8 spaces, for example:

1. This is a step.
    - This is a bullet.

        ~~~ shell
        $ command
        ~~~
    - This is a bullet.

        ~~~ shell
        $ command
        ~~~
    - This is a bullet.

        ~~~ shell
        $ command
        ~~~

2. This is a step.

Notes, Warnings, & Tips

Our docs use three classes of highlighted text.

NOTE: The text of notes, warnings, and tips must be formatted in HTML instead of Markdown/Kramdown.

Notes

Use notes to call attention to a piece of clarifying information; this information should not be crucial to accomplishing the task in the document.

For example, you might use a note to let users know that the DELETE statement only deletes rows and that to delete columns you must use ALTER TABLE. This helps clarify DELETE's purpose and point misguided users to the right place.

To insert a note, use the following code:

{{site.data.alerts.callout_info}} <tip text goes here> {{site.data.alerts.end}}

Warnings

Use warning to express that a piece of information is critical to understand to prevent unexpected things from happening.

For example, you might include a warning that using CASCADE in DROP INDEX drops dependent objects without warning. This is critical to prevent users from unexpectedly losing constraints or additional indexes.

To insert a warning, use the following code:

{{site.data.alerts.callout_danger}} <warning text goes here> {{site.data.alerts.end}}

Tips

Use tips to highlight nice-to-know pieces of information.

For example, you might include a tip to our Github repo's Terraform scripts on the Google Cloud Engine deployment page. It's nice to know it's there, but doesn't clarify anything nor is it critical.

To insert a tip, use the following code:

{{site.data.alerts.callout_success}}{{site.data.alerts.end}}

Build and Test the Docs Locally

Once you've installed Jekyll and have a local clone of the docs repository, you can build and test the docs as follows:

  1. From the root directory of your clone, run:

    $ make serve
  2. Point your browser to http://127.0.0.1:4000/docs/ and manually check your changes.

    • If the page you want to test isn't listed in the sidebar, just point to it directly, for example, http://127.0.0.1:4000/docs/new-page.html.

    • When you make additional changes, Jekyll automatically regenerates the HTML content. No need to stop and re-start Jekyll; just refresh your browser.

    Once you're done viewing your changes, use CTRL + C to stop the Jekyll server.

  3. Run automated tests against the Jekyll-generate HTML files to check for problems (broken links, missing alt texts for images, etc.):

    $ make test