rolandshoemaker / CommonMark-py

Depreciated in favor of rtfd/CommonMark-py
Other
125 stars 12 forks source link

Table support #27

Open AlmightyOatmeal opened 8 years ago

AlmightyOatmeal commented 8 years ago

Support for tables does not appear to be present or functional:

markdown:

| field name | description |
|------------|-------------|
| display_name | name that will display in the integration tile|
| description | description of integration |
| project_url | URL of 'metadata' directory |
| code | URL of code repository |
| featured | blah blah tacocat |
| logo_large | URL of 300x300 pixel logo image |
| logo_small | URL of 150x150 pixel logo image |

Resulting HTML:

<p>| field name | description |
|------------|-------------|
| display_name | name that will display in the integration tile|
| description | description of integration |
| project_url | URL of 'metadata' directory |
| code | URL of code repository |
| featured | blah blah tacocat |
| logo_large | URL of 300x300 pixel logo image |
| logo_small | URL of 150x150 pixel logo image |</p>

Sad panda.