-
Notifications
You must be signed in to change notification settings - Fork 0
/
doc.go
54 lines (53 loc) · 2.19 KB
/
doc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright 2013 Martin Hilton <[email protected]>
//
// Permission to use, copy, modify, and distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
// Package config provides support for reading simple configuration files.
// The format of the configuration files is similar to those used by git.
//
// Configuration files parsed by this package must be UTF-8 encoded.
// Configuration files consist of sections and keys.
//
// A section starts with its name, and an optional string parameter in
// square brackets and stops at the start of the next section.
//
// Keys are specified by a name, optionally (but usually) followed an '='
// and a value. Values are either specified as plain text, a string or
// a raw string. Plain text values are taken to be the characters between
// the '=' and the end of the line (or start of comment) with any leading
// or trailing whitespace stripped.
//
// Comments start with either the ';' or '#' characters and continue to
// the end of the line. Blank lines, or those consisting only of comments
// are ignored.
//
// Strings are used for string values and parameters, they must not contain
// an embedded new line. Strings support the following escape sequences.
// \" "
// \\ \
// \n newline
// \r carriage
// \t tab
//
// Raw strings start and end with '`', they are a literal copy of all the
// characters, including newlines, in between.
//
// An example configuration file is:
// # Example file supported by config
//
// ; Global options
// debug = true
//
// [host "example.org"]
// port = 8080
// user-name = example
package config