ascfix 0.2.0

Automatic ASCII diagram repair tool for Markdown files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
# ascfix

[![Tests & Lints](https://github.com/evoludigit/ascfix/actions/workflows/test.yml/badge.svg)](https://github.com/evoludigit/ascfix/actions/workflows/test.yml)
[![Security Audit](https://github.com/evoludigit/ascfix/actions/workflows/audit.yml/badge.svg)](https://github.com/evoludigit/ascfix/actions/workflows/audit.yml)
[![Crates.io](https://img.shields.io/crates/v/ascfix.svg)](https://crates.io/crates/ascfix)

Automatic ASCII diagram repair tool for Markdown files.

## Overview

**ascfix** fixes misaligned ASCII diagrams in Markdown, especially those generated by LLMs. It normalizes box widths, aligns arrows, enforces uniform padding, and ensures diagrams remain maintainable.

Ideal for:
- AI-generated documentation with ASCII diagrams
- Markdown files with workflow diagrams
- CI/CD pipeline documentation
- Architecture diagrams in code repositories

## Features

- **Safe mode**: Normalize Markdown tables (default)
- **Diagram mode**: Repair ASCII boxes and arrows
- **Check mode**: Validate files without modifying (exit codes for CI/CD)
- **Conservative**: Only fixes well-understood structures
- **Idempotent**: Running twice produces identical output
- **Fast**: Linear processing time
- **Safe**: No panics on untrusted input

## Installation

### From crates.io

```bash
cargo install ascfix
```

### From source

```bash
git clone https://github.com/evoludigit/ascfix.git
cd ascfix
cargo install --path .
```

## Usage

```bash
# Check a file (default: safe mode, output to stdout)
ascfix README.md

# Fix a file in place (default: safe mode)
ascfix README.md --in-place

# Enable diagram mode for box/arrow repair
ascfix README.md --in-place --mode=diagram

# Validate without modifying (check mode)
ascfix README.md --check --mode=diagram
# Returns exit code 1 if changes would be made

# Process multiple files
ascfix docs/*.md --in-place --mode=diagram
```

### Modes

| Mode | Description | Use Case |
|------|-------------|----------|
| `safe` | Fix only Markdown tables | Conservative, safe for any file |
| `diagram` | Fix boxes and arrows | For files with ASCII diagrams |
| `check` | Validate without writing | CI/CD validation |

## Examples

### Safe Mode: Markdown Table Alignment

**Before** (inconsistent column widths):
```markdown
| Name | Age | City |
|------|-----|----------|
| Alice | 30 | New York |
| Bob | 25 | Boston |
| Charlie | 35 | Chicago |
```

**After** (normalized columns):
```markdown
| Name    | Age | City      |
|---------|-----|-----------|
| Alice   | 30  | New York  |
| Bob     | 25  | Boston    |
| Charlie | 35  | Chicago   |
```

**Command:**
```bash
ascfix table.md --in-place
```

---

### Diagram Mode: Box and Arrow Alignment

**Before** (misaligned, inconsistent):
```markdown
┌──────┐
│ Step │
└──────┘
┌─────────┐
│ Process  │
└─────────┘
```

**After** (normalized):
```markdown
┌────────┐
│ Step   │
└────────┘
┌────────┐
│ Process│
└────────┘
```

**Command:**
```bash
ascfix workflow.md --in-place --mode=diagram
```

---

### Diagram Mode: Box Width Normalization

**Before** (text too close to border):
```markdown
┌────────┐
│Process │
└────────┘
```

**After** (proper padding):
```markdown
┌─────────┐
│ Process │
└─────────┘
```

---

### Diagram Mode: Complex Workflow

**Before** (AI-generated, misaligned):
```markdown
Source Code
┌──────────────────┐
│ Build & Test     │
└──────────────────┘
  ↓
┌────────┐
│ Deploy │
└────────┘
```

**After** (normalized, consistent):
```markdown
Source Code
┌─────────────────┐
│ Build & Test    │
└─────────────────┘
┌──────────────────┐
│ Deploy           │
└──────────────────┘
```

---

### Diagram Mode: Box Padding and Arrow Alignment

**Before** (LLM-generated, text cramped against borders, arrows misaligned):
```markdown
┌───────┐    ┌────────┐
│Process│    │Database│
└───────┘    └────────┘
   ↓          ↓
┌──────────────────┐
│ResultProcessor   │
└──────────────────┘
```

**After** (proper padding added, arrows aligned to box centers):
```markdown
┌─────────┐    ┌──────────┐
│ Process │    │ Database │
└─────────┘    └──────────┘
     │             │
┌────────────────────────┐
│ Result Processor       │
└────────────────────────┘
```

**Changes made:**
- Expanded boxes to fit content with 1-space padding
- Aligned arrows to box center columns
- Normalized interior spacing

**Command:**
```bash
ascfix workflow.md --in-place --mode=diagram
```

---

### Diagram Mode: Multi-Step Pipeline with Inconsistent Arrows

**Before** (arrows at inconsistent positions, no padding):
```markdown
Source Code
  ↓
┌──────────┐
│Build     │
└──────────┘
┌─────────────┐
│Test Suite   │
└─────────────┘
  ↓
┌──────┐
│Deploy│
└──────┘
```

**After** (arrows normalized to consistent columns, boxes expanded with padding):
```markdown
Source Code
┌──────────────┐
│ Build        │
└──────────────┘
┌───────────────────┐
│ Test Suite        │
└───────────────────┘
┌────────────┐
│ Deploy     │
└────────────┘
```

**Changes made:**
- Aligned all vertical arrows to consistent column
- Added interior padding to all boxes (text no longer touching borders)
- Expanded boxes to fit content with proper spacing

**Command:**
```bash
ascfix pipeline.md --in-place --mode=diagram
```

---

### Diagram Mode: Horizontal Workflow with Inconsistent Alignment

**Before** (arrows offset from box edges, inconsistent padding):
```markdown
┌──────┐
│Input │
└──────┘
  ──→
     ┌─────────┐
     │Processing│
     └─────────┘
        ──→
          ┌──────┐
          │Output│
          └──────┘
```

**After** (arrows snapped to box edges, uniform padding):
```markdown
┌────────┐
│ Input  │
└────────┘
     ┌───────────────┐
     │ Processing    │
     └───────────────┘
          ┌────────┐
          │ Output │
          └────────┘
```

**Changes made:**
- Expanded boxes to fit content with padding
- Snapped arrow endpoints to box edge columns
- Made padding uniform (1 space) inside boxes

**Command:**
```bash
ascfix workflow.md --in-place --mode=diagram
```

---

### Check Mode: CI/CD Validation

**Validate without modifying** (useful for pull requests):
```bash
# Exit 0 if file is already normalized
# Exit 1 if file needs fixing
ascfix docs/*.md --check --mode=diagram
```

Perfect for GitHub Actions:
```yaml
- name: Check diagram alignment
  run: ascfix docs/*.md --check --mode=diagram
  # Fails the build if any diagrams need fixing
```

---

## Advanced Features in Diagram Mode

### Box Style Variants

ascfix supports multiple box drawing styles and automatically preserves them:

**Single-line boxes** (default):
```
┌─────┐
│ Box │
└─────┘
```

**Double-line boxes**:
```
╔═════╗
║ Box ║
╚═════╝
```

**Rounded-corner boxes**:
```
╭─────╮
│ Box │
╰─────╯
```

All styles are detected, preserved, and normalized consistently. Mixed styles in the same diagram are handled correctly.

---

### Nested Box Hierarchies

ascfix detects and supports parent-child box relationships. Parent boxes automatically expand to properly contain their children with appropriate margins:

**Before** (parent too small):
```
┌──────────────┐
│ Parent       │
│ ┌────────┐   │
│ │ Child  │   │
│ └────────┘   │
└──────────────┘
```

**After** (parent expanded with margins):
```
┌────────────────────┐
│ Parent             │
│                    │
│  ┌──────────────┐  │
│  │ Child        │  │
│  └──────────────┘  │
│                    │
└────────────────────┘
```

**Conservative behavior**: Deeply nested structures (>2 levels) or ambiguous relationships are handled gracefully.

---

### Side-by-Side Box Alignment

ascfix automatically balances the width of horizontally adjacent boxes for visual consistency:

**Before** (inconsistent widths):
```
┌───────┐  ┌─────┐  ┌────────────┐
│ Box 1 │  │ B2  │  │ Box Three  │
└───────┘  └─────┘  └────────────┘
```

**After** (uniform widths):
```
┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ Box 1       │ │ B2          │ │ Box Three   │
└─────────────┘ └─────────────┘ └─────────────┘
```

---

### Enhanced Arrow Support

ascfix recognizes and normalizes various arrow styles:
- Standard arrows: `→ ↓ ↑ ←`
- Double arrows: `⇒ ⇓ ⇑ ⇐`
- Extended arrows: `⟶ ⟹`

All arrows are aligned to box centers and maintained at consistent columns throughout the diagram.

---

### Connection Lines (Conservative)

ascfix supports L-shaped connection paths with limited scope (4 segments maximum per connection):

```
┌────────┐
│ Start  │
└───┬────┘
    │
    └─────┬─────────┐
          │         │
      ┌───▼───┐ ┌──▼──┐
      │ Path1 │ │Path2│
      └───────┘ └─────┘
```

Connection detection is conservative to avoid false positives. Very complex paths are skipped.

---

### Label Preservation (Framework)

ascfix includes framework support for preserving text labels attached to primitives during normalization. Label detection and rendering are currently conservative (skeleton implementation):

- Labels attached to boxes are tracked
- Labels attached to arrows are preserved
- Relative offsets are maintained during normalization
- Collision detection prevents label-diagram overlap

---

## Building & Testing

```bash
# Run all tests
cargo test

# Check code quality
cargo clippy --all-targets --all-features -- -D warnings

# Build release binary
cargo build --release
```

All code is tested with TDD discipline - unit tests, integration tests, and golden file tests.

## Documentation

- **[ARCHITECTURE.md]ARCHITECTURE.md** - Design overview, module structure, and data flow
- **[SECURITY.md]SECURITY.md** - Security policies, audit status, and best practices
- **[CONTRIBUTING.md]CONTRIBUTING.md** - Development guidelines and contribution process
- **[CHANGELOG.md]CHANGELOG.md** - Version history and release notes

## License

Licensed under the MIT License ([LICENSE](LICENSE) or https://opensource.org/licenses/MIT)

### Contribution

Contributions are welcome! Please feel free to submit pull requests.