blob: 4fdb9e4b6cef9d65d23477cffcee32319cd0570d (
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
|
%D \module
%D [ file=blob-ini,
%D version=2010.04.06,
%D title=\CONTEXT\ \LUA\ Typesetting,
%D subtitle=Initialization,
%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.
\writestatus{loading}{ConTeXt Lua Typesetting / Initialization}
%D This is a prelude to typesetting at the \LUA\ end. The code
%D is already quite old but will only get nice when we are further
%D down the road (close to version 1.00 of \LUATEX). Typesetting in
%D pure \LUA\ sometimes makes sense.
\registerctxluafile{node-typ}{1.001} % experimental
\registerctxluafile{blob-ini}{1.001}
%D For the moment here:
\unprotect
% this one takes simple (utf) strings
\def\widthofstring#1{\ctxcommand{widthofstring(\!!bs#1\!!es)}}
% this one takes anything that can be typeset
\unexpanded\def\setwidthof#1\to#2%
{\bgroup
\setbox\scratchbox\hbox{#1}%
\expanded{\egroup\def\noexpand#2{\the\wd\scratchbox}}}
\protect \endinput
% \starttext
%
% \startluacode
% local b = blobs.new()
% blobs.append(b,"Hello world.\n Here we are.\n\n And Again!")
% blobs.pack(b)
% blobs.write(b)
% \stopluacode
%
% \stoptext
|