Open
Conversation
Wikipedia-style magic links with build-time resolution for markdown. Features: - Link resolver with priority: exact ID → aliases → slug → unresolved - Remark plugin supporting [:id] and [[id]] syntax - Fallback IDs: [:id1|:id2] tries each until one resolves - Custom display text: [[id|Display Text]] - Graceful degradation: unresolved links become plain text - Placeholder support with custom CSS class - Link checker for detecting broken links in content 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Remove complex target registry, link resolver, and link checker. The plugin now just transforms [[id]] syntax using a urlBuilder callback. - Delete link-resolver.ts, link-checker.ts, types.ts - Simplify remark-magic-links.ts to ~100 lines - Update tests with synthetic data - Update README 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Verify AST-based parsing handles arbitrary nesting levels (1-5) with alternating list/blockquote containers around code blocks and inline code. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Replace simple /concepts/ example with a fun pet store catalog showing how urlBuilder enables routing to different paths per content type. Add error handling example and link to tests. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Document that wiki-link syntax works natively in Neovim, Obsidian, and VS Code - content is navigable without building. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Document the lineage: MediaWiki, Org mode, Roam/Obsidian. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Remove definitive language like "origin of" - just list examples. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Accept `collections` array directly instead of requiring `urlBuilder`
- Default URL pattern: `/${slug}/` (global ID like Wikipedia)
- Optional `urlPattern` callback for custom URL generation
- Add prior art table and design philosophy to README
- Add 10 new tests for collections API
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add createSlugResolver in node.ts for filesystem-based slug resolution - Add onBrokenLink config: 'throw' (default), 'warn', 'ignore' - Add standalone checkLinks() for fast feedback during authoring - Update package description to "Wikipedia-style magic links with broken link detection" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 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.
Summary
collectionsarray directly instead of requiringurlBuilder/${slug}/(global ID like Wikipedia)urlPatterncallback for custom URL generationPrior Art Research
Added comparison table showing how other tools handle internal links:
Design Philosophy
Full Astro routing compatibility is a non-goal. Atlas assumes globally unique IDs.
Test plan
🤖 Generated with Claude Code