summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/test/markdown_full_block_names.md
blob: 4f9e1ea51c1d5a9866b7005cb3879a1ebd29cf1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Documentation

The following block should be given a js extension on extraction:

```javascript
console.log("js");
```

The following example contains the ignore attribute and will be ignored:

```typescript ignore
const value: Invalid = "ignored";
```

The following example will trigger the type-checker to fail:

```typescript
const a: string = 42;
```