Skip to main content

Converts a YAML/JSON file or python Dict/List to a Markdown file

Project description

YAML to Markdown Converter

A Python utility to take a JSON / YAML file or a python dict / list and create a Markdown file.

Installation

pip install yaml-to-markdown

Usage

$ yaml-to-markdown --help
Convert JSON or YAML to Markdown.
Usage: yaml-to-markdown -o <output_file> [-y <yaml_file> | -j <json_file>]
    -o, --output-file <output_file>: Path to the output file as a string [Mandatory].
    -y, --yaml-file <yaml_file>: Path to the YAML file as a string [Optional]
    -j, --json-file <json_file>: Path to the JSON file as a string [Optional]
    -h, --help: Show this message and exit.
Note: Either yaml_file or json_file is required along with output_file.
Example: yaml-to-markdown -o output.md -y data.yaml

In Python Code example:

Convert a Pyton dictionary to Markdown:

from yaml_to_markdown.md_converter import MDConverter

data = {
    "name": "John Doe",
    "age": 30,
    "city": "Sydney",
    "hobbies": ["reading", "swimming"],
}
converter = MDConverter()
with open("output.md", "w") as f:
    converter.convert(data, f)

Content of output.md file will be:

## Name
John Doe
## Age
30
## City
Sydney
## Hobbies
* reading
* swimming

From the Command Line

You can also use the command line interface to convert a JSON or YAML file to Markdown. Here's an example:

Convert a JSON file to Markdown:

yaml-to-markdown --output-file output.md --json-file test.json

Convert a YAML file to Markdown:

yaml-to-markdown --output-file output.md --yaml-file test.yaml

Developer Guide

Please see the DEVELOPER.md file for more information on how to contribute to this project.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yaml-to-markdown-0.1.1712578746.tar.gz (7.7 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file yaml-to-markdown-0.1.1712578746.tar.gz.

File metadata

File hashes

Hashes for yaml-to-markdown-0.1.1712578746.tar.gz
Algorithm Hash digest
SHA256 c534428c1f016c6e4efc7dc2300c44a301c0e5c406ea4ac410a129e1398bfd26
MD5 9a15044c0b1c584bef9e22527599ef7d
BLAKE2b-256 9efe7b6a00fc9eeda0756fd0fcbd1e3c178001d476b72bea68cab088094690d3

See more details on using hashes here.

File details

Details for the file yaml_to_markdown-0.1.1712578746-py3-none-any.whl.

File metadata

File hashes

Hashes for yaml_to_markdown-0.1.1712578746-py3-none-any.whl
Algorithm Hash digest
SHA256 4b2e43ab3a37a1a757a84701887c33b00f53bc5d70698ecb1ca3a20690009b00
MD5 fe3ace61eed7a53126f4cb65558aac04
BLAKE2b-256 9b4e5913cbc8123172b5d6bd8a9273eb76bda1a3d5942a5e3f170bb383c58145

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page