Initial commit (Clean history)

This commit is contained in:
anhduy-tech
2025-12-30 11:27:14 +07:00
commit ef48c93de0
19255 changed files with 3248867 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
import cobble
from . import html
def path(elements):
return HtmlPath(elements)
def element(names, attributes=None, class_names=None, fresh=None, separator=None):
if attributes is None:
attributes = {}
if class_names is None:
class_names = []
if fresh is None:
fresh = False
if class_names:
attributes["class"] = " ".join(class_names)
return HtmlPathElement(html.tag(
tag_names=names,
attributes=attributes,
collapsible=not fresh,
separator=separator,
))
@cobble.data
class HtmlPath(object):
elements = cobble.field()
def wrap(self, generate_nodes):
nodes = generate_nodes()
for element in reversed(self.elements):
nodes = element.wrap_nodes(nodes)
return nodes
@cobble.data
class HtmlPathElement(object):
tag = cobble.field()
def wrap(self, generate_nodes):
return self.wrap_nodes(generate_nodes())
def wrap_nodes(self, nodes):
element = html.Element(self.tag, nodes)
return [element]
empty = path([])
class ignore(object):
@staticmethod
def wrap(generate_nodes):
return []