Skip to content

Anjani's updates#28

Open
ajm-glitch wants to merge 4 commits intoDenolle-Lab:gh-pagesfrom
ajm-glitch:gh-pages
Open

Anjani's updates#28
ajm-glitch wants to merge 4 commits intoDenolle-Lab:gh-pagesfrom
ajm-glitch:gh-pages

Conversation

@ajm-glitch
Copy link
Copy Markdown

Added anjani-mirchandani.md, anjani-mirchandani.jpg, updated team_members.yaml file

@mdenolle mdenolle self-requested a review March 3, 2026 20:50
Copy link
Copy Markdown

@mdenolle mdenolle left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The job failed due to a Liquid syntax error at line 30 of _pages/people/anjani-mirchandani.md:

Liquid syntax error (line 30): Tag '{%' was not properly terminated

Solution:
Inspect line 30:

{% assign member = site.data.team_members | where: "id", page.id | first %}

It is correct except for its surrounding RTF encoding and escaped characters (e.g., \{% instead of {%). The file appears to contain raw RTF, which is not valid for Markdown or Jekyll page processing.

To fix:

  1. Remove all RTF syntax from the file—ensure only Markdown and Liquid are present.
  2. Make sure all Liquid tags are unescaped (e.g., use {% ... %} instead of \{% ... %\}).
  3. Clean up metadata (frontmatter) at the top; ensure there are no stray characters or encoding artifacts.

Here’s a corrected snippet:

---
layout: member
id: anjani-mirchandani
title: "Anjani Mirchandani"
permalink: /people/anjani-mirchandani/
photo: anjani-mirchandani.jpg
short_description: "Undergraduate Student - Alaska Tomography using DAS"
email: ajm76@uw.edu
cv:
website:
scholar:
orcid:
github: https://github.com/ajm-glitch?tab=repositories
linkedin: http://www.linkedin.com/in/anjani-mirchandani
links:
---

<div style="display: flex; align-items: center; gap: 2rem;flex-wrap: wrap;">
  <img src="{{ site.baseurl }}/images/teampic/{{ page.photo }}" class="rounded-circle" style="width:160px;height:160px;object-fit:cover;border:3px solid #eee;" alt="{{ page.title }}">
  <div>
    <h2 style="margin-bottom:0.5rem;">{{ page.title }}</h2>
    <span style="font-size:1.1rem; color:#555;">{{ page.short_description }}</span><br>
    {% assign member = site.data.team_members | where: "id", page.id | first %}
    <span style="font-size:1rem; color:#888;">{{ member.role }}</span>
    <!-- ... -->
  </div>
</div>

After you remove the RTF and escaped Liquid tags, the build should succeed.

Updated the member page for Anjani Mirchandani to use YAML front matter format and improved the layout.
@mdenolle mdenolle enabled auto-merge April 2, 2026 17:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants