We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad29045 commit b7a6d77Copy full SHA for b7a6d77
.gitignore
@@ -13,3 +13,5 @@
13
14
# Dependency directories (remove the comment below to include it)
15
# vendor/
16
+
17
+*.zip
Makefile
@@ -0,0 +1,10 @@
1
+WGET := $(shell which wget)
2
3
+.PHONY: data
4
+data: data/ucd.all.flat.zip data/ucd.all.grouped.zip
5
6
+data/ucd.all.flat.zip:
7
+ $(WGET) -c https://www.unicode.org/Public/UCD/latest/ucdxml/ucd.all.flat.zip -O $@
8
9
+data/ucd.all.grouped.zip:
10
+ $(WGET) -c https://www.unicode.org/Public/UCD/latest/ucdxml/ucd.all.grouped.zip -O $@
data/.gitkeep
go.mod
@@ -0,0 +1,3 @@
+module github.com/edipermadi/unicode
+go 1.16
scripts/generate/main.go
0 commit comments