# Markdown Links - Architecture Fix ## The Issue Your observation was spot-on: > "Because of the architectural shift, markdown links changed, and you have to do markdown link hunting since markdown is the main workflow." The problem: When files moved from root level (`/pics/`) to `content/` (`/content/pics/`), all markdown references needed updating. ## The Solution: Explicit Asset Paths Instead of using `.htaccess` rewrites to hide where files actually are, we now use **explicit paths in markdown**. ### Before (Confusing): ```markdown ![image](/pics/profile.jpg) ← Where is this actually? [PDF](/german/Mittelpunkt.pdf) ← Is this in root? In content/?