fix(filecoin-site): resolve markdownlint errors in ProPGF blog posts - #2344
Open
beck-8 wants to merge 1 commit into
Open
fix(filecoin-site): resolve markdownlint errors in ProPGF blog posts#2344beck-8 wants to merge 1 commit into
beck-8 wants to merge 1 commit into
Conversation
Fix 4 markdownlint errors in main's blog content that currently make
the pre-commit hook (npm run lint:md) fail for every local commit:
- Announcing-Filecoin-ProPGF-Batch-3-Selection-Committee.md
- MD026: drop trailing colon from 'Selection Committee Members' heading
- MD037: fix bold markers in 'Core Infrastructure Maintenance' bullet
and add the label colon to match the sibling 'RFP Responses' bullet
- ProPGF-Batch-3-Call-for-Builders.md
- MD001: promote 'A Living Document' and 'Understanding Pods' from h3
to h2 - they are top-level sections, siblings of 'Four Focus Areas'
(front matter title acts as h1, so body sections start at h2)
- MD030: single space after list marker in the 'Funding' bullet
Formatting only; no wording changes. markdownlint now reports 0 errors
across the repo.
|
The latest updates on your projects. Learn more about Vercel for GitHub. 3 Skipped Deployments
|
|
@beck-8 is attempting to deploy a commit to the Filecoin Foundation's projects Team on Vercel. A member of the Team first needs to authorize it. |
BigLep
approved these changes
Jun 12, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Cleans up Markdown formatting in two Filecoin ProPGF Batch 3 blog posts to improve rendering consistency (headings, lists, and emphasis).
Changes:
- Fixes improperly indented headings so they render as headings (not code blocks).
- Normalizes heading text/punctuation and list spacing.
- Corrects bold/emphasis formatting in a committee responsibilities bullet.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| apps/filecoin-site/content/blog/posts/en/ProPGF-Batch-3-Call-for-Builders.md | Fixes heading indentation/levels and normalizes list item spacing for proper Markdown rendering. |
| apps/filecoin-site/content/blog/posts/en/Announcing-Filecoin-ProPGF-Batch-3-Selection-Committee.md | Normalizes a heading and fixes broken bold formatting in a list item. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
8 tasks
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.
Problem
Two blog posts on
main(added via TinaCMS content updates) carry 4 markdownlint errors. Since the husky pre-commit hook runsnpm run lint:mdover the whole repo, every local commit is currently blocked for all contributors unless they bypass hooks with--no-verify(as noted in #2343).Fix (formatting only, no wording changes)
Announcing-Filecoin-ProPGF-Batch-3-Selection-Committee.md
### Selection Committee Members (Batch 3):heading**Core Infrastructure Maintenance **Committee members...→**Core Infrastructure Maintenance**: Committee members..., matching the sibling**RFP Responses**:bulletProPGF-Batch-3-Call-for-Builders.md
A Living DocumentandUnderstanding “Pods”from h3 to h2 — they are top-level sections, siblings of## Four Focus Areas. The front mattertitle:acts as the page h1, so body sections start at h2 (same structure as every other blog post, e.g.Announcing-Filecoin-ProPGF-Batch-3-General-Track.md)* Funding:(two spaces) →* Funding:(one space)Verification
npm run lint:md: 0 errors across 1478 files (was 4)--no-verifyNote: these files are TinaCMS-managed, so a future CMS save could reintroduce formatting issues — but this unblocks local commits for everyone now.