blob: bc7fb4d97503bd765f41727b1dc8d013c6ed950f (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
<!DOCTYPE actionsconfig>
<actions>
<action shortcut="" icon="quick_start.png" type="script" tooltip="Kommander Quick Start Dialog" name="tag_quick_start" text="Quick Start Dialog" >
<script output="new" error="message" input="none" >kmdr-executor -c quanta %scriptdir/htmlquickstart.kmdr</script>
</action>
<action shortcut="Alt+Ctrl+B" icon="tag_bold" type="tag" tooltip="Bold &lt;em>" name="tag_b" text="Bold" toggable="true" >
<tooltip>The <b>B</b> element suggests that text be rendered as <i>bold text</i>.
<br>- common attributes
</tooltip>
<tag useDialog="false" ><strong></tag>
<xtag use="true" ></strong></xtag>
</action>
<action shortcut="" icon="tag_i" type="tag" tooltip="Italic &lt;strong>" name="tag_i" text="Italic" >
<tooltip>The <b>I</b> element suggests that text be rendered as <i>italic text</i>.
<br>- common attributes
</tooltip>
<tag useDialog="false" ><em></tag>
<xtag use="true" ></em></xtag>
</action>
<action icon="tag_u" type="tag" name="tag_u" text="Underline" >
<tag><u></tag>
<xtag use="true" ></u></xtag>
<tooltip>The <b>U</b> element, deprecated in HTML 4.0, suggests that text be rendered as <i>underlined text</i>.
<br>- common attributes
</tooltip>
</action>
<action shortcut="Ctrl+Return" icon="tag_br" type="tag" name="tag_br" text="New Line" >
<tag><br></tag>
<tooltip>The <b>BR</b> element forces a <i>break</i> in the current line of text.
<br>- CLEAR=[ left | all | right | none ] (clear floating objects)
<br>- core attributes
</tooltip>
</action>
<action icon="tag_p" type="tag" name="tag_p" text="Paragraph" >
<tag><p></tag>
<xtag use="true" ></p></xtag>
<tooltip>The <b>P</b> element defines a <i>paragraph</i>.
<br>- ALIGN=[ left | center | right | justify ] (horizontal alignment)
<br>- common attributes
</tooltip>
</action>
<action shortcut="Alt+Space" icon="tag_nbsp" type="text" name="tag_nbsp" text="Non Breaking Space" >
<text>&nbsp;</text>
<tooltip>Inserting <b>nbsp</b>.
Non breaking <i>space</i>.
</tooltip>
</action>
<action icon="tag_a" type="tag" name="tag_a" text="Anchor..." >
<tag useDialog="true" ><a></tag>
<xtag use="true" ></a></xtag>
<tooltip>The <b>A</b> element denotes an <i>anchor</i>--a hypertext link or the destination of a link.
The <b>HREF</b> attribute specifies a hypertext link to another resource, such as an <i>HTML</i> document or a <i>JPEG</i> image.
</tooltip>
</action>
<action icon="tag_image" type="tag" name="tag_img" text="Image..." >
<tag useDialog="true" ><img></tag>
<tooltip>The <b>IMG</b> element specifies an <i>inline</i> image.
The required <b>SRC</b> attribute specifies the location of the image.
</tooltip>
</action>
<action shortcut="Ctrl+-" icon="tag_hr" type="tag" name="tag_hr" text="Horizontal Line" >
<tag><hr></tag>
<tooltip>The <b>HR</b> element defines a <i>horizontal rule</i> for visual browsers.
While this element is inherently presentational, it can be used structurally as a section divider.
</tooltip>
</action>
<action icon="tag_comm" type="tag" name="tag_comment" text="Comment" >
<tag><!--</tag>
<xtag use="true" >--></xtag>
<tooltip>The <b>!-- --></b> element <i>comment</i> a text inside.
</tooltip>
</action>
<action icon="div_left" type="tag" name="tag_div_left" text="Align Left" >
<tag><div align="left"></tag>
<xtag use="true" ></div></xtag>
<tooltip>The <b>DIV ALIGN</b>=<i>left</i>
suggests the horizontal alignment for the content of the division to <i>left</i>.
</tooltip>
</action>
<action icon="div_center" type="tag" name="tag_div_center" text="Align Center" >
<tag><div align="center"></tag>
<xtag use="true" ></div></xtag>
<tooltip>The <b>DIV ALIGN</b>=<i>center</i> or <b>CENTER</b>
suggests the horizontal alignment for the content of the division to <i>center</i>.
</tooltip>
</action>
<action icon="div_right" type="tag" name="tag_div_right" text="Align Right" >
<tag><div align="right"></tag>
<xtag use="true" ></div></xtag>
<tooltip>The <b>DIV ALIGN</b>=<i>right</i>
suggests the horizontal alignment for the content of the division to <i>right</i>.
</tooltip>
</action>
<action icon="div_justify" type="tag" name="tag_div_justify" text="Align Justify" >
<tag><div align="justify"></tag>
<xtag use="true" ></div></xtag>
<tooltip>The <b>DIV ALIGN</b>=<i>justify</i>
suggests the horizontal alignment for the content of the division to <i>justify</i>.
</tooltip>
</action>
<action shortcut="" icon="tag_font.png" type="tag" tooltip="span text" name="user_VKbFslb73x" text="Span" >
<tag useDialog="true" ><span></tag>
<xtag use="true" ></span></xtag>
</action>
</actions>
|