Skip to content

feat: Update Contributing guidelines for writers #428

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

ADubhlaoich
Copy link
Contributor

@ADubhlaoich ADubhlaoich commented Apr 17, 2025

Proposed changes

This commit updates the CONTRIBUTING_DOCS.md file to our contemporary standards for documentation formatting, adding mention of Hugo archetypes and our ghcode shortcode, while also removing some slightly redundant information.

Certain sentences have been removed or simplified to reduce the amount of contextual reading required: in certain cases, the reader is guided to refer to the style guide for more precise information, such as in the case of using images.

There will likely be follow-up work in the future to more cleanly delineate guidance for using Hugo and guidance around writing content in a general sense, to tightly scope the purpose of this document in relation to the style guide.

Closes issue #164

Checklist

Before merging a pull request, run through this checklist and mark each as complete.

  • I have read the contributing guidelines
  • I have signed the F5 Contributor License Agreement (CLA)
  • I have rebased my branch onto main
  • I have ensured my PR is targeting the main branch and pulling from my branch from my own fork
  • I have ensured that the commit messages adhere to Conventional Commits
  • I have ensured that documentation content adheres to the style guide
  • If the change involves potentially sensitive changes1, I have assessed the possible impact
  • If applicable, I have added tests that prove my fix is effective or that my feature works
  • I have ensured that existing tests pass after adding my changes
  • If applicable, I have updated README.md and CHANGELOG.md

Footnotes

  1. Potentially sensitive changes include anything involving code, personally identify information (PII), live URLs or significant amounts of new or revised documentation. Please refer to our style guide for guidance about placeholder content.

This commit updates the CONTRIBUTING_DOCS.md file to our contemporary
standards for documentation formatting, adding mention of Hugo
archetypes and our ghcode shortcode, while also removing some slightly
redundant information.

Certain sentences have been removed or simplified to reduce the amount
of contextual reading required: in certain cases, the reader is guided
to refer to the style guide for more precise information, such as in the
case of using images.

There will likely be follow-up work in the future to more cleanly
delineate guidance for using Hugo and guidance around writing content in
a general sense, to tightly scope the purpose of this document in
relation to the style guide.
@ADubhlaoich ADubhlaoich requested a review from a team as a code owner April 17, 2025 15:30
@github-actions github-actions bot added the process documentation Documentation related to how the repository or documention itself is managed. label Apr 17, 2025

We use backticks sparingly (\`\<some-text\>\`) for `monospace text`, typically for process names or commands. More information is available in the [Add code to documentation pages](#add-code-to-documentation-pages) guidance.

Sections can be separated with horizontal lines by using three dashes: `---`.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is currently an option, but one we're likely to move away from in the future - CSS in the newer theme design uses whitespace for meaningful delineation between sections.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This feels like TMI

Copy link
Contributor Author

@ADubhlaoich ADubhlaoich Apr 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What would a more concise version of this look like? It's admittedly slightly redundant with the guidance in the new section.

Copy link
Contributor

@mjang mjang Apr 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One other thing that bothers me is the use of "backtick." I know it's a common term in coding, but we are focused on writers, and I think "backquote" is more accessible to a writer audience.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since we have the linked section, why even have these lines?

If this page is getting so long that we need links from the middle of a page to another part of the page, then maybe CONTRIBUTING_DOCS.md is getting too long.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't actually think it's that long, but that reinforces the point you've made that including the lines is ultimately unnecessary. I'll get rid of it.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I decided to use Google Trends to compare usage of the two terms: blue is backtick, red is backquote.

image

The sample size makes the trend functionally irrelevant IMO (That's measured in the hundreds, not thousands or millions): since our writers are largely engineers, I'm inclined to stick with it.

Copy link

Deploy Preview will be available once build job completes!

Name Link
😎 Deploy Preview https://frontdoor-test-docs.nginx.com/previews/docs/428/

@@ -143,7 +136,7 @@ You can also create custom callouts using the `call-out` shortcode `{{< call-out
{{<call-out "important side-callout" "JWT file required for upgrade" "fa fa-exclamation-triangle">}}
```

By default, all custom callouts are included inline, unless you add `side-callout` which places the callout to the right of the content.
By default, all custom callouts are displayed inline, unless you add `side-callout` which places the callout to the right of the content.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there guidance on when to use in-line vs. out-dented callouts?

Copy link
Contributor Author

@ADubhlaoich ADubhlaoich Apr 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, and I actually have no knowledge of any instances when this has been used.

It feels like guidance on when to use one or another should probably be in the style guide as opposed to this document.

Just thought I'd change the word used since "include" has a certain semantic weight with our Hugo shortcode.

@@ -158,24 +151,51 @@ Here are some other shortcodes:
- `readfile`: Include the content of another file in the current file, which can be in an arbitrary location.
- `bootstrap-table`: formats a table using Bootstrap classes; accepts any bootstrap table classes as additional arguments, e.g. `{{< bootstrap-table "table-bordered table-hover" }}`

### Add code to documentation pages

For command, binary and process names, you can use a pair of backticks (\`\<some-name\>\`): `<some-name>`.
Copy link
Contributor

@travisamartin travisamartin Apr 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
For command, binary and process names, you can use a pair of backticks (\`\<some-name\>\`): `<some-name>`.
For command, binary, and process names, you can use a pair of backticks (\`\<some-name\>\`): `<some-name>`.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@travisamartin Was there meant to be change here?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops -- I mean to add the serial comma. Fixed now.

Copy link
Contributor

@mjang mjang left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While I won't stop this change, it feels like we're now writing CONTRIBUTING_DOCS.md for the developer.

@@ -54,18 +53,27 @@ make clean - Removes the local `public` directory, which is the default

## Add new documentation

We provide template files for different types of documentation. The templates, including instructions to use them and examples, are located in the [templates](templates) directory.
We use [Hugo archetypes](https://gohugo.io/content-management/archetypes/) to provide structure for new documentation pages.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This bothers me -- it's as if we're now relying on Hugo to provide templates -- and I'd expect to find templates at https://gohugo.io/content-management/archetypes/

As our audience is mostly writers, I think they'd struggle with the word "archtypes". Can you explain why you moved in this direction?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you insist on replacing "template" with "archetype," I'd like to see an explanation that's usable by TW-level users.

My personal acceptance criteria, if you go with this langugage: a typical TW should be able to understand the relationship between archetypes and templates.

Copy link
Contributor Author

@ADubhlaoich ADubhlaoich Apr 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Archetype is the name of the Hugo implementation of a template. If you follow the link, this explanation is provided directly underneath the heading.

image

Our audience is not "mostly writers": it is mostly engineers, both as readers and actual (Internal) contributors.

These archetypes have been in use but not properly documented (The issue in the pull request description drove my original work on this PR): intent to convert the unused templates into Hugo archetypes has been discussed internally but not prioritized, which is why these changes include guidance on requesting one if desired.

Copy link
Contributor

@mjang mjang Apr 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In that case,

Suggested change
We use [Hugo archetypes](https://gohugo.io/content-management/archetypes/) to provide structure for new documentation pages.
We provide templates. Hugo refers to templates as [archetypes](https://gohugo.io/content-management/archetypes/). They provide structure for new documentation pages.


`hugo new content <product/folder/filename.md> -k <archetype>`

Our archetypes [currently include](/archetypes/) the following:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we leaving out the other templates?

Copy link
Contributor Author

@ADubhlaoich ADubhlaoich Apr 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

They have not been maintained or used. They might still be adapted for use in archetypes in the future, but all of that context seems like irrelevant noise. The templates themselves are still mentioned.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Our archetypes [currently include](/archetypes/) the following:
Our templates [currently include](/archetypes/) the following:

Copy link
Contributor

@mjang mjang Apr 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

They might still be adapted for use in archetypes in the future

Are you saying that we can't use these other templates with the hugo new content command? If so, should the PR also remove these files from https://github.com/nginx/documentation/tree/main/templates ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are you saying that we can't use these other templates with the hugo new content command?

Basically, yeah. The templates do not interact in any meaningful way with Hugo archetypes.

There's a minimal amount of work needed to "convert" the templates into Hugo archetypes, but the bigger issue is that the templates were worked on in a vacuum and never adopted, whereas the archetypes were rewrites of templates to reflect the actual content IA patterns in production documentation.

I would personally like to remove the files, but it feels beyond the scope of the PR, though the fact nobody has interacted with them since creation means it's likely fine.


We use backticks sparingly (\`\<some-text\>\`) for `monospace text`, typically for process names or commands. More information is available in the [Add code to documentation pages](#add-code-to-documentation-pages) guidance.

Sections can be separated with horizontal lines by using three dashes: `---`.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This feels like TMI

We provide template files for different types of documentation. The templates, including instructions to use them and examples, are located in the [templates](templates) directory.
We use [Hugo archetypes](https://gohugo.io/content-management/archetypes/) to provide structure for new documentation pages.

These archetypes include inline advice on Markdown formatting and our most common style guide conventions.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
These archetypes include inline advice on Markdown formatting and our most common style guide conventions.
These templates (archetypes) include inline advice on Markdown formatting and our most common style guide conventions.


`hugo new content <product/folder/filename.md>`

This new page will be created with the default how-to archetype. To use a specific archetype, add the `-k` parameter and its name, such as:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
This new page will be created with the default how-to archetype. To use a specific archetype, add the `-k` parameter and its name, such as:
This new page will be created with the default how-to template (archetype). To use a specific template, add the `-k` parameter and its name, such as:


Larger blocks of multi-line code text such as configuration files can be wrapped in triple backticks, with a language as a parameter for highlighted formatting.

You can also use the `ghcode` shortcode to embed a single file directly from GitHub:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I did not know this one!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The original issue didn't mention documenting this: I was the driver to get the shortcode in the first place, and I think I'm the only person who's been using it since it wasn't documented anywhere...


Use the `img` shortcode to add images to documentation pages. It has the same parameters as the Hugo [figure shortcode](https://gohugo.io/content-management/shortcodes/#figure).

1. Add the image to the `/static/img` directory.
Copy link
Contributor

@mjang mjang Apr 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We include images in other directories as well (e.g. /static/nginx/images, /static/nginx-one/images, /static/nim)

  • Maybe we should standardize
  • But we should talk about it first

Copy link
Contributor Author

@ADubhlaoich ADubhlaoich Apr 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think a discussion of standardising the IA for all of our "peripheral" content would be beneficial, since we have already started to touch on it for how we organise includes.

@@ -77,47 +85,32 @@ There are multiple ways to format text: for consistency and clarity, these are o
- Ordered lists: The 1 character followed by a stop - `1. Ordered list item`.

> **Note**: The ordered notation automatically enumerates lists when built by Hugo.
Close every section with a horizontal line by using three dashes: `---`.

We use backticks sparingly (\`\<some-text\>\`) for `monospace text`, typically for process names or commands. More information is available in the [Add code to documentation pages](#add-code-to-documentation-pages) guidance.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This sounds like a style guide discussion. Have we decided to use backquotes sparingly?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this is properly documented in the style guide anywhere, but I've been hesitant to attempt to update the style guide due to pushback and deliberation in the past.

They're used somewhat sparingly in the sense that normal text can be used in context where we could refer directly to something like a process:

Use the following command to check the foo output:

Versus...

Use the following command to check the output of the Foo process:

The main offender for over-use in the past was in tables, where we made the decision to instead favour italicised text for parameters and values over monospaced text: it improved the readability considerably, and monospaced text would often break how tables were rendered.

I don't think that pattern/decision is recorded anywhere, but I could be wrong.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
process documentation Documentation related to how the repository or documention itself is managed.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants