mirror of
https://github.com/Dadido3/go-typst.git
synced 2025-04-04 09:13:17 +00:00
- Rename MarshalVariable to MarshalValue - Rename NewVariableEncoder to NewValueEncoder - Rename VariableEncoder to ValueEncoder - Rename VariableMarshaler to ValueMarshaler - Rename MarshalTypstVariable to MarshalTypstValue There are now wrappers which ensure compatibility with code that still uses some of the old functions/types. - Improve image_test.go by adding an assertion - Rename all occurrences of Variable to Value - Remove "TODO: Handle images..." as that's already working with the image wrapper - Update README.md
22 lines
704 B
Go
22 lines
704 B
Go
// Copyright (c) 2025 David Vogel
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
package typst
|
|
|
|
import "io"
|
|
|
|
// This exists for compatibility reasons.
|
|
|
|
// Deprecated: Use NewValueEncoder instead, as this will be removed in a future version.
|
|
func NewVariableEncoder(w io.Writer) *ValueEncoder { return NewValueEncoder(w) }
|
|
|
|
// Deprecated: Use MarshalValue instead, as this will be removed in a future version.
|
|
func MarshalVariable(v any) ([]byte, error) { return MarshalValue(v) }
|
|
|
|
// Deprecated: Use ValueMarshaler interface instead, as this will be removed in a future version.
|
|
type VariableMarshaler interface {
|
|
MarshalTypstVariable() ([]byte, error)
|
|
}
|