API
pyhtml.create_tag
Create a new PyHTML tag definition.
PyHTML already provides definitions for all standard HTML tags, so you don't need to use this unless you are using a JavaScript library that defines custom HTML elements.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
the name of the tag. This is used during rendering, as
|
required |
base
|
type[Tag]
|
the base class to use for the custom tag. The new tag will inherit from this base class. |
Tag
|
Returns:
Type | Description |
---|---|
type[Tag]
|
type[Tag]: a new tag definition. |
pyhtml.Tag
Base tag class
_get_default_attributes
Returns the default attributes for the tag given the specified attributes.
This is overridden by child classes to return a dictionary of default attributes that are applied to the class.
_get_default_render_options
Returns the default rendering options for this tag.
This can be used to control how the element is rendered by default.
For example a <p>
element can specify spacing=""
so that its child
elements are not spaced out (thereby
reducing anger from Tom7).
When the user provides their own options, they will be merged with the
element's default options using the Options.union
method.
_get_tag_pre_content
Return "pre-content" for the tag.
This is used by the <html>
tag to add a <!DOCTYPE html>
before the
tag.
_escape_children
Returns whether the contents of the element should be escaped, or rendered plainly.
By default, all string content should be escaped to prevent security
vulnerabilities such as XSS, but this is disabled for certain tags such
as <script>
.
_render
Renders tag and its children to a list of strings where each string is a single line of output.
Parameters
indent : str string to use for indentation options : FullOptions rendering options skip_indent : bool whether to skip indentation for this element
Returns
list[str] list of lines of output
pyhtml.SelfClosingTag
pyhtml.WhitespaceSensitiveTag
pyhtml.RenderOptions
dataclass
PyHTML rendering options.
indent
class-attribute
instance-attribute
String to add to indentation for non-inline child elements. For example,
to indent using a tab, you could use '\t'
. Setting the indent to None
means that the output will not be indented at all, meaning that indentation
from parent elements is discarded.
Defaults to 2 spaces (' '
).
spacing
class-attribute
instance-attribute
String to use for spacing between child elements. When this is set to
'\n'
, each child element will be placed on its own line, and indentation
will be applied. Otherwise, each child element will be separated using the
given string.
Defaults to a new-line ('\n'
).