Paragraph
_p method specifies a paragraph.
_p( "align='(left|right|center)' mode='(wrap|nowrap)'" );
a
anchor
br
do
em|strong|b|i|u|small|big
fieldset
img
input
select
table
p_();
'align' attribute specifies tha alignment of text. The default value is left. If 'mode' attribute is wrap, the line break is inserted to form multiple lines in word-wrap. Otherwise, if 'mode' attribute is nowrap, the line is not wrapped. If there is no 'mode' attribute specified, the wrap mode is inheritated
from the previous paragraph. wrap is the default value of the first paragraph in a card.
Table
Together with _tr and _td methods, _table method defines a table in a card.
_table( "title='value' align='alignment' columns='number'" );
tr +
table_();
'title' attribute specifies table's title. 'align' attribute specifies the alignment of text for column. The center alignment has the value "C", left alignment has the value "L", right alignment has the value "R". "LRC" represents that the first column has the alignment left, the second column has the alignment
right, and the third column has the alignment center. The default alignment is left for left-to-right language.
'columns' attribute specifies the number of columns of a table. It is an attribute required for _table method.
_tr method specifies a table row. The row may be empty. Except id and class attributes, there are no extra attributes.
_tr();
td +
tr_();
_td method specifies a table data cell. A data cell may be empty.
_td( "xml:lang='lang'" );
a
anchor
br
img
em|strong|b|i|u|small|big
td_();