Skip to main content

A Markdown to HTML converter

Project description

yamper

yamper is a simple Markdown to HTML converter/compiler. It allows users to easily convert Markdown files to HTML, with options for different templates and token output.

:star2: Features

Available Features

  • Headers
  • Paragraphs
  • Bold, Italic and strikethrough text
  • Links
  • Images
  • Unordered lists
  • Ordered lists
  • Blockquotes
  • Code blocks
  • Inline code
  • Horizontal rules
  • GitHub emojis :wink:

:construction: Features in Development

  • Tables
  • Alerts
  • Footnotes
  • Nested lists
  • Nested quotes

:package: Installation

You can install yamper using pip:

pip install yamper

:computer: Usage

Command Line Interface

yamper provides a command-line interface for easy conversion of Markdown files to HTML.

Basic usage:

yamper path/to/your/markdown_file.md

Options:

  • --out: Specify the output file name
  • -t, --template: Choose a template (options: "standard-light", "standard-dark", "plain")
  • --tokens: Output tokens instead of HTML

Examples:

# Convert to HTML with default template
yamper ../path/input.md --out output.html

# Convert to HTML with dark template
yamper ../path/input.md --out output.html -t standard-dark

# Output tokens
yamper ../path/input.md --tokens --out tokens.txt

:wrench: Using yamper in Your Python Projects

You can also use yamper in your Python projects by importing its functions:

from yamper import to_html, to_tokens

# Convert Markdown to HTML and output to a new file
to_html('path/to/your/markdown_file.md', 'output.html', 'standard-dark')
or 
# Directly print the HTML content
html_content= to_html('path/to/your/markdown_file.md')
print(html_content)

# Get tokens from Markdown and output to a new file
tokens = to_tokens('path/to/your/markdown_file.md', 'tokens.txt')
or
# Directly print the tokens
to_tokens('path/to/your/markdown_file.md', 'tokens.txt')
print(tokens)

:art: Templates

yamper currently offers three templates:

  1. standard-light (default): A light theme with built-in styles and code highlighting using Prism.js
  2. standard-dark: A dark theme with built-in styles and code highlighting using Prism.js
  3. plain: A basic HTML output without any additional styling or code highlighting

:gear: API Reference

to_html(md_file, output_file=None, template="standard-light")

Converts a Markdown file to HTML.

  • md_file: Path to the input Markdown file
  • output_file: (Optional) Path to the output HTML file
  • template: (Optional) Template to use for HTML output

Returns the HTML content as a string if output_file is not specified.

to_tokens(md_file, output_file=None)

Generates tokens from a Markdown file.

  • md_file: Path to the input Markdown file
  • output_file: (Optional) Path to the output token file

Returns the list of tokens if output_file is not specified.

:warning: Disclaimer

The HTML output generated by yamper is not automatically sanitized. This means that any potentially harmful or malicious content within the Markdown input will be directly reflected in the resulting HTML file. Users should be cautious when processing untrusted or user-generated content.

:bulb: Recommendation

If you intend to display the generated HTML on a website or share it publicly, it is strongly advised to manually review and sanitize the content, or use a dedicated HTML sanitizer to mitigate potential security vulnerabilities.

:handshake: Contributing

Contributions to yamper are welcome! Please feel free to submit a Pull Request.

:scroll: License

This project is licensed under the GPL-3.0 license.

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

yamper-0.1.0.tar.gz (43.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

yamper-0.1.0-py3-none-any.whl (42.8 kB view details)

Uploaded Python 3

File details

Details for the file yamper-0.1.0.tar.gz.

File metadata

  • Download URL: yamper-0.1.0.tar.gz
  • Upload date:
  • Size: 43.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for yamper-0.1.0.tar.gz
Algorithm Hash digest
SHA256 4494da4613b90315c8e3d73e81419d93ba7aa3cc0fd2dceeb1b4cea55e31b0b0
MD5 8c88c5a31dc8504380b647d5038aa927
BLAKE2b-256 3c46f34df69bd484c3018708a56b53d243ea781a33abc6d7c7c9bf57305cb86a

See more details on using hashes here.

File details

Details for the file yamper-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: yamper-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 42.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for yamper-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 129fd15603e68db690d288b16b691040a4f20e07c79c4167fdbc7cba726b85cc
MD5 9c2a1217b6def337b4d4b65ea129b681
BLAKE2b-256 13979bb4e770021e5fd98a64831669ec00d4d2eda488a75e36541780d2a4743b

See more details on using hashes here.

Supported by

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