* MAJOR VERSION : the lib for runners are not mandatory !!! (til now, it didn't worked when no starlette, uvicorn, guy)
0.2.1
* new operator on tag/tagbase : "+=" -> same as "<=" ... but "a += b,c" === "a <= (b,c)" (but avoid to mix "+=" and "<=" in a same line)
0.2.0
* new operator on tag/tagbase : "+" -> create a list of tags (now, it's easier to add multiple childs in one line :
- "a <= b+c", instead of "a <= (b,c)" - "Tag.div( a+b )" instead of "Tag.div( (a,b) )"
0.1.13
* add unitests for ".imports" * better statics resolver
0.1.12
* _renderStatic() -> _ensureTagBase(), returns a TagBase (preserving H/TagBase id) * all unittests are back
0.1.11
* IGNORE on test_statics_in_real_statics ;-( ... (so it's a bugued version from scratch, a 0.1.12 will fix soon) * Tag.statics : None|Tag(instance)|List|Tuple * Tag.imports : None|Tag(class)|List|Tuple * _renderStatic() on Tag (no more on Tagbase), preserving H/TagBase id !