aboutsummaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* feat(picker2): complete Picker2 prototype魏曹先生18 hours1-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Picker2 replaces the original Picker1 with a two-phase (tag → pick) + mask-bitmap architecture, decoupling argument matching from type conversion via a composable matcher pipeline. Architecture - FlagMatcher — boolean flags (--verbose) - ArgMatcher — single flag+value pairs (--name Alice) - MultiArgMatcher — multi-value flag groups (--files a.txt b.txt) - PositionalMatcher — positional arguments, respects `--` - SingleMatcher — composite for Single-type Pickables Types - Flag (Active/Inactive) — semantic bool flag value - String + 14 numeric types via SinglePickable trait - Vec<T> — greedy multi-value (all SinglePickable types) - VecUntil<T> — bounded multi-value via BoundaryCheck trait - VecUntil<T>, pick_string, pick_numbers, pick_bool, pick_flag Style system - UNIX_STYLE (kebab), POWERSHELL_STYLE (Pascal), WINDOWS_STYLE (Pascal) - naming_case auto-conversion via just_fmt integration - Style-aware separator (= for Unix, : for PS/Windows) Infrastructure - internal_repeat! macro generates PickerPattern1..=32 - SinglePickable blanket impl → Pickable - MultiPickableWithBoundary trait with greedy/bounded variants - 151 integration tests - Docs updated for parser feature
* docs: Update help functions note to use `writeln!` instead of魏曹先生6 days2-2/+2
| | | | `r_println!`
* refactor(docs): mark documentation update as completed魏曹先生6 days1-1/+1
|
* docs: migrate renderers from `r_println!` to `RenderResult` return type魏曹先生6 days22-174/+276
|
* docs: mark remove-r-print-macro tasks as complete魏曹先生6 days1-4/+4
|
* docs(dev): add changelog template魏曹先生6 days2-0/+29
|
* docs: fix trailing whitespace in add-picker2.md魏曹先生7 days1-7/+7
|
* Update add-picker2.md魏曹先生7 days1-0/+76
|
* docs(dev): add Picker2 arguments parser issue page魏曹先生7 days2-0/+11
|
* chore: bump workspace version to 0.3.0魏曹先生7 days3-5/+5
|
* fix(docs): reduce docs sidebar depth to match maxLevel魏曹先生7 days3-3/+3
|
* docs: migrate ABOUT-CI and ABOUT-NIGHTLY to dev docs site魏曹先生7 days3-0/+91
| | | | | | Replace relative file links with absolute URLs and add centered page headers to the migrated docs. Update the dev sidebar to include the new pages.
* docs: fix trailing whitespace in markdown files魏曹先生7 days2-6/+16
|
* docs(remove-r-print-macro): add progress checklist to issue魏曹先生7 days1-0/+10
|
* docs(dev): Add emoji icons and restructure sidebar layout魏曹先生7 days5-10/+16
|
* chore(docs): rename dev-docs directory to dev魏曹先生7 days12-8/+8
| | | | Update sidebar link for remove-r-print-macro to use full description
* chore: bump version to 0.2.2魏曹先生8 days3-5/+5
|
* docs: add issue doc for removing r_print macros and fix sidebar魏曹先生8 days3-1/+90
| | | | Capitalize "Templates" entry in dev-docs sidebar
* docs(sidebar): rename code-verify-system link to Markdown Code魏曹先生8 days6-53/+53
| | | | Verification System
* style(sidebar): add padding to nested navigation items魏曹先生8 days2-0/+12
|
* feat(docs): add flexible-alerts plugin and callout styles魏曹先生8 days3-14/+117
|
* docs: add hero banners and unify page titles in dev-docs魏曹先生8 days4-13/+120
|
* docs: restructure dev-docs sidebar and move pages into subdirectories魏曹先生8 days9-2/+8
|
* docs(abouts): reorganize dev-docs into categorized subdirectories魏曹先生8 days5-14/+15
| | | | | | Move about docs and templates from the root docs folder into dev-docs/abouts and dev-docs/templates respectively, adding .name files for directory metadata
* docs: add dev-docs site with dark/light theme support魏曹先生8 days8-2/+1648
|
* chore: move issue files to docs directory魏曹先生8 days2-0/+148
|
* chore: bump version to 0.2.1 and switch deps to path魏曹先生2026-06-303-5/+5
|
* feat(docs): add Chinese and English documentation for Mingling tutorials魏曹先生2026-06-3045-9/+4363
| | | | | | | | Add comprehensive documentation covering Declare a Dispatcher, Declare a Chain, Rendering Results, Multi-Command Program, Argument Parsing with Picker and Clap, Program Setup, Error Handling, Help Info, Resource System, Exit Code Control, Hook System, Testing, Completion, Structural Rendering, and Core Concepts
* docs: document `// BUILD TIME` directive and `@@@` hidden compilation魏曹先生2026-06-301-0/+44
| | | | lines
* docs: clean up code blocks and trailing whitespace in readme魏曹先生2026-06-302-8/+6
|
* chore(docs): remove duplicate .gitignore files in pages dirs魏曹先生2026-06-302-2/+0
|
* feat(css): set body line-height to 1.8 in both themes魏曹先生2026-06-302-0/+2
|
* feat(docs): add @@@ hidden code block support for compile-tested魏曹先生2026-06-304-24/+63
| | | | examples
* feat(examples): add pathf + dispatch tree combination example魏曹先生2026-06-291-0/+19
|
* style(docs): trim trailing whitespace in code blocks魏曹先生2026-06-292-50/+50
|
* docs(features): add pathf feature documentation魏曹先生2026-06-292-45/+103
|
* feat(docs): add Module Pathfinder example for the `pathf` feature魏曹先生2026-06-281-0/+18
|
* docs: Update mingling version references from 0.2 to 0.2.0魏曹先生2026-06-283-5/+5
|
* refactor(general_renderer): rename to structural_renderer魏曹先生2026-06-265-33/+33
|
* Rename internal docs魏曹先生2026-06-233-5/+205
|
* Add Mermaid diagram support魏曹先生2026-06-234-0/+2222
|
* Add compile-time duplicate variant detection魏曹先生2026-06-232-19/+19
| | | | | | Add duplicate variant checks for chain, renderer, help, and completion registrations to produce a clear compile error instead of silently generating unreachable code
* Add intro content and merge getting started page魏曹先生2026-06-218-69/+83
|
* Document `group!` and `pack_err!` macros for extra macros feature魏曹先生2026-06-202-0/+78
|
* Add example for outside type registration魏曹先生2026-06-201-1/+16
|
* Add `pack_err!` macro for error structs with automatic name field魏曹先生2026-06-181-4/+20
|
* Update example descriptions with meaningful docs魏曹先生2026-06-151-20/+20
|
* Update example tags and fix tag typo魏曹先生2026-06-151-3/+5
|
* Replace Cascadia Code with JetBrains Mono across docs魏曹先生2026-06-155-7/+23
|
* Fix trailing whitespace in documentation files魏曹先生2026-06-154-49/+49
|