mirror of
https://github.com/sbrow/ps.git
synced 2025-12-29 18:47:38 -05:00
Changed readme template
Updated documentation
This commit is contained in:
@@ -1,11 +1,35 @@
|
||||
# runner
|
||||
[](https://godoc.org/github.com/sbrow/runner) [](https://travis-ci.org/sbrow/runner) [](https://coveralls.io/github/sbrow/runner?branch=master) [](https://goreportcard.com/report/github.com/sbrow/runner)
|
||||
[](https://godoc.org/github.com/sbrow/runner) [](https://travis-ci.org/sbrow/runner) [](https://coveralls.io/github/sbrow/runner?branch=master) [](https://goreportcard.com/report/github.com/sbrow/ps/runner)
|
||||
|
||||
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.
|
||||
`import "github.com/sbrow/ps/runner"`
|
||||
|
||||
## Installation
|
||||
```bash
|
||||
* [Overview](#pkg-overview)
|
||||
* [Installation](pkg-installation)
|
||||
* [Documentation](#pkg-doc)
|
||||
|
||||
## <a name="pkg-overview">Overview</a>
|
||||
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.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## <a name="pkg-installation">Installation</a>
|
||||
```sh
|
||||
$ go get -u github.com/sbrow/ps/runner
|
||||
```
|
||||
<!---
|
||||
|
||||
|
||||
--->
|
||||
|
||||
|
||||
## <a name="pkg-doc">Documentation</a>
|
||||
For full Documentation please visit https://godoc.org/github.com/sbrow/ps/runner
|
||||
- - -
|
||||
|
||||
|
||||
Generated by [godoc2md](http://godoc.org/github.com/davecheney/godoc2md)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
//go:generate godocdown -template ../.godocdown.template -output=README.md
|
||||
//go:generate sh -c "godoc2md -template ../.doc.template github.com/sbrow/ps/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
|
||||
@@ -16,7 +16,8 @@ import (
|
||||
"strings"
|
||||
)
|
||||
|
||||
// Windows is the runner for Visual Basic Scripts.
|
||||
// Windows is the runner Windows Operating Systems.
|
||||
// It runs Visual Basic Scripts.
|
||||
var Windows = Runner{
|
||||
Cmd: "cscript.exe",
|
||||
Args: []string{"/nologo"},
|
||||
|
||||
Reference in New Issue
Block a user