Warning, /sdk/pology/spec/qtrich.l1 is written in an unsupported language. File is not indexed.

0001 # Lightweight specification of Qt rich text.
0002 
0003 # FIXME : Attributes are only partially listed, add more.
0004 
0005 # Tags which are subset of HTML.
0006 html : dir;
0007 a : href target title;
0008 b :;
0009 big :;
0010 blockquote :;
0011 body : dir;
0012 br :;
0013 center :;
0014 cite :;
0015 code :;
0016 dd :;
0017 div : align dir;
0018 dl : align dir;
0019 dt : align dir;
0020 em :;
0021 font : color face size;
0022 h1 : align dir;
0023 h2 : align dir;
0024 h3 : align dir;
0025 h4 : align dir;
0026 h5 : align dir;
0027 h6 : align dir;
0028 head :;
0029 hr :;
0030 i :;
0031 img : src width height alt name;
0032 li :;
0033 meta : content name;
0034 nobr :;
0035 ol : type;
0036 p : align dir;
0037 pre :;
0038 s :;
0039 small :;
0040 span :;
0041 strong :;
0042 style : type;
0043 sub :;
0044 sup :;
0045 table : align bgcolor border cellspacing cellpadding width;
0046 td : align valign colspan rowspan width bgcolor dir;
0047 th : align valign colspan rowspan width bgcolor;
0048 tr :;
0049 tt :;
0050 u :;
0051 ul : type;
0052 var :;
0053 
0054 # Dummy tag for common attributes.
0055 # FIXME : Really all have title attribute?
0056 pe-common-attrib : style title;
0057 
0058 # Old top level tag (deprecated in Qt 4.x in favor of <html>?)
0059 qt :;