1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Golang】heredoc で CLI のヘルプ表示のコードをインデント付きで読みやすくする【ヒアドキュメントのインデント】

Last updated at Posted at 2022-11-07

複数行にまたがる文字列のインデント

Go 言語(以下 Golang)で、複数行の文字列を `(バックティック、バッククォート)で使うも、可読性のためにインデントさせたい

しかし、インデントすると出力も必要以上にインデントが入ってしまう、あたりまえ体操問題。

func main() {
	fmt.Printf("%#v", `
		やぁ、世界!
		Hello, world!
	`)
}
// Want:
// 
//	やぁ、世界!
//	Hello, world!
// Got:
// 
//		やぁ、世界!
//		Hello, world!

「golang ヒアドキュメント インデント」でググっても求める形でヒットしなかったので、自分のググラビリティとして。

TL; DR (今北産業)

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

  2. GitHub CLI(gh コマンド)でも利用されているパッケージ。

  3. CLI アプリなどのヘルプ表示に便利。

    利用例
    package main
    
    import (
    	"fmt"
    
    	"github.com/MakeNowJust/heredoc/v2"
    )
    
    func main() {
    	// インデントさせたい
    	fmt.Println(`やぁ、世界!
    Hello, world!`)
    
    	// インデントさせると出力がズレる
    	fmt.Println(`やぁ、世界!
    		Hello, world!`)
    
    	// インデントさせても出力はズレない
    	fmt.Println(heredoc.Doc(`
    		やぁ、世界!
    		Hello, world!`),
    	)
    }
    // Output:
    // やぁ、世界!
    // Hello, world!
    // やぁ、世界!
    // 		Hello, world!
    // やぁ、世界!
    // Hello, world!
    

参考文献

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?