diff --git a/README.md b/README.md index d1271da..b3195ff 100644 --- a/README.md +++ b/README.md @@ -48,11 +48,6 @@ For both Interpolator constructors, the caller must provide a Resolver for resolving variable names to their associated values. - - - - - ### func [New](/src/target/interp.go?s=1089:1123#L32) ``` go func New(g Resolver) *Interpolator @@ -69,9 +64,6 @@ NewWithFormat returns a new Interpolator for the given Resolver and specified VarFormat. - - - ### func (\*Interpolator) [Interpolate](/src/target/interp.go?s=1807:1867#L50) ``` go func (i *Interpolator) Interpolate(s string) (string, error) @@ -86,8 +78,6 @@ Interpolate continues this process until it no longer finds a variable expression in the provided string, or an error is encountered. - - ## type [Resolver](/src/target/interp.go?s=211:486#L11) ``` go type Resolver interface { @@ -100,14 +90,6 @@ type Resolver interface { Resolver is used by Interpolator to lookup values for interpolated variables. - - - - - - - - ## type [Value](/src/target/interp.go?s=2639:2661#L85) ``` go type Value interface{} @@ -124,14 +106,6 @@ the following guidelines: * Otherwise the value is passed through fmt.Sprintf("%v") - - - - - - - - ## type [VarFormat](/src/target/varfmt.go?s=175:405#L12) ``` go type VarFormat struct {