Skip to main content

Python-Markdown extension for easy changelog tagging

Project description

Markdown-changelog

Markdown extension to enable easy addition of changelog badges to your documentation

Installation

The easiest way to install markdown-changelog is to use pip

pip install markdown-changelog

Usage

Changelog adds the ability to insert styled <span>TAG</span> tags that with appropriate CSS are rendered as changelog badges in your documentation. The syntax requires the text to be surrounded by double semi-colon (;) signs.

To add a badge to your documentation simply surround the appropriate tag with double ;.

import markdown

text = """;;fix;;"""
md = markdown.Markdown(extensions=["changelog"])
md.convert(text)
'<p><span class="badge badge-fix">Fix</span></p>'

# or
md = markdown.Markdown(extensions=["markdown_changelog.changelog"])
md.convert(text)
'<p><span class="badge badge-fix">Fix</span></p>'

# or 
from markdown_changelog import ChangelogExtension
md = markdown.Markdown(extensions=[ChangelogExtension()])

md.convert(text)
'<p><span class="badge badge-fix">Fix</span></p>'

# you can also specify version
text = """;;VERv1.2.3;;"""
md.convert(text)
'<p><span class="badge badge-version">v1.2.3</span></p>'

Options

  • inline_style - if True, the CSS style will be set inline rather so no additional CSS file(s) are required
  • auto_capitalize - if True, the tag will be automatically capitalized
  • rounded_corners - if False, the edges of the badge will be square-ish
  • text_color - color of the text (use HEX with # e.g. #FFFFFF)
  • fix_color - color of the Fix tag
  • change_color - color of the Change tag
  • improvement_color - color of the Improvement tag
  • new_color - color of the New tag
  • docs_color - color of the Docs tag
  • efficiency_color - color of the Efficency tag
  • version_color - color of the Version tag

Supported tags

The following tags are supported by default:

  • fix
  • change (or changes changed)
  • improvement (or improvements, enhancement, enhancements)
  • new (or feature)
  • efficiency
  • docs (or documentation)

All must be wrapped in double ;

CCS

Minimum style required to render the badges correctly. You can instead use the inline_style=True if you want the style to be set on each item separately

.badge {
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  color: #ffffff;
  vertical-align: baseline;
  white-space: nowrap;
  background-color: #999999;
  padding: 2px 9px;
  border-radius: 9px;
  text-align: center;
}
.badge-fix {
    background-color: #dc3545;
}
.badge-change {
  background-color: #fd7e14;
}
.badge-improvement {
  background-color: #007bff;
}
.badge-new {
  background-color: #28a745;
}
.badge-docs {
  background-color: #6610f2;
}
.badge-efficiency {
  background-color: #17a2b8;
}
.badge-remove {
  background-color: #4F1319;
}
.badge-version {
  min-width: 75px;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  background-color: #35087E;
}
.badge-square {
  border-radius: 2px;
}

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

markdown_changelog-0.0.4.tar.gz (8.4 kB view hashes)

Uploaded Source

Built Distribution

markdown_changelog-0.0.4-py2.py3-none-any.whl (9.1 kB view hashes)

Uploaded Python 2 Python 3

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