mirror of
https://github.com/golang/go
synced 2024-11-05 15:56:12 -07:00
657575a564
Commands like .code now have a TemplateCmd method that returns the original command. The Text struct now has a Raw field set when Pre==true. It contains the original indented text, without the tab "fixing". This helps building tooling that reformats or rewrites present files. For golang/go#33955. Change-Id: Ieb036e8b509a4531d120c597b19f2158306a5352 Reviewed-on: https://go-review.googlesource.com/c/tools/+/222845 Run-TryBot: Russ Cox <rsc@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rob Pike <r@golang.org>
25 lines
630 B
Go
25 lines
630 B
Go
// Copyright 2012 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package present
|
|
|
|
import "strings"
|
|
|
|
func init() {
|
|
Register("caption", parseCaption)
|
|
}
|
|
|
|
type Caption struct {
|
|
Cmd string // original command from present source
|
|
Text string
|
|
}
|
|
|
|
func (c Caption) PresentCmd() string { return c.Cmd }
|
|
func (c Caption) TemplateName() string { return "caption" }
|
|
|
|
func parseCaption(_ *Context, _ string, _ int, text string) (Elem, error) {
|
|
text = strings.TrimSpace(strings.TrimPrefix(text, ".caption"))
|
|
return Caption{text, text}, nil
|
|
}
|