New notes and workbench edges now emit [[Note#Heading ^block]] or [[#^id]] so vaults stay ingestible without mass relinks. Create-from-profile always opens the wizard; a command can restart it on the current note. Co-authored-by: Cursor <cursoragent@cursor.com>
38 lines
617 B
Markdown
38 lines
617 B
Markdown
# Modul: Parser
|
||
|
||
> **Pfad:** `src/parser/`
|
||
> **Zielgruppe:** Entwickler
|
||
|
||
---
|
||
|
||
## Übersicht
|
||
|
||
Markdown-Parsing: Edges aus Callouts, Frontmatter, Links.
|
||
|
||
---
|
||
|
||
## Komponenten
|
||
|
||
| Datei | Beschreibung |
|
||
|-------|--------------|
|
||
| `parseEdgesFromCallouts.ts` | Parst `>> [!edge] type` Callouts, Targets |
|
||
| `parseFrontmatter.ts` | Frontmatter-Referenz |
|
||
| `parseRelLinks.ts` | Relative Links in Sections |
|
||
| `types.ts` | Parser-Typen |
|
||
|
||
---
|
||
|
||
## Edge-Callout-Format
|
||
|
||
```markdown
|
||
>> [!edge] resulted_in
|
||
>> [[#^impact]]
|
||
>> [[#^learning]]
|
||
```
|
||
|
||
---
|
||
|
||
## Siehe auch
|
||
|
||
- [mapping/sectionParser](../mapping.md) – Section-Parsing
|