azeek revised this gist . Go to revision
3 files changed, 16 insertions
docs.md(file created)
@@ -0,0 +1,14 @@ | |||
1 | + | # This is a test title | |
2 | + | ||
3 | + | ```js | |
4 | + | let x = 0; | |
5 | + | ``` | |
6 | + | ||
7 | + | ```ts | |
8 | + | let x: number = 0; | |
9 | + | ``` | |
10 | + | ||
11 | + | ```py | |
12 | + | def myf(): | |
13 | + | x = 0 | |
14 | + | ``` |
test.js(file created)
@@ -0,0 +1 @@ | |||
1 | + | let x = 0; |
test.ts(file created)
@@ -0,0 +1 @@ | |||
1 | + | let x: unknown = 0; |