Skip to content

Commit 21cab77

Browse files
committed
fix(mindmaps): Remove blockquote from family_derivation for markmap compatibility
Replace blockquote syntax with plain text for Base Template notes in family_derivation markmap to ensure proper rendering in markmap viewers. This aligns with the format used in other mindmap generators.
1 parent c803431 commit 21cab77

File tree

2 files changed

+1
-33
lines changed

2 files changed

+1
-33
lines changed

docs/mindmaps/README.md

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -12,42 +12,10 @@ Use [markmap](https://markmap.js.org/) VSCode extension or web viewer.
1212

1313
## Available Mind Maps
1414

15-
### [📐 Pattern Hierarchy](pattern_hierarchy.md)
16-
17-
API Kernels → Patterns → Problems hierarchy
18-
1915
### [👨‍👩‍👧‍👦 Family Derivation](family_derivation.md)
2016

2117
Base templates and derived problem variants
2218

23-
### [⚡ Algorithm Usage](algorithm_usage.md)
24-
25-
Which algorithms are used in which problems
26-
27-
### [🏗️ Data Structure Usage](data_structure.md)
28-
29-
Data structures used across problems
30-
31-
### [🏢 Company Coverage](company_coverage.md)
32-
33-
Problems frequently asked by companies
34-
35-
### [🗺️ Learning Roadmaps](roadmap_paths.md)
36-
37-
Learning roadmap structures
38-
39-
### [🔗 Problem Relations](problem_relations.md)
40-
41-
Related problems network
42-
43-
### [🔀 Solution Variants](solution_variants.md)
44-
45-
Problems with multiple solution approaches
46-
47-
### [📊 Difficulty × Topics](difficulty_topics.md)
48-
49-
Topics organized by difficulty level
50-
5119
---
5220

5321
## How to View

tools/mindmaps/generators/family.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def generate_family_derivation(ontology: OntologyData, problems: dict[str, Probl
3737
if base.solutions:
3838
notes = base.solutions[0].get("notes", "")
3939
if notes:
40-
lines.extend([f"> {notes}", ""])
40+
lines.extend([notes, ""])
4141

4242
lines.extend(["### Derived Problems", ""])
4343
for derived_id in base.derived_problems:

0 commit comments

Comments
 (0)