diff --git a/doc.go b/doc.go index ebd2db1..becb5aa 100644 --- a/doc.go +++ b/doc.go @@ -1,3 +1,5 @@ +//go:generate sh -c "godoc2md -template ./.doc.template github.com/sbrow/ps/v2 > README.md" + // Package ps is a rudimentary API between Adobe Photoshop CS5 and Golang. // The interaction between the two is implemented using Javascript/VBScript. // diff --git a/ps.go b/ps.go index 46ba0d3..1d2105f 100644 --- a/ps.go +++ b/ps.go @@ -1,5 +1,3 @@ -//go:generate sh -c "godoc2md -template ./.doc.template github.com/sbrow/ps > README.md" - package ps import ( diff --git a/runner/README.md b/runner/README.md index ae56712..e0094b4 100644 --- a/runner/README.md +++ b/runner/README.md @@ -1,3 +1,4 @@ +![logo](logo.png) # runner [![GoDoc](https://godoc.org/github.com/sbrow/ps/runner?status.svg)](https://godoc.org/github.com/sbrow/runner) [![Build Status](https://travis-ci.org/sbrow/runner.svg?branch=master)](https://travis-ci.org/sbrow/runner) [![Coverage Status](https://coveralls.io/repos/github/sbrow/runner/badge.svg?branch=master)](https://coveralls.io/github/sbrow/runner?branch=master) [![Go Report Card](https://goreportcard.com/badge/github.com/sbrow/ps/runner)](https://goreportcard.com/report/github.com/sbrow/ps/runner) diff --git a/runner/runner.go b/runner/runner.go index c50aed2..e4e29b4 100644 --- a/runner/runner.go +++ b/runner/runner.go @@ -1,10 +1,10 @@ -//go:generate sh -c "godoc2md -template ../.doc.template github.com/sbrow/ps/runner > README.md" +//go:generate sh -c "godoc2md -template ../.doc.template github.com/sbrow/ps/v2/runner > README.md" // Package runner runs the non-go code that Photoshop understands, // and passes it to back to the go program. Currently, this is // primarily implemented through Adobe Extendscript, but hopefully // in the future it will be upgraded to a C++ plugin. -package runner +package runner // import "github.com/sbrow/ps/v2/runner" import ( "bytes"