- Create Economist SubmissionTracking package correctly: * mainArticle = full blog post content * coverLetter = 216-word SIR— letter * Links to blog post via blogPostId - Archive 'Letter to The Economist' from blog posts (it's the cover letter) - Fix date display on article cards (use published_at) - Target publication already displaying via blue badge Database changes: - Make blogPostId optional in SubmissionTracking model - Economist package ID: 68fa85ae49d4900e7f2ecd83 - Le Monde package ID: 68fa2abd2e6acd5691932150 Next: Enhanced modal with tabs, validation, export 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
18 lines
603 B
Python
18 lines
603 B
Python
"""
|
|
tinycss2
|
|
========
|
|
|
|
tinycss2 is a low-level CSS parser and generator: it can parse strings, return
|
|
Python objects representing tokens and blocks, and generate CSS strings
|
|
corresponding to these objects.
|
|
|
|
"""
|
|
|
|
from .bytes import parse_stylesheet_bytes # noqa
|
|
from .parser import ( # noqa
|
|
parse_blocks_contents, parse_declaration_list, parse_one_component_value,
|
|
parse_one_declaration, parse_one_rule, parse_rule_list, parse_stylesheet)
|
|
from .serializer import serialize, serialize_identifier # noqa
|
|
from .tokenizer import parse_component_value_list # noqa
|
|
|
|
VERSION = __version__ = '1.4.0'
|