Categorygithub.com/MakeNowJust/heredoc/v2
modulepackage
2.0.1
Repository: https://github.com/makenowjust/heredoc.git
Documentation: pkg.go.dev

# README

heredoc

Version Build Status GoDoc

About

Package heredoc provides the here-document with keeping indent.

Import

import "github.com/MakeNowJust/heredoc/v2"

Example

package main

import (
	"fmt"

	"github.com/MakeNowJust/heredoc/v2"
)

func main() {
	fmt.Println(heredoc.Doc(`
		Lorem ipsum dolor sit amet, consectetur adipisicing elit,
		sed do eiusmod tempor incididunt ut labore et dolore magna
		aliqua. Ut enim ad minim veniam, ...
	`))
	// Output:
	// Lorem ipsum dolor sit amet, consectetur adipisicing elit,
	// sed do eiusmod tempor incididunt ut labore et dolore magna
	// aliqua. Ut enim ad minim veniam, ...
	//
}

API Document

License

This software is released under the MIT License, see LICENSE.

# Packages

Package heredoc_dot is the set of shortcuts for dot import.

# Functions

Doc returns un-indented string as here-document.
Docf returns unindented and formatted string as here-document.