...

Package heredoc_dot

import "github.com/MakeNowJust/heredoc/dot"
Overview
Index

Overview ▾

Package heredoc_dot is the set of shortcuts for dot import.

It is useful for using in test, but I don't recommend to use this in production code. See https://github.com/golang/lint/issues/179.

For example:

package main

import (
	"fmt"
	"runtime"
	. "github.com/MakeNowJust/heredoc/dot"
)

func main() {
	fmt.Printf(D(`
		GOROOT: %s
		GOARCH: %s
		GOOS  : %s
	`), runtime.GOROOT(), runtime.GOARCH, runtime.GOOS)
}

func D

func D(raw string) string

Shortcut heredoc.Doc.

func Df

func Df(raw string, args ...interface{}) string

Shortcut heredoc.Docf.