Skip to content

Commit 57b297d

Browse files
committed
remove table layout from readme
1 parent ec638b8 commit 57b297d

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

README.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,7 @@ This project implements a transpiler for creating [pyright](https://github.com/m
1010

1111
## Example
1212

13-
<table width="100%">
14-
<tr>
15-
<th>TypeScript</th>
16-
<th>TypeScript2Python</th>
17-
</tr>
18-
<tr>
19-
<td width="50%">
20-
13+
### TypeScript
2114
```ts
2215
export type Foo = {
2316
type: "foo"
@@ -42,8 +35,7 @@ export type FooBarMap = {
4235
}
4336
```
4437
45-
</td>
46-
<td width="50%">
38+
### TypeScript2Python
4739
4840
```python
4941
from typing_extensions import Literal, TypedDict, List, Union, NotRequired, Optional, Tuple, Dict, Any
@@ -70,10 +62,6 @@ class Bar(TypedDict):
7062
FooBarMap = Dict[str,Union[Foo,Bar]]
7163
```
7264

73-
</td>
74-
</tr>
75-
</table>
76-
7765

7866
## Usage
7967

0 commit comments

Comments
 (0)