You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Andrea Spacca 82493d6dcb add GDrive provider support (#118) 5 years ago
..
README.md add GDrive provider support (#118) 5 years ago
sample-makefile add GDrive provider support (#118) 5 years ago
snipdoc.awk add GDrive provider support (#118) 5 years ago

README.md

Snipdoc

Snipdoc is a simple tool for maintaining package documentation that contains code samples.

  1. Create a subdirectory of your package to hold the following files. “internal” is a good name.

  2. Write a template file (for example, “doc.template”) with the text of your package documentation. The file should look exactly like you want your doc.go file to look, except for code snippets. Instead of embedding a code snippet, write a line consisting solely of

[NAME]

for your choice of NAME.

  1. Write a snippets file (for example, “doc-snippets.go”) as a valid Go source file. Begin each snippet you’d like to appear in your package docs with //[ NAME and end it with //].

  2. Construct your doc.go file with the command

    awk -f snipdoc.awk doc-snippets.go doc.template
    

    The file “sample-makefile” in this directory verifies that the snippets file compiles and safely constructs a doc.go file.