Conversation
Member
Preview available
|
hypha
reviewed
Mar 18, 2026
egeakman
commented
Mar 18, 2026
The financial aid application note had all three date milestones crammed into a single line, making it harder to scan. - Added `<br />` tags to split the note into three distinct lines: - Applications open date - First-round deadline - Second-round deadline ```mdx <Note>Applications opened on **18 March 2026**. <br /> First-round deadline: **6 April 2026**. <br /> Second-round deadline: **8 May 2026** ([Anywhere on Earth][AoE]).</Note> ``` <!-- START COPILOT CODING AGENT TIPS --> --- 📍 Connect Copilot coding agent with [Jira](https://gh.io/cca-jira-docs), [Azure Boards](https://gh.io/cca-azure-boards-docs) or [Linear](https://gh.io/cca-linear-docs) to delegate work to Copilot in one click without leaving your project management tool. --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: egeakman <75242929+egeakman@users.noreply.github.com>
The `@tailwindcss/typography` plugin sets an explicit `font-weight` on
`.prose a` elements, which overrides the bold weight inherited from a
parent `<strong>`. This means MDX like `**[Free Ticket Voucher
Grant](#link):**` renders as `<strong><a>...</a></strong>` but the link
text appears non-bold.
## Fix
Added to the `.prose` block in `src/styles/global.css`:
```css
/* Preserve bold when a link is wrapped in <strong> (e.g. **[text](#link)**).
The typography plugin sets an explicit font-weight on <a> tags, which
overrides the inherited bold from a parent <strong>. */
strong a,
a strong {
font-weight: bold;
}
```
This restores expected bold rendering for `**[text](#link)**` patterns
across all prose/MDX content on the site.
<!-- START COPILOT CODING AGENT TIPS -->
---
📍 Connect Copilot coding agent with [Jira](https://gh.io/cca-jira-docs),
[Azure Boards](https://gh.io/cca-azure-boards-docs) or
[Linear](https://gh.io/cca-linear-docs) to delegate work to Copilot in
one click without leaving your project management tool.
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: egeakman <75242929+egeakman@users.noreply.github.com>
egeakman
commented
Mar 19, 2026
egeakman
commented
Mar 19, 2026
egeakman
commented
Mar 19, 2026
Co-authored-by: Ege Akman <egeakmanegeakman@hotmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.