Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CSS-style attribute assignment #9

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion html5tagger/builder.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
import re

from .html5 import omit_endtag
from .util import mangle, escape, escape_special, esc_script, esc_style, attributes
from .util import attributes, esc_script, esc_style, escape, escape_special, mangle


CSS_SELECTOR = re.compile(
r'(?:#(?P<id>[\w-]+))|(?:\.(?P<class>[\w-]+))|(?:\[(?P<attribute>[\w-]+)=["\']?(?P<value>[\w\s/]+)["\']?\])'
)

class Builder:
"""Builder generates a document with .elemname(attr1="value", ...) syntax.
Expand Down Expand Up @@ -114,6 +120,23 @@ def __call__(self, *_inner_content, **_attrs):
self._(*_inner_content)
self._endtag_close()
return self

def __getitem__(self, item):
"""Add attributes to the current tag."""
assert isinstance(item, str), "Attribute names must be strings in CSS selector syntax."

classes = []
kwargs = {}
for match in CSS_SELECTOR.finditer(item):
if match["id"]:
kwargs["id_"] = match["id"]
elif match["class"]:
classes.append(match["class"])
elif match["attribute"]:
kwargs[match["attribute"]] = match["value"]
if classes:
kwargs["class_"] = " ".join(classes)
return self(**kwargs)

def _(self, *_content):
"""Append new content without closing the current tag."""
Expand Down