Metadata-Version: 2.1
Name: pymdown-csv2md
Version: 2.0.0
Summary: A Python-Markdown extension for converting .csv file to markdown tables inline.
Home-page: https://github.com/mghweb/pymdown-csv2md
Author: Max Hegler
Author-email: maxghegler@gmail.com
License: MIT License
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Text Processing :: Markup :: HTML
Requires-Python: >3.0
Description-Content-Type: text/markdown
License-File: LICENSE

# Python Markdown Extension: csv2md

See: https://pypi.org/project/mdtable/

## Settings

| Setting | Default | Description |
| --- | --- | --- |
| base_path | `'.'` | Base path from where relative paths are calculated. |
| padding | `1` | Padding to use in raw formatted markdown table. |
| delimiter | `','` | Delimiter character in CSV file. |
| quotechar | `'"'` | Quote character in CSV file. |
| escapechar | `''` | Escape character in CSV file. |

## Example Input

```
[caption](./path/to/my/file.csv)
```

## Example Output (markdown)

```
|Code              |Prompt                           |Type     |Required|
|------------------|---------------------------------|---------|--------|
|question_type     |Question Type                    |select   |Yes     |
|                  |facet                            |         |No      |
|                  |value                            |         |No      |
|                  |hybrid                           |         |No      |
|facet_field       |Facet Field                      |text     |No      |
|keyword           |Keyword (over heading)           |text     |No      |
|short_description |Short Description (under heading)|memo     |No      |
|long_description  |Long Description (in popup)      |memo     |No      |
|load_answer_images|Load Answer Images               |checkbox |No      |
|disable_when_true |Disable When True                |multitext|No      |
```


