1if not modules then modules = { } end modules [ ' scrp-tha ' ] = {
2 version = 1 . 001 ,
3 comment = " companion to scrp-ini.mkiv " ,
4 author = " Hans Hagen, PRAGMA-ADE, Hasselt NL " ,
5 copyright = " PRAGMA ADE / ConTeXt Development Team " ,
6 license = " see context related readme files "
7}
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42local splitters = scripts . splitters
43
44scripts . installmethod {
45 name = " thai " ,
46 splitter = splitters . insertafter ,
47 initializer = splitters . load ,
48 files = {
49
50 " word-th.lua " ,
51 } ,
52 datasets = {
53 default = {
54 inter_word_stretch_factor = 0 . 25 ,
55 } ,
56 } ,
57}
58 |