diff options
| author | Satya Rohith <me@satyarohith.com> | 2021-09-23 21:49:25 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-23 21:49:25 +0530 |
| commit | c5442abc237b8e11491afb09dbaa80a66488fc7b (patch) | |
| tree | 319a2df2095008a32bc9847c542bf1b96053473f /cli/tests/testdata/fmt/regular/formatted3.markdown | |
| parent | e0c858fa27af07f163f5d18bb0401d0f0069dd3c (diff) | |
feat(cli/fmt): support more markdown extensions (#12195)
Diffstat (limited to 'cli/tests/testdata/fmt/regular/formatted3.markdown')
| -rw-r--r-- | cli/tests/testdata/fmt/regular/formatted3.markdown | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/cli/tests/testdata/fmt/regular/formatted3.markdown b/cli/tests/testdata/fmt/regular/formatted3.markdown new file mode 100644 index 000000000..e6e616584 --- /dev/null +++ b/cli/tests/testdata/fmt/regular/formatted3.markdown @@ -0,0 +1,17 @@ +# Hello + +```js +function foo() { + return 42; +} + +foo(); +``` + +```ts +function bar(): number { + return 42; +} + +bar(); +``` |
