blob: 3b8298f799bdf5d14dedbaeb087f99caa1594508 (
plain)
1
2
3
4
5
6
7
8
9
10
|
-- this is an example pitch accent dictionary
-- set these
.param set :dict 'pitch_accent'
.param set :lang null
-- dictionary content
insert into ingest (expression, reading, glossary_tags) values
('浮上', 'ふじょう', 'pitch:0'),
('成る', 'なる', 'pitch:1');
|