community/generator
Jamie Hannaford bd629d24f2 Add custom content block 2017-05-23 14:55:29 +02:00
..
Dockerfile Reformat directory structure 2017-05-16 12:26:37 +02:00
README.md Add custom content block 2017-05-23 14:55:29 +02:00
app.go Add custom content block 2017-05-23 14:55:29 +02:00
header.tmpl Reformat directory structure 2017-05-16 12:26:37 +02:00
sig_index.tmpl Add custom content block 2017-05-23 14:55:29 +02:00
sig_list.tmpl Add custom content block 2017-05-23 14:55:29 +02:00

README.md

SIG Doc builder

This script will generate the following documentation files:

sig-*/README.md
sig-list.md

Based off the sigs.yaml metadata file.

How to use

To (re)build documentation for all the SIGs, run these commands:

make all

## Adding custom content to your SIG's README

If your SIG wishes to add custom content, you can do so by placing it within the following code comments:

<!-- BEGIN CUSTOM CONTENT -->

<!-- END CUSTOM CONTENT -->

Anything inside these code comments are saved by the generator and appended to newly generated content. Updating any content outside this block, however, will be overwritten the next time the generator runs.

An example might be:

<!-- BEGIN CUSTOM CONTENT -->
## Upcoming SIG goals
- Do this
- Do that
<!-- END CUSTOM CONTENT -->