ascfix 0.7.1

Automatic ASCII diagram repair tool for Markdown files
Documentation
# Code Fence Test: Mismatched Lengths

This file demonstrates fence length mismatches that should be repaired.

## Python Example

```python
def hello():
    print("Hello, World!")
`````

## JavaScript Example

```javascript
function hello() {
    console.log("Hello, World!");
}
`````````

## Text Block

```
Some plain text
Here
`````

## Mixed

```markdown
# Header
`````

That's the end.