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, i.e. [a href="..."]...[/a] You still need to embed that into a paragraph or heading etc.!
Start a HTML (unsorted) list, i.e. [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, i.e. [/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, i.e. 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, i.e. [ul] [li]...[/li] [li]...[/li] ... [/ul]
Make a HTL (unsorted) colored list from a list of strings, i.e. [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, i.e. [br]
Make a number of forced HTML line breaks, i.e. [br]
|
YaST2 Developers Documentation | ![]() |