diff options
Diffstat (limited to 'cli/tests/badly_formatted.md')
-rw-r--r-- | cli/tests/badly_formatted.md | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/cli/tests/badly_formatted.md b/cli/tests/badly_formatted.md new file mode 100644 index 000000000..adffe3e46 --- /dev/null +++ b/cli/tests/badly_formatted.md @@ -0,0 +1,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; +} +```
\ No newline at end of file |