feat: improve footnote display and data attributes
Added functionality in `app.py` to propagate `data-mw-group` attribute classes to `mw-reflink-text` spans, enhancing footnote grouping. Updated CSS to properly style these footnotes, accounting for various numeral systems (alpha, roman, decimal) and ensuring consistent display of references. Fixes #33.
This commit is contained in:
parent
426964a798
commit
1fca3bce13
2 changed files with 39 additions and 0 deletions
|
@ -336,6 +336,11 @@ def wiki_article(
|
||||||
if any(cls in li.get("class", []) for cls in ["nv-view", "nv-talk", "nv-edit"]):
|
if any(cls in li.get("class", []) for cls in ["nv-view", "nv-talk", "nv-edit"]):
|
||||||
li.decompose()
|
li.decompose()
|
||||||
|
|
||||||
|
for span in soup.find_all(class_="mw-reflink-text"):
|
||||||
|
parent = span.parent
|
||||||
|
if parent.attrs.get("data-mw-group", None):
|
||||||
|
span["class"] = span.get("class", []) + [parent.attrs["data-mw-group"]]
|
||||||
|
|
||||||
processed_html = str(body)
|
processed_html = str(body)
|
||||||
|
|
||||||
rtl = bool(soup.find("div", class_="mw-parser-output", dir="rtl"))
|
rtl = bool(soup.find("div", class_="mw-parser-output", dir="rtl"))
|
||||||
|
|
|
@ -919,6 +919,40 @@ Currently blocked by implementation of comments retrieval in the backend
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/* Footnote weirdness */
|
||||||
|
.mw-reflink-text.lower-alpha::before {
|
||||||
|
content: "[" counter(mw-Ref, lower-alpha) "]";
|
||||||
|
}
|
||||||
|
|
||||||
|
.mw-reflink-text.upper-alpha::before {
|
||||||
|
display: inline;
|
||||||
|
content: "[" counter(mw-Ref, upper-alpha) "]";
|
||||||
|
}
|
||||||
|
|
||||||
|
.mw-reflink-text.lower-roman::before {
|
||||||
|
content: "[" counter(mw-Ref, lower-roman) "]";
|
||||||
|
}
|
||||||
|
|
||||||
|
.mw-reflink-text.upper-roman::before {
|
||||||
|
content: "[" counter(mw-Ref, upper-roman) "]";
|
||||||
|
}
|
||||||
|
|
||||||
|
.mw-reflink-text.decimal::before {
|
||||||
|
content: "[" counter(mw-Ref, decimal) "]";;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mw-reflink-text::before {
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mw-reflink-text.lower-alpha,
|
||||||
|
.mw-reflink-text.upper-alpha,
|
||||||
|
.mw-reflink-text.lower-roman,
|
||||||
|
.mw-reflink-text.upper-roman,
|
||||||
|
.mw-reflink-text.decimal {
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
|
||||||
/* Media query for devices with a max width of 768px */
|
/* Media query for devices with a max width of 768px */
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
#header {
|
#header {
|
||||||
|
|
Loading…
Reference in a new issue