1
2
3
4
5
6
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
%D \module
%D [ file=lang-wrd,
%D version=2006.XX.XX,
%D title=\CONTEXT\ Language Macros,
%D subtitle=Checking,
%D author=Hans Hagen,
%D date=\currentdate,
%D copyright={PRAGMA ADE \& \CONTEXT\ Development Team}]
%C
%C This module is part of the \CONTEXT\ macro||package and is
%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
%C details.
%D Experimental.
\writestatus{loading}{ConTeXt Language Macros / Checking}
\registerctxluafile{lang-wrd}{1.001}
\unprotect
% \loadspellchecklist[en][words-en.txt]
% \loadspellchecklist[us][words-en.txt]
% \loadspellchecklist[nl][words-nl.txt]
% \setupspellchecking[state=start,method=1]
%
% \setupspellchecking[state=start,method=2]
% ...
% \typefile{\jobname.words}
%
% beware, maybe some day we will honour grouping
%
% 1: spell checking
% 2: word counting
% 3: language coloring
\installcorenamespace{spell}
\installdirectcommandhandler \??spell {spellchecking}
\appendtoks
\doifelse{\directspellcheckingparameter\c!state}\v!start
{\ctxcommand{enablespellchecking { method = "\directspellcheckingparameter\c!method", list = "\directspellcheckingparameter\c!list" }}}
{\ctxcommand{disablespellchecking()}}%
\to \everysetupspellchecking
\unexpanded\def\loadspellchecklist
{\dodoubleempty\lang_spellchecking_load_list}
\def\lang_spellchecking_load_list[#1][#2]%
{\ctxcommand{loadspellchecklist("#1","#2")}}
\setupspellchecking
[\c!state=\v!stop,
\c!method=1,
\c!list=]
\definecolor[word:yes] [g=.75]
\definecolor[word:no] [r=.75]
%definecolor[word:unset] [s=.75]
\definecolor[word:en] [b=.75]
\definecolor[word:de] [r=.75]
\definecolor[word:nl] [g=.75]
\definecolor[word:unknown][r=.75,g=.75]
\protect \endinput
|