GithubHelp home page GithubHelp logo

Comments (5)

orodley avatar orodley commented on August 15, 2024

This is because you are using a backquoted string - escape sequences (like \x) aren't interpreted in backquoted strings. You need to use a double quoted string instead.

from cli.

dufferzafar avatar dufferzafar commented on August 15, 2024

Oh, thanks. This is my first time with a Go application so I don't know most of the things yet.

But, the problem is If I use a double quoted string, I can't make it multi-line (can I?)
I used just a single line for brevity, the actual template is this:

var AppHelpTemplate = `\x1b[33;1m{{.Name}} - {{.Usage}}\x1b[0m

Version: {{.Version}}

Usage:
    {{.Name}} [global options] [cheatsheet] <command> [<args>]


Commands:
    {{range .Commands}}{{.Name}}{{with .ShortName}}, {{.}}{{end}}{{ "\t" }}{{.Usage}}
    {{end}}

Global Options:
    {{range .Flags}}{{.}}
    {{end}}
`

from cli.

nemith avatar nemith commented on August 15, 2024

You can use double quoted strings with + to concatenate them together.

var AppHelpTemplate = "\x1b[33;1m{{.Name}} - {{.Usage}}\x1b[0m" + `

Version: {{.Version}}

Usage:
{{.Name}} [global options] [cheatsheet] []

Commands:
{{range .Commands}}{{.Name}}{{with .ShortName}}, {{.}}{{end}}{{ "\t"
}}{{.Usage}}
{{end}}

Global Options:
{{range .Flags}}{{.}}
{{end}}

Examples:
{{.Name}} git Shows git cheatsheet

{{.Name}} -e at         Create a new cheatsheet named at

`

On Sat, Jul 5, 2014 at 2:36 AM, Shadab Zafar [email protected]
wrote:

Oh, thanks. This is my first time with a Go application so I don't know
most of the things yet.

But, the problem is If I use a double quoted string, I can't make it
multi-line (can I?)
I used just a single line for brevity, the actual template is this:

var AppHelpTemplate = `\x1b[33;1m{{.Name}} - {{.Usage}}\x1b[0m
Version: {{.Version}}
Usage: {{.Name}} [global options] [cheatsheet] []

Commands: {{range .Commands}}{{.Name}}{{with .ShortName}}, {{.}}{{end}}{{ "\t" }}{{.Usage}} {{end}}
Global Options: {{range .Flags}}{{.}} {{end}}
Examples: {{.Name}} git Shows git cheatsheet
{{.Name}} -e at Create a new cheatsheet named at`


Reply to this email directly or view it on GitHub
#105 (comment).

from cli.

dufferzafar avatar dufferzafar commented on August 15, 2024

Ah! Thanks a lot @nemith :)

from cli.

codegangsta avatar codegangsta commented on August 15, 2024

problem solved. Thanks @nemith for the guidance

from cli.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.