Skip to content

Commit c909c5f

Browse files
authored
Merge pull request #823 from Dev-JoyA/blog/technical-documentation-guideline
Creative Common Technical Documentation Guideline page added
2 parents b72d68e + ffa4416 commit c909c5f

File tree

3 files changed

+46
-0
lines changed

3 files changed

+46
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
_model: page
2+
---
3+
_template: page-with-toc.html
4+
---
5+
title: Documentation Guidelines
6+
---
7+
description: This Documentation Guidelines (style guide) ensures all the files in all repositories and any other documentation are properly documented.
8+
---
9+
body:
10+
11+
# Documentation guidelines
12+
13+
The purpose of this guideline is to provide a step-by-step framework for writing and maintaining high-quality documentation for Creative Commons (CC) projects. This guide covers essential sections such as project style guide Preference, Style modification, terminologies, markdown usage. Following these guidelines ensures consistency, clarity, and ease of use for all contributors and users.
14+
15+
## Style guide reference
16+
17+
For general writing style and guidelines, refer to the following upstream style guides:
18+
19+
- [Google Developer Style Guide (Preferred)](https://developers.google.com/style/)
20+
- [Microsoft Writing Style Guide](https://learn.microsoft.com/en-us/style-guide/welcome/)
21+
22+
## Style preferences modifications
23+
24+
While adhering to the upstream style guides, observe the following modifications:
25+
- All acronyms must be defined on first use
26+
- Use active voice wherever possible to improve clarity and engagement.
27+
- Keep sentences concise and to the point, avoiding jargon unless necessary.
28+
29+
30+
## Terminology
31+
32+
Establishing a clear "Terminology" section for Creative Commons (CC)-specific usage is crucial. Below are some proprietary terms and their usage:
33+
34+
- **Creative Commons (CC)**: A non-profit organization enabling sharing and reuse of creative works.
35+
- **Licenses**: Legal tools that allow creators to specify how their works can be used.
36+
- **Attribution**: Giving credit to the creator of a work, required by most CC licenses.
37+
38+
39+
## Markdown usage
40+
This section provides guidelines for using Markdown in documentation:
41+
- For comprehensive documentation on GitHub-flavored Markdown, refer to the [GitHub Markdown Guide](https://docs.github.com/en/github/writing-on-github/basic-writing-and-formatting-syntax).
42+
- For additional information on the specific Markdown implementation used in Lektor, visit the [Lektor Markdown Documentation](https://www.getlektor.com/docs/content/#markdown).
43+
- Note: Use code block markup for instructions on installation, deployment, and development, especially to write code commands.

themes/vocabulary_theme/templates/layout.html

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
['/contributing-code/github-repo-guidelines', 'GitHub Repo Guidelines'],
8080
['/contributing-code/repo-labels', 'Repository Labels'],
8181
['/contributing-code/foundational-tech', 'Foundational technologies'],
82+
['/contributing-code/documentation-guidelines', 'Documentation Guidelines'],
8283
['/contributing-code/javascript-guidelines', 'JavaScript Guidelines'],
8384
['/contributing-code/python-guidelines', 'Python Guidelines'],
8485
['/contributing-code/translation-guide', 'Translation Guide'],

themes/vocabulary_theme/templates/page-with-toc.html

+2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,11 @@ <h1>{{ this.title }}</h1>
3030
{% if (href == '/contributing-code') %}
3131
<ul>
3232
{% for href, title in [
33+
['/contributing-code/foundational-tech', 'Foundational technologies'],
3334
['/contributing-code/pr-guidelines', 'Pull Request Guidelines'],
3435
['/contributing-code/github-repo-guidelines', 'GitHub Repo Guidelines'],
3536
['/contributing-code/repo-labels', 'Repository Labels'],
37+
['/contributing-code/documentation-guidelines', 'Documentation Guidelines'],
3638
['/contributing-code/javascript-guidelines', 'JavaScript Guidelines'],
3739
['/contributing-code/python-guidelines', 'Python Guidelines'],
3840
['/contributing-code/translation-guide', 'Translation Guide'],

0 commit comments

Comments
 (0)