Skip to content

Commit

Permalink
Liquid API rev
Browse files Browse the repository at this point in the history
  • Loading branch information
osteele committed Jul 6, 2017
1 parent 1d5db9d commit acde67c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plugins/avatar.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func avatarTag(ctx render.Context) (string, error) {
user string
size interface{} = 40
)
argsline, err := ctx.ParseTagArgs()
argsline, err := ctx.ExpandTagArg()
if err != nil {
return "", err
}
Expand Down
2 changes: 1 addition & 1 deletion plugins/gist.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func init() {
}

func gistTag(ctx render.Context) (string, error) {
argsline, err := ctx.ParseTagArgs()
argsline, err := ctx.ExpandTagArg()
if err != nil {
return "", err
}
Expand Down
2 changes: 1 addition & 1 deletion tags/highlight.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

func highlightTag(ctx render.Context) (string, error) {
args, err := ctx.ParseTagArgs()
args, err := ctx.ExpandTagArg()
if err != nil {
return "", err
}
Expand Down
2 changes: 1 addition & 1 deletion tags/include.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func (tc tagContext) includeRelativeTag(ctx render.Context) (string, error) {
}

func includeFromDir(ctx render.Context, dirname string) (string, error) {
argsline, err := ctx.ParseTagArgs()
argsline, err := ctx.ExpandTagArg()
if err != nil {
return "", err
}
Expand Down

0 comments on commit acde67c

Please sign in to comment.