blob: 3eb89191470871f892f1c464074d82c21428717e (
plain)
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
68
69
70
|
%D \module
%D [ file=lang-url,
%D version=2008.01.22, % used to be lang-mis
%D title=\CONTEXT\ Language Macros,
%D subtitle=Language Options,
%D author=Hans Hagen,
%D date=\currentdate,
%D copyright={PRAGMA / Hans Hagen \& Ton Otten}]
%C
%C This module is part of the \CONTEXT\ macro||package and is
%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
%C details.
\writestatus{loading}{Context Language Macros / URL}
\loadmarkfile{lang-url}
\unprotect
\ifx\urlsplitmode\undefined \chardef\urlsplitmode\zerocount \fi % not supported in mkiv
%D \macros
%D {hyphenatedurl}
%D
%D For those who want to put full \URL's in a text, we offer
%D
%D \startbuffer
%D \hyphenatedurl{http://optimist.optimist/optimist/optimist.optimist#optimist}
%D \stopbuffer
%D
%D \typebuffer
%D
%D which breaks at the appropriate places. Watch the \type{#}
%D hack.
%D
%D When passed as argument, like in \type {\goto}, one needs
%D to substitute a \type {\\} for each \type{#}.
%D
%D \startbuffer
%D \hyphenatedurl{http://this.is.a.rather/strange/reference#indeed}
%D \stopbuffer
%D
%D \typebuffer
\ifx\hyphenatedurl\undefined \let\hyphenatedurl\firstofoneargument \fi
%D \macros
%D {hyphenatedfilename}
%D
%D For the moment we treat filenames in a similar way,
%D
%D \starttyping
%D \hyphenatedfilename{here/there/filename.suffix}
%D \stoptyping
\ifx\hyphenatedfilename\undefined \let\hyphenatedfilename\hyphenatedurl \fi
% \def\test#1%
% {\dontleavehmode
% \begingroup
% \tttf
% \hyphenatedurl {%
% \letterampersand #1\letterampersand #1\letterampersand #1\letterampersand #1\letterampersand
% \letterhash #1\letterhash #1\letterpercent #1\letterslash #1\letterampersand
% }%
% \endgroup}
% \dorecurse{100}{\test{a} \test{ab} \test{abc} \test{abcd} \test{abcde} \test{abcdef}}
\protect \endinput
|