Commit b0805699 authored by Craig Norris's avatar Craig Norris

Merge branch 'docs-aqualls-frontmatter-test' into 'master'

Initial idea for a front matter test

See merge request gitlab-org/gitlab!52844
parents 226e5ee1 3db6586d
...@@ -96,18 +96,18 @@ belongs to, as well as an information block as described below: ...@@ -96,18 +96,18 @@ belongs to, as well as an information block as described below:
https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
``` ```
For example, the following metadata would be at the beginning of a product For example:
documentation page whose content is primarily associated with the Audit Events
feature:
```yaml ```yaml
--- ---
stage: Monitor stage: Example Stage
group: APM group: Example Group
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
--- ---
``` ```
If you need help determining the correct stage, read [Ask for help](workflow.md#ask-for-help).
### Document type metadata ### Document type metadata
Originally discussed in [this epic](https://gitlab.com/groups/gitlab-org/-/epics/1280), Originally discussed in [this epic](https://gitlab.com/groups/gitlab-org/-/epics/1280),
......
...@@ -65,13 +65,15 @@ To update GitLab documentation: ...@@ -65,13 +65,15 @@ To update GitLab documentation:
NOTE: NOTE:
Work in a fork if you do not have Developer access to the GitLab project. Work in a fork if you do not have Developer access to the GitLab project.
Request help from the Technical Writing team if you: ### Ask for help
Ask for help from the Technical Writing team if you:
- Need help to choose the correct place for documentation. - Need help to choose the correct place for documentation.
- Want to discuss a documentation idea or outline. - Want to discuss a documentation idea or outline.
- Want to request any other help. - Want to request any other help.
To request help: To identify someone who can help you:
1. Locate the Technical Writer for the relevant 1. Locate the Technical Writer for the relevant
[DevOps stage group](https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments). [DevOps stage group](https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments).
......
...@@ -18,6 +18,18 @@ then ...@@ -18,6 +18,18 @@ then
((ERRORCODE++)) ((ERRORCODE++))
fi fi
# Documentation pages need front matter for tracking purposes.
echo '=> Checking documentation for front matter...'
echo
no_frontmatter=$(find doc -name "*.md" -exec head -n1 {} \; | grep -v --count -- ---)
if [ $no_frontmatter -ne 0 ]
then
echo '✖ ERROR: These documentation pages need front matter. See https://docs.gitlab.com/ee/development/documentation/index.html#stage-and-group-metadata for how to add it.' >&2
find doc -name "*.md" -exec sh -c 'if (head -n 1 "{}" | grep -v -- --- >/dev/null); then echo "{}"; fi' \; 2>&1
echo
((ERRORCODE++))
fi
# Test for non-standard spaces (NBSP, NNBSP) in documentation. # Test for non-standard spaces (NBSP, NNBSP) in documentation.
echo '=> Checking for non-standard spaces...' echo '=> Checking for non-standard spaces...'
echo echo
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment