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
|
/*********************************************************************************
File: allcaps.gdl
Sample GDL file for creating small caps.
Compile with Std SILDoulos (stddr.ttf).
*********************************************************************************/
#include "stddef.gdh"
Bidi = false;
table(glyph)
clsUpperCase = codepoint("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
clsLowerCase = codepoint("abcdefghijklmnopqrstuvwxyz");
endtable; // glyph
table(sub)
clsLowerCase > clsUpperCase;
endtable;
|