mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-10 10:30:57 -06:00
* use kingpin for help and new commands, set up dummy command for noms blob * document existing commands using kingpin * remove noms-get and noms-set in favor of new noms blob command * normalize bool flags in tests, remove redundant cases that kingpin now handles * add kingpin to vendor files * make profile flags global * move --verbose and --quiet to global flags
Go's text/template package with newline elision
This is a fork of Go 1.4's text/template package with one addition: a backslash immediately after a closing delimiter will delete all subsequent newlines until a non-newline.
eg.
{{if true}}\
hello
{{end}}\
Will result in:
hello\n
Rather than:
\n
hello\n
\n