package svg
import "github.com/tdewolff/minify/svg"
Package svg minifies SVG1.1 following the specifications at http://www.w3.org/TR/SVG11/.
Index ¶
- func Minify(m minify.Minifier, _ string, w io.Writer, r io.Reader) error
- type Token
- type TokenBuffer
Examples ¶
Functions ¶
func Minify ¶
Minify minifies SVG data, it reads from r and writes to w.
Code:
Example¶
{
m := minify.New()
m.AddFunc("image/svg+xml", Minify)
m.AddFunc("text/css", css.Minify)
if err := m.Minify("image/svg+xml", os.Stdout, os.Stdin); err != nil {
fmt.Println("minify.Minify:", err)
}
}
Types ¶
type Token ¶
type Token struct { xml.TokenType Hash svg.Hash Data []byte AttrVal []byte // contains filtered or unexported fields }
Token is a single token unit with an attribute value (if given) and hash of the data.
type TokenBuffer ¶
type TokenBuffer struct {
// contains filtered or unexported fields
}
TokenBuffer is a buffer that allows for token look-ahead.
func NewTokenBuffer ¶
func NewTokenBuffer(l *xml.Lexer) *TokenBuffer
NewTokenBuffer returns a new TokenBuffer.
func (*TokenBuffer) Peek ¶
func (z *TokenBuffer) Peek(pos int) *Token
Peek returns the ith element and possibly does an allocation. Peeking past an error will panic.
func (*TokenBuffer) Shift ¶
func (z *TokenBuffer) Shift() *Token
Shift returns the first element and advances position.
Source Files ¶
- Version
- v1.1.0 (latest)
- Published
- Nov 2, 2015
- Platform
- js/wasm
- Imports
- 8 packages
- Last checked
- 2 hours ago –
Tools for package owners.