Fix table rendering (#3773)

The previous table style worked for GFM, but was not valid for markdig.
This commit is contained in:
Bill Wagner 2020-08-05 10:12:15 -04:00 committed by GitHub
parent 4f02d029d1
commit f222935330
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -97,10 +97,10 @@ operations are omitted, no warning is produced.
The signature of the generated entry point method is determined based on operations used by the top level
statements as follows:
**Async-operations\Return-with-expression** | **Present** | **Absent**
----------------------------------------| -------------|-------------
**Present** | ```static Task<int> Main(string[] args)```| ```static Task Main(string[] args)```
**Absent** | ```static int Main(string[] args)``` | ```static void Main(string[] args)```
| **Async-operations\Return-with-expression** | **Present** | **Absent** |
|----------------------------------------|-------------|-------------|
| **Present** | ```static Task<int> Main(string[] args)```| ```static Task Main(string[] args)``` |
| **Absent** | ```static int Main(string[] args)``` | ```static void Main(string[] args)``` |
The example above would yield the following `$Main` method declaration: