Skip to main content

Adds a taget="_blank" attribute to HTML links in Markdown

Project description

markdown.linktarget
==================

Adds a taget="_blank" attribute to HTML links in Markdown

This extension adds a taget="_blank" attribute to the HTML output when links are parsed from markdown.
It is not added if the href starts with a # so

[link](#something)

will not be touched. Whereas:

[link_text](url) will become <p><a href="url" target="_blank">link_text</a><

Install through pip:

$ pip install MarkdownLinkTarget

To enable the MarkdownLinkTarget package and use it in your markdown generation just add it like so:

import markdown
from MarkdownLinkTarget.linktarget import TargetLinkExtension

result = markdown.markdown(textToRender, extensions=[TargetLinkExtension,]))

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

MarkdownLinkTarget-0.1.0.tar.gz (1.4 kB view hashes)

Uploaded Source

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