| YaST2 Developers Documentation: yast2 | ![]() |
![]() functions files intro |
Make a HTML paragraph from a text i.e. embed a text into * [p]...[/p]
Make a HTML heading from a text i.e. embed a text into [h3]...[/h3] Note: There is only one heading level here since we don't have any more fonts anyway.
Make a HTML link For example [a href="..."]...[/a] You still need to embed that into a paragraph or heading etc.!
Start a HTML (unsorted) list For example [ul] You might consider using HTML::list() instead which takes a list of items and does all the rest by itself.
End a HTML (unsorted) list For example [/ul] You might consider using HTML::list() instead which takes a list of items and does all the rest by itself.
Make a HTML list item For example embed a text into [li][p]...[/p][/li] You might consider using HTML::list() instead which takes a list of items and does all the rest by itself.
Make a HTML (unsorted) list from a list of strings [ul] [li]...[/li] [li]...[/li] ... [/ul]
Make a HTML (unsorted) colored list from a list of strings [ul] [li][font color="..."]...[/font][/li] [li][font color="..."]...[/font][/li] ... [/ul]
Colorize a piece of HTML code i.e. embed it into [font color="..."]...[/font] You still need to embed that into a paragraph or heading etc.!
Make a piece of HTML code bold i.e. embed it into [b]...[/b] You still need to embed that into a paragraph or heading etc.!
Make a forced HTML line break
Make a number of forced HTML line breaks
|
| YaST2 Developers Documentation | ![]() |