Skip to content

Commit

Permalink
Fix dev-map css style
Browse files Browse the repository at this point in the history
  • Loading branch information
kwankyu committed Nov 30, 2024
1 parent 3de5fc0 commit 9d84331
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
6 changes: 1 addition & 5 deletions scripts/geocode.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,16 +172,12 @@ def writeToDevmap():

descr = changelog_contributions(all_names) + [d.strip() for d in descr.split(r';')]

first = True
for d in descr:
if not first:
td.appendChild(devmap.createElement("br"))
else:
first = False
# since there are tags in the string, we parse it
d = d.replace("&lt;", "<").replace("&gt;", ">")
d_el = parseString("<span>%s</span>" % d)
td.appendChild(d_el.firstChild)
td.appendChild(devmap.createElement("br"))

if main_trac and not github:
github = convert_trac_username(main_trac)
Expand Down
1 change: 0 additions & 1 deletion src/res/sage.css
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,6 @@ div.mdesc ul {
.github,
.trac {
text-align: left;
display: block;
font-style: italic;
font-size: 90%;
}
Expand Down

0 comments on commit 9d84331

Please sign in to comment.