tangled
alpha
login
or
join now
zenfyr.dev
/
xpost
2
fork
atom
social media crossposting tool. 3rd time's the charm
mastodon
misskey
crossposting
bluesky
2
fork
atom
overview
issues
1
pulls
pipelines
Update html.py
zenfyr.dev
1 month ago
76068466
93e2afea
verified
This commit was signed with the committer's
known signature
.
zenfyr.dev
SSH Key Fingerprint:
SHA256:TtcIcnTnoAB5mqHofsaOxIgiMzfVBxej1AXT7DQdrTE=
+2
-1
1 changed file
expand all
collapse all
unified
split
util
html.py
+2
-1
util/html.py
···
117
117
if self._tag_stack.get('a'):
118
118
label, _attr = self._tag_stack.pop("a")
119
119
self._tag_stack["a"] = (label + data, _attr)
120
120
-
return
120
120
+
else:
121
121
+
self.append_text(data)
121
122
122
123
def get_result(self) -> list[Token]:
123
124
if not self.tokens: