Fix: Add markdown table support to blog posts - #42
Open
elcukro wants to merge 22 commits into
Open
Conversation
- Install remark-gfm plugin for GitHub Flavored Markdown - Add table element renderers to RichText component - Style tables with emerald theme (bordered, hover effects) - Fixes issue where markdown tables showed as plain text Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Changes: - Free plan now has unlimited expenses (was 20/month) - Updated all mentions in FAQ, pricing, emails - Clarified Premium unlocks limits on: income sources, loans, goals - Fixed mobile app status: "in preparation" (not "already available") Locations updated: - frontend/src/components/landing/FAQSection.tsx - frontend/src/app/(app)/(landing)/layout.tsx - backend/app/services/email_service.py - Production blog post (SQL update) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Added other: { charset: 'utf-8' } to metadata in layout.tsx
- Fixes Polish character rendering (ą, ć, ę, ł, ń, ó, ś, ź, ż)
- Prevents �� corruption in blog posts
- Next.js 13+ App Router requires explicit charset declaration
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- blog/[slug]/page.tsx: Add schema.org BlogPosting + FAQPage structured data, reading time, FAQ extraction from headings - RichText.tsx: Add image lightbox feature with keyboard support - strapi.ts: Add getRelatedPosts function for internal linking - Minor cleanup in ai-analysis, banking callback, checkout pages Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…ders Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…tywa Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Only 2 plans exist (monthly + annual) — the 3-column grid left-aligned them. Changed to md:grid-cols-2 with max-w-2xl mx-auto to properly center the cards. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.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.
Problem
Markdown tables in blog posts were rendering as plain text instead of HTML tables.
Solution
remark-gfmplugin for GitHub Flavored Markdown supporttable,thead,tbody,tr,th,td)Testing
Changes
frontend/package.json- Added remark-gfm dependencyfrontend/src/components/blog/RichText.tsx- Added table supportFixes issue where markdown pipe syntax was showing as text.