Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion harfbuzz/ot_hangul.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package harfbuzz
import (
ot "github.com/go-text/typesetting/font/opentype"
"github.com/go-text/typesetting/font/opentype/tables"
ucd "github.com/go-text/typesetting/unicodedata"
ucd "github.com/go-text/typesetting/internal/unicodedata"
)

// ported from harfbuzz/src/hb-ot-shape-complex-hangul.cc Copyright © 2013 Google, Inc. Behdad Esfahbod
Expand Down
2 changes: 1 addition & 1 deletion harfbuzz/unicode.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package harfbuzz
import (
"unicode"

ucd "github.com/go-text/typesetting/unicodedata"
ucd "github.com/go-text/typesetting/internal/unicodedata"
)

// uni exposes some lookup functions for Unicode properties.
Expand Down
2 changes: 1 addition & 1 deletion harfbuzz/unicode_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package harfbuzz
import (
"testing"

"github.com/go-text/typesetting/internal/unicodedata"
"github.com/go-text/typesetting/language"
"github.com/go-text/typesetting/unicodedata"
)

// ported from harfbuzz/test/api/test-unicode.c Copyright © 2011 Codethink Limited, Google, Inc. Ryan Lortie, Behdad Esfahbod
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion segmenter/segmenter.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ package segmenter
import (
"unicode"

ucd "github.com/go-text/typesetting/unicodedata"
ucd "github.com/go-text/typesetting/internal/unicodedata"
)

// breakAttr is a flag storing the break properties between two runes of
Expand Down
2 changes: 1 addition & 1 deletion segmenter/unicode14_rules.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package segmenter
import (
"unicode"

ucd "github.com/go-text/typesetting/unicodedata"
ucd "github.com/go-text/typesetting/internal/unicodedata"
)

// Apply the Line Breaking Rules and returns the computed break opportunity
Expand Down
2 changes: 1 addition & 1 deletion segmenter/unicode29_rules.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
package segmenter

import (
ucd "github.com/go-text/typesetting/unicodedata"
ucd "github.com/go-text/typesetting/internal/unicodedata"
)

// -----------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion shaping/input.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"github.com/go-text/typesetting/font"
ot "github.com/go-text/typesetting/font/opentype"
"github.com/go-text/typesetting/harfbuzz"
"github.com/go-text/typesetting/internal/unicodedata"
"github.com/go-text/typesetting/language"
"github.com/go-text/typesetting/unicodedata"
"golang.org/x/image/math/fixed"
"golang.org/x/text/unicode/bidi"
)
Expand Down