Skip to content

Commit 7f0eeda

Browse files
committed
feat: v0.2.1 - Full documentation extraction and improved README
### Documentation Improvements - Remove artificial limitation on Apple documentation extraction - Now extracts ALL discussion sections (not just first 2) - Extracts all primary content sections including parameters - Provides complete documentation instead of summaries - Fix: Users now get full API documentation as expected ### README Enhancements - Fix markdown linting issues (add language specifiers, fix list numbering) - Replace HTML <b> tags with markdown ** syntax - Configure VS Code to allow necessary HTML elements (details/summary) - Improve configuration section with better organization - Update Quick Start to be MCP-client agnostic - Clarify that uvx requires no installation ### Version Bump - Bump version to 0.2.1 across all files (setup.py, __init__.py, package.json) This release ensures users get complete documentation from Apple docsets and improves the overall documentation quality and developer experience.
1 parent 318614f commit 7f0eeda

6 files changed

Lines changed: 395 additions & 174 deletions

File tree

.vscode/settings.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,18 @@
1010
"[yaml]": {
1111
"editor.formatOnSave": false
1212
},
13+
// Markdown linting configuration
14+
"[markdown]": {
15+
"editor.formatOnSave": false
16+
},
17+
"markdownlint.config": {
18+
"MD033": {
19+
"allowed_elements": [
20+
"details",
21+
"summary",
22+
]
23+
}
24+
},
1325
// Spell checker configuration
1426
"cSpell.customDictionaries": {
1527
"docsetmcp": {

0 commit comments

Comments
 (0)