add event digital forensics workshop#76
Conversation
WalkthroughAdds a new Quarto event page for a Digital Forensics Workshop (2026-05-08) with a three-tab layout (Home, Program, Logistics) containing event metadata, a detailed schedule, travel/logistics, and contact/registration notes. Changes
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
📝 Coding Plan
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment Tip You can enable review details to help with troubleshooting, context usage and more.Enable the |
There was a problem hiding this comment.
Actionable comments posted: 6
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@content/projects/bitphilology/20260508-digital-forensics-workshop/index.qmd`:
- Around line 164-167: The table row with class "highlight-gray" for the 10:15
Coffee Break currently uses colspan="4" which incorrectly spans all columns
including the Time column; update that tr (the row containing <td>10:15</td> and
the centered "Coffee Break (30')" cell) to use colspan="3" so it spans only the
Speaker, Title, and Duration columns.
- Line 74: The aria-labelledby on the tab panel with id "pills-program" is
incorrectly set to "pills-profile-tab"; update the attribute to
aria-labelledby="pills-program-tab" so it matches the actual tab button ID
(change the attribute on the element defined as {`#pills-program` .tab-pane .fade
...}).
- Around line 115-120: Fix the malformed CSS in the .highlight-darkcolor and
.highlight-lightcolor rules: remove the stray "*/" tokens after the semicolons
and correct the invalid hex "#fffff" to a valid 6-digit hex (e.g., "#ffffff");
if you need commented fallback colors, wrap them properly in CSS comments using
/* fallback: `#FAE6A3`; */ or move them to separate properly formatted comments
rather than leaving trailing "*/" fragments so the declarations for
.highlight-darkcolor and .highlight-lightcolor are syntactically valid.
- Around line 178-182: The table row for Kristel Roder is missing its opening
<tr> tag which breaks the table; fix it by inserting a <tr> start tag
immediately before the <td>Kristel Roder</td> cell in the block where the
closing </tr> and the three <td> cells appear (the row containing "Kristel
Roder", "Digitale Archivierung im Schweizerischen Literaturarchiv – aktueller
Stand und Vergehensweisen", and "20'") so the row is properly wrapped with
<tr>...</tr>.
- Around line 1-14: The frontmatter in index.qmd is missing a status field which
breaks the listing sort (content/projects/index.qmd sorts by status asc); add a
status: active entry to the YAML frontmatter of this event (the same value as
the parent Bit Philology project) so it sorts consistently with other research
project entries and mixed event/project listings.
- Line 67: Replace the incorrect internal absolute URL that includes the source
directory ("https://dhbern.github.io/content/projects/bitphilology") with the
correct deployed path ("https://dhbern.github.io/projects/bitphilology/") or,
preferably, a relative link; update the link text in the paragraph that
currently contains that URL so it points to "/projects/bitphilology/" or simply
"projects/bitphilology" (relative) instead of the one containing "/content/".
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: 2cb88cb2-a45e-4432-9b23-aeb5b723621f
⛔ Files ignored due to path filters (2)
content/projects/bitphilology/20260508-digital-forensics-workshop/20260508_DigitalForensicsWorkshop_Program.pdfis excluded by!**/*.pdfcontent/projects/bitphilology/20260508-digital-forensics-workshop/floppy.pngis excluded by!**/*.png
📒 Files selected for processing (1)
content/projects/bitphilology/20260508-digital-forensics-workshop/index.qmd
content/projects/bitphilology/20260508-digital-forensics-workshop/index.qmd
Outdated
Show resolved
Hide resolved
content/projects/bitphilology/20260508-digital-forensics-workshop/index.qmd
Outdated
Show resolved
Hide resolved
flicksolutions
left a comment
There was a problem hiding this comment.
there are some issues to solve before I let you merge
There was a problem hiding this comment.
8MB is a bit big a filesize. I don't think you need that high of a resolution for the web ;-)
content/projects/bitphilology/20260508-digital-forensics-workshop/index.qmd
Outdated
Show resolved
Hide resolved
content/projects/bitphilology/20260508-digital-forensics-workshop/index.qmd
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Actionable comments posted: 2
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@content/events/20260508-digital-forensics-workshop/index.qmd`:
- Around line 116-120: The HTML paragraph block containing the lines with
**Date:**, **Location:** and **Program:** is preventing Quarto/Markdown from
rendering the bold syntax; replace the raw <p> block with Markdown-native
formatting (for example, use plain lines like "**Date:** Friday 8 May 2026"
etc.) or convert the content into proper HTML tags with semantic elements (e.g.,
<strong> Date: </strong>) so the labels render bold; update the section that
currently uses the <p> tag so the Date/Location/Program labels are rendered
correctly.
- Line 60: The referenced image "floppy.png" used in the index.qmd page is
missing; add the actual floppy.png file into the same event directory as that
index.qmd so the markdown image reference {fig-align="center"}
can resolve, ensure the file name matches exactly (case-sensitive),
optimize/resize the image as needed for web use, and commit it alongside the
page so the build will render the image.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: ba3b3179-d2a2-4944-b4b3-3fc3b2fb9e4e
⛔ Files ignored due to path filters (2)
content/events/20260508-digital-forensics-workshop/20260508_DigitalForensicsWorkshop_Program.pdfis excluded by!**/*.pdfcontent/events/20260508-digital-forensics-workshop/floppy_150dpi.pngis excluded by!**/*.png
📒 Files selected for processing (1)
content/events/20260508-digital-forensics-workshop/index.qmd
|
|
||
| ### 8 May 2026, University of Bern, Switzerland | ||
|
|
||
| {fig-align="center"} |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Verify the referenced image file exists
fd -t f "floppy.png" content/events/20260508-digital-forensics-workshop/Repository: DHBern/dhbern.github.io
Length of output: 49
Add the missing floppy.png image file to the event directory.
The image referenced at line 60 does not exist at content/events/20260508-digital-forensics-workshop/floppy.png. This will cause the image to fail rendering on the page. Create or provide the file in the event directory.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@content/events/20260508-digital-forensics-workshop/index.qmd` at line 60, The
referenced image "floppy.png" used in the index.qmd page is missing; add the
actual floppy.png file into the same event directory as that index.qmd so the
markdown image reference {fig-align="center"} can resolve, ensure
the file name matches exactly (case-sensitive), optimize/resize the image as
needed for web use, and commit it alongside the page so the build will render
the image.
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@content/events/20260508-digital-forensics-workshop/index.qmd`:
- Around line 116-120: The <p> HTML block contains a Markdown link "[PDF
version](20260508_DigitalForensicsWorkshop_Program.pdf)" which Quarto won't
render inside raw HTML; update the <p> block in index.qmd so the Program link is
an HTML anchor (e.g., replace the Markdown link with a proper <a href="...">PDF
version</a>) or close the HTML paragraph and move the Markdown link outside it;
target the <p> tag that contains the "Date/Location/Program" lines to make this
change.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: 33a508a4-b5fe-469f-86fa-15b772dd7110
⛔ Files ignored due to path filters (1)
content/events/20260508-digital-forensics-workshop/floppy_150dpi.pngis excluded by!**/*.png
📒 Files selected for processing (1)
content/events/20260508-digital-forensics-workshop/index.qmd
Pull request
Proposed changes
Types of changes
Checklist
Summary by CodeRabbit