转到模板和制表符

go template and tab character

我想使用 go 模板语法在字符串中插入制表符。

基本上这是我的尝试:

{{ .title }}\t{{ .description }}

现在正在打印的是“\t”,而不是实际的制表符

感谢您的帮助!

\t替换为制表符或使用{{"\t"}}

Run it on the playground.

(h/t 到 icza 以简化编辑)