Skip to content

Commit

Permalink
Handle groups in cards
Browse files Browse the repository at this point in the history
  • Loading branch information
I-Al-Istannen committed Nov 11, 2024
1 parent 6dda4c5 commit 712217e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ ambiguous situations.
- Downloading of links with no target URL
- Handle row flex on description pages
- Add `<!DOCTYPE html>` heading to forum threads to fix mime type detection
- Handle groups in cards

## 3.6.0 - 2024-10-23

Expand Down
2 changes: 2 additions & 0 deletions PFERD/crawl/ilias/kit_ilias_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -998,6 +998,8 @@ def is_card_root(element: Tag) -> bool:
return IliasElementType.OPENCAST_VIDEO_FOLDER_MAYBE_PAGINATED
if "exc" in icon["class"]:
return IliasElementType.EXERCISE
if "grp" in icon["class"]:
return IliasElementType.FOLDER
if "webr" in icon["class"]:
return IliasElementType.LINK
if "book" in icon["class"]:
Expand Down

0 comments on commit 712217e

Please sign in to comment.