{"format":"markdown","guide":"# Tiny CV Markdown Guide\n\nTiny CV resumes are plain markdown with optional YAML frontmatter.\n\n## File shape\n\n```md\n---\nstylePreset: editorial\naccentTone: forest\ndensity: standard\nheaderAlignment: left\ncontactStyle: compact\npageMargin: 1\nshowHeaderDivider: false\nshowSectionDivider: true\npageSize: letter\n---\n\n# Alex Morgan\nFounder & Product Engineer\nSan Francisco, CA | [alex@example.com](mailto:alex@example.com) | [linkedin.com/in/alexmorgan](https://linkedin.com/in/alexmorgan)\n\n## Summary\nProduct-minded builder with experience across product, engineering, and go-to-market.\n\n## Experience\n### Founder | Meridian Labs\n*Remote | 2023 - Present*\n- Built the first product surface and shipped the company to revenue.\n\n## Skills\nLanguages: TypeScript, Python, SQL\nFrameworks: React, Next.js, Node.js\n```\n\n## Rules\n\n- The first `#` heading is the candidate name.\n- The next non-empty line is treated as the headline unless it looks like contact info.\n- Contact info can be plain text or markdown links and is usually separated with `|`.\n- Top-level sections use `##`.\n- Resume entries inside sections use `###`.\n- Entry metadata goes on the next italic line, usually in the form `*Location | Dates*`.\n- Bullets use `-` or `*`.\n- A `Skills` section should use `Label: value` rows.\n\n## Frontmatter options\n\n- `stylePreset`: classic | minimal | editorial | executive | technical | creative\n- `accentTone`: forest | slate | navy | plum | claret\n- `density`: comfortable | standard | compact\n- `headerAlignment`: left | center\n- `contactStyle`: classic | compact | web-icons\n- `pageMargin`: number, typically 0.65 to 1.0\n- `showHeaderDivider`: boolean\n- `showSectionDivider`: boolean\n- `pageSize`: letter | legal\n\n## Entry pattern\n\n```md\n### Role | Company\n*Remote | 2022 - Present*\n- Outcome-focused bullet\n- Another bullet\n```\n\n## Summary / paragraph pattern\n\n```md\n## Summary\nOne or more paragraphs can appear here.\n\nEach blank line becomes a new paragraph.\n```\n\n## Skills pattern\n\n```md\n## Skills\nLanguages: TypeScript, Python, SQL\nFrameworks: React, Next.js, Node.js\nPlatforms: Vercel, AWS, Postgres\n```\n"}