summaryrefslogtreecommitdiff
path: root/cli/tests/badly_formatted.md
blob: adffe3e465e9f2ad7ae96013807ab0f63eb0af62 (plain)
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
# Hello      Markdown

```js
console.log("Hello World"

)
```

```javascript
console.log("Hello World2"

)
```

```ts

function hello(name: string    ) {
                  console.log(name);
};

hello(        "alice");
```

```typescript
function foo(): number {
  return       2;
}
```