Compare commits
33 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d375116807 | ||
|
|
87b9f6c88e | ||
|
|
bda367dad9 | ||
|
|
61e8940486 | ||
|
|
35479d2d3b | ||
|
|
b589863715 | ||
|
|
423b7e948c | ||
|
|
0ea95de4d0 | ||
|
|
ed3eee78d2 | ||
|
|
eb0330bfc6 | ||
|
|
ddda696396 | ||
|
|
0a1343a538 | ||
|
|
9d0b839b73 | ||
|
|
28793ac0b3 | ||
|
|
d3eff11617 | ||
|
|
bd6b581122 | ||
|
|
9231704988 | ||
|
|
c8f7cf63e3 | ||
|
|
12a68a7d14 | ||
|
|
1613c302bc | ||
|
|
478b1c7e13 | ||
|
|
ffcf6cbcb2 | ||
|
|
0ab0452414 | ||
|
|
b62b067cbd | ||
|
|
cb2646cd93 | ||
|
|
9692b5e714 | ||
|
|
ac68c53a7d | ||
|
|
55c9e84f38 | ||
|
|
40dd30419c | ||
|
|
da56f7f56a | ||
|
|
8400b39dd9 | ||
|
|
5fc1441fe7 | ||
|
|
044615eff1 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -8,3 +8,4 @@
|
|||||||
/MANIFEST
|
/MANIFEST
|
||||||
/venv
|
/venv
|
||||||
build/
|
build/
|
||||||
|
.vscode/settings.json
|
||||||
|
|||||||
54
README.rst
54
README.rst
@@ -32,14 +32,14 @@ Convert some HTML to Markdown:
|
|||||||
from markdownify import markdownify as md
|
from markdownify import markdownify as md
|
||||||
md('<b>Yay</b> <a href="http://github.com">GitHub</a>') # > '**Yay** [GitHub](http://github.com)'
|
md('<b>Yay</b> <a href="http://github.com">GitHub</a>') # > '**Yay** [GitHub](http://github.com)'
|
||||||
|
|
||||||
Specify tags to exclude (blacklist):
|
Specify tags to exclude:
|
||||||
|
|
||||||
.. code:: python
|
.. code:: python
|
||||||
|
|
||||||
from markdownify import markdownify as md
|
from markdownify import markdownify as md
|
||||||
md('<b>Yay</b> <a href="http://github.com">GitHub</a>', strip=['a']) # > '**Yay** GitHub'
|
md('<b>Yay</b> <a href="http://github.com">GitHub</a>', strip=['a']) # > '**Yay** GitHub'
|
||||||
|
|
||||||
\...or specify the tags you want to include (whitelist):
|
\...or specify the tags you want to include:
|
||||||
|
|
||||||
.. code:: python
|
.. code:: python
|
||||||
|
|
||||||
@@ -53,11 +53,11 @@ Options
|
|||||||
Markdownify supports the following options:
|
Markdownify supports the following options:
|
||||||
|
|
||||||
strip
|
strip
|
||||||
A list of tags to strip (blacklist). This option can't be used with the
|
A list of tags to strip. This option can't be used with the
|
||||||
``convert`` option.
|
``convert`` option.
|
||||||
|
|
||||||
convert
|
convert
|
||||||
A list of tags to convert (whitelist). This option can't be used with the
|
A list of tags to convert. This option can't be used with the
|
||||||
``strip`` option.
|
``strip`` option.
|
||||||
|
|
||||||
autolinks
|
autolinks
|
||||||
@@ -96,10 +96,56 @@ newline_style
|
|||||||
newline). While the latter convention is non-standard, it is commonly
|
newline). While the latter convention is non-standard, it is commonly
|
||||||
preferred and supported by a lot of interpreters.
|
preferred and supported by a lot of interpreters.
|
||||||
|
|
||||||
|
code_language
|
||||||
|
Defines the language that should be assumed for all ``<pre>`` sections.
|
||||||
|
Useful, if all code on a page is in the same programming language and
|
||||||
|
should be annotated with `````python`` or similar.
|
||||||
|
Defaults to ``''`` (empty string) and can be any string.
|
||||||
|
|
||||||
|
code_language_callback
|
||||||
|
When the HTML code contains ``pre`` tags that in some way provide the code
|
||||||
|
language, for example as class, this callback can be used to extract the
|
||||||
|
language from the tag and prefix it to the converted ``pre`` tag.
|
||||||
|
The callback gets one single argument, an BeautifylSoup object, and returns
|
||||||
|
a string containing the code language, or ``None``.
|
||||||
|
An example to use the class name as code language could be::
|
||||||
|
|
||||||
|
def callback(el):
|
||||||
|
return el['class'][0] if el.has_attr('class') else None
|
||||||
|
|
||||||
|
Defaults to ``None``.
|
||||||
|
|
||||||
|
escape_asterisks
|
||||||
|
If set to ``False``, do not escape ``*`` to ``\*`` in text.
|
||||||
|
Defaults to ``True``.
|
||||||
|
|
||||||
|
escape_underscores
|
||||||
|
If set to ``False``, do not escape ``_`` to ``\_`` in text.
|
||||||
|
Defaults to ``True``.
|
||||||
|
|
||||||
|
keep_inline_images_in
|
||||||
|
Images are converted to their alt-text when the images are located inside
|
||||||
|
headlines or table cells. If some inline images should be converted to
|
||||||
|
markdown images instead, this option can be set to a list of parent tags
|
||||||
|
that should be allowed to contain inline images, for example ``['td']``.
|
||||||
|
Defaults to an empty list.
|
||||||
|
|
||||||
Options may be specified as kwargs to the ``markdownify`` function, or as a
|
Options may be specified as kwargs to the ``markdownify`` function, or as a
|
||||||
nested ``Options`` class in ``MarkdownConverter`` subclasses.
|
nested ``Options`` class in ``MarkdownConverter`` subclasses.
|
||||||
|
|
||||||
|
|
||||||
|
Converting BeautifulSoup objects
|
||||||
|
================================
|
||||||
|
|
||||||
|
.. code:: python
|
||||||
|
|
||||||
|
from markdownify import MarkdownConverter
|
||||||
|
|
||||||
|
# Create shorthand method for conversion
|
||||||
|
def md(soup, **options):
|
||||||
|
return MarkdownConverter(**options).convert_soup(soup)
|
||||||
|
|
||||||
|
|
||||||
Creating Custom Converters
|
Creating Custom Converters
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
|
|||||||
@@ -25,12 +25,6 @@ ASTERISK = '*'
|
|||||||
UNDERSCORE = '_'
|
UNDERSCORE = '_'
|
||||||
|
|
||||||
|
|
||||||
def escape(text):
|
|
||||||
if not text:
|
|
||||||
return ''
|
|
||||||
return text.replace('_', r'\_')
|
|
||||||
|
|
||||||
|
|
||||||
def chomp(text):
|
def chomp(text):
|
||||||
"""
|
"""
|
||||||
If the text in an inline tag like b, a, or em contains a leading or trailing
|
If the text in an inline tag like b, a, or em contains a leading or trailing
|
||||||
@@ -68,9 +62,14 @@ class MarkdownConverter(object):
|
|||||||
class DefaultOptions:
|
class DefaultOptions:
|
||||||
autolinks = True
|
autolinks = True
|
||||||
bullets = '*+-' # An iterable of bullet types.
|
bullets = '*+-' # An iterable of bullet types.
|
||||||
|
code_language = ''
|
||||||
|
code_language_callback = None
|
||||||
convert = None
|
convert = None
|
||||||
default_title = False
|
default_title = False
|
||||||
|
escape_asterisks = True
|
||||||
|
escape_underscores = True
|
||||||
heading_style = UNDERLINED
|
heading_style = UNDERLINED
|
||||||
|
keep_inline_images_in = []
|
||||||
newline_style = SPACES
|
newline_style = SPACES
|
||||||
strip = None
|
strip = None
|
||||||
strong_em_symbol = ASTERISK
|
strong_em_symbol = ASTERISK
|
||||||
@@ -92,6 +91,9 @@ class MarkdownConverter(object):
|
|||||||
|
|
||||||
def convert(self, html):
|
def convert(self, html):
|
||||||
soup = BeautifulSoup(html, 'html.parser')
|
soup = BeautifulSoup(html, 'html.parser')
|
||||||
|
return self.convert_soup(soup)
|
||||||
|
|
||||||
|
def convert_soup(self, soup):
|
||||||
return self.process_tag(soup, convert_as_inline=False, children_only=True)
|
return self.process_tag(soup, convert_as_inline=False, children_only=True)
|
||||||
|
|
||||||
def process_tag(self, node, convert_as_inline, children_only=False):
|
def process_tag(self, node, convert_as_inline, children_only=False):
|
||||||
@@ -154,7 +156,7 @@ class MarkdownConverter(object):
|
|||||||
text = whitespace_re.sub(' ', text)
|
text = whitespace_re.sub(' ', text)
|
||||||
|
|
||||||
if el.parent.name != 'code':
|
if el.parent.name != 'code':
|
||||||
text = escape(text)
|
text = self.escape(text)
|
||||||
|
|
||||||
# remove trailing whitespaces if any of the following condition is true:
|
# remove trailing whitespaces if any of the following condition is true:
|
||||||
# - current text node is the last node in li
|
# - current text node is the last node in li
|
||||||
@@ -192,6 +194,15 @@ class MarkdownConverter(object):
|
|||||||
else:
|
else:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
def escape(self, text):
|
||||||
|
if not text:
|
||||||
|
return ''
|
||||||
|
if self.options['escape_asterisks']:
|
||||||
|
text = text.replace('*', r'\*')
|
||||||
|
if self.options['escape_underscores']:
|
||||||
|
text = text.replace('_', r'\_')
|
||||||
|
return text
|
||||||
|
|
||||||
def indent(self, text, level):
|
def indent(self, text, level):
|
||||||
return line_beginning_re.sub('\t' * level, text) if text else ''
|
return line_beginning_re.sub('\t' * level, text) if text else ''
|
||||||
|
|
||||||
@@ -271,7 +282,8 @@ class MarkdownConverter(object):
|
|||||||
src = el.attrs.get('src', None) or ''
|
src = el.attrs.get('src', None) or ''
|
||||||
title = el.attrs.get('title', None) or ''
|
title = el.attrs.get('title', None) or ''
|
||||||
title_part = ' "%s"' % title.replace('"', r'\"') if title else ''
|
title_part = ' "%s"' % title.replace('"', r'\"') if title else ''
|
||||||
if convert_as_inline:
|
if (convert_as_inline
|
||||||
|
and el.parent.name not in self.options['keep_inline_images_in']):
|
||||||
return alt
|
return alt
|
||||||
|
|
||||||
return '' % (alt, src, title_part)
|
return '' % (alt, src, title_part)
|
||||||
@@ -314,7 +326,7 @@ class MarkdownConverter(object):
|
|||||||
el = el.parent
|
el = el.parent
|
||||||
bullets = self.options['bullets']
|
bullets = self.options['bullets']
|
||||||
bullet = bullets[depth % len(bullets)]
|
bullet = bullets[depth % len(bullets)]
|
||||||
return '%s %s\n' % (bullet, text or '')
|
return '%s %s\n' % (bullet, (text or '').strip())
|
||||||
|
|
||||||
def convert_p(self, el, text, convert_as_inline):
|
def convert_p(self, el, text, convert_as_inline):
|
||||||
if convert_as_inline:
|
if convert_as_inline:
|
||||||
@@ -324,7 +336,12 @@ class MarkdownConverter(object):
|
|||||||
def convert_pre(self, el, text, convert_as_inline):
|
def convert_pre(self, el, text, convert_as_inline):
|
||||||
if not text:
|
if not text:
|
||||||
return ''
|
return ''
|
||||||
return '\n```\n%s\n```\n' % text
|
code_language = self.options['code_language']
|
||||||
|
|
||||||
|
if self.options['code_language_callback']:
|
||||||
|
code_language = self.options['code_language_callback'](el) or code_language
|
||||||
|
|
||||||
|
return '\n```%s\n%s\n```\n' % (code_language, text)
|
||||||
|
|
||||||
convert_s = convert_del
|
convert_s = convert_del
|
||||||
|
|
||||||
|
|||||||
4
setup.py
4
setup.py
@@ -10,7 +10,7 @@ read = lambda filepath: codecs.open(filepath, 'r', 'utf-8').read()
|
|||||||
pkgmeta = {
|
pkgmeta = {
|
||||||
'__title__': 'markdownify',
|
'__title__': 'markdownify',
|
||||||
'__author__': 'Matthew Tretter',
|
'__author__': 'Matthew Tretter',
|
||||||
'__version__': '0.9.3',
|
'__version__': '0.11.0',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -70,7 +70,7 @@ setup(
|
|||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
setup_requires=[
|
setup_requires=[
|
||||||
'flake8>=3.8,<4',
|
'flake8>=3.8,<5',
|
||||||
],
|
],
|
||||||
tests_require=[
|
tests_require=[
|
||||||
'pytest>=6.2,<7',
|
'pytest>=6.2,<7',
|
||||||
|
|||||||
@@ -133,12 +133,13 @@ def test_hn_nested_simple_tag():
|
|||||||
|
|
||||||
def test_hn_nested_img():
|
def test_hn_nested_img():
|
||||||
image_attributes_to_markdown = [
|
image_attributes_to_markdown = [
|
||||||
("", ""),
|
("", "", ""),
|
||||||
("alt='Alt Text'", "Alt Text"),
|
("alt='Alt Text'", "Alt Text", ""),
|
||||||
("alt='Alt Text' title='Optional title'", "Alt Text"),
|
("alt='Alt Text' title='Optional title'", "Alt Text", " \"Optional title\""),
|
||||||
]
|
]
|
||||||
for image_attributes, markdown in image_attributes_to_markdown:
|
for image_attributes, markdown, title in image_attributes_to_markdown:
|
||||||
assert md('<h3>A <img src="/path/to/img.jpg " ' + image_attributes + '/> B</h3>') == '### A ' + markdown + ' B\n\n'
|
assert md('<h3>A <img src="/path/to/img.jpg" ' + image_attributes + '/> B</h3>') == '### A ' + markdown + ' B\n\n'
|
||||||
|
assert md('<h3>A <img src="/path/to/img.jpg" ' + image_attributes + '/> B</h3>', keep_inline_images_in=['h3']) == '### A  B\n\n'
|
||||||
|
|
||||||
|
|
||||||
def test_hn_atx_headings():
|
def test_hn_atx_headings():
|
||||||
@@ -210,3 +211,17 @@ def test_sub():
|
|||||||
def test_sup():
|
def test_sup():
|
||||||
assert md('<sup>foo</sup>') == 'foo'
|
assert md('<sup>foo</sup>') == 'foo'
|
||||||
assert md('<sup>foo</sup>', sup_symbol='^') == '^foo^'
|
assert md('<sup>foo</sup>', sup_symbol='^') == '^foo^'
|
||||||
|
|
||||||
|
|
||||||
|
def test_lang():
|
||||||
|
assert md('<pre>test\n foo\nbar</pre>', code_language='python') == '\n```python\ntest\n foo\nbar\n```\n'
|
||||||
|
assert md('<pre><code>test\n foo\nbar</code></pre>', code_language='javascript') == '\n```javascript\ntest\n foo\nbar\n```\n'
|
||||||
|
|
||||||
|
|
||||||
|
def test_lang_callback():
|
||||||
|
def callback(el):
|
||||||
|
return el['class'][0] if el.has_attr('class') else None
|
||||||
|
|
||||||
|
assert md('<pre class="python">test\n foo\nbar</pre>', code_language_callback=callback) == '\n```python\ntest\n foo\nbar\n```\n'
|
||||||
|
assert md('<pre class="javascript"><code>test\n foo\nbar</code></pre>', code_language_callback=callback) == '\n```javascript\ntest\n foo\nbar\n```\n'
|
||||||
|
assert md('<pre class="javascript"><code class="javascript">test\n foo\nbar</code></pre>', code_language_callback=callback) == '\n```javascript\ntest\n foo\nbar\n```\n'
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
from markdownify import MarkdownConverter
|
from markdownify import MarkdownConverter
|
||||||
|
from bs4 import BeautifulSoup
|
||||||
|
|
||||||
|
|
||||||
class ImageBlockConverter(MarkdownConverter):
|
class ImageBlockConverter(MarkdownConverter):
|
||||||
@@ -16,3 +17,9 @@ def test_img():
|
|||||||
|
|
||||||
assert md('<img src="/path/to/img.jpg" alt="Alt text" title="Optional title" />') == '\n\n'
|
assert md('<img src="/path/to/img.jpg" alt="Alt text" title="Optional title" />') == '\n\n'
|
||||||
assert md('<img src="/path/to/img.jpg" alt="Alt text" />') == '\n\n'
|
assert md('<img src="/path/to/img.jpg" alt="Alt text" />') == '\n\n'
|
||||||
|
|
||||||
|
|
||||||
|
def test_soup():
|
||||||
|
html = '<b>test</b>'
|
||||||
|
soup = BeautifulSoup(html, 'html.parser')
|
||||||
|
assert MarkdownConverter().convert_soup(soup) == '**test**'
|
||||||
|
|||||||
@@ -1,8 +1,14 @@
|
|||||||
from markdownify import markdownify as md
|
from markdownify import markdownify as md
|
||||||
|
|
||||||
|
|
||||||
|
def test_asterisks():
|
||||||
|
assert md('*hey*dude*') == r'\*hey\*dude\*'
|
||||||
|
assert md('*hey*dude*', escape_asterisks=False) == r'*hey*dude*'
|
||||||
|
|
||||||
|
|
||||||
def test_underscore():
|
def test_underscore():
|
||||||
assert md('_hey_dude_') == r'\_hey\_dude\_'
|
assert md('_hey_dude_') == r'\_hey\_dude\_'
|
||||||
|
assert md('_hey_dude_', escape_underscores=False) == r'_hey_dude_'
|
||||||
|
|
||||||
|
|
||||||
def test_xml_entities():
|
def test_xml_entities():
|
||||||
|
|||||||
@@ -51,6 +51,14 @@ def test_nested_ols():
|
|||||||
|
|
||||||
def test_ul():
|
def test_ul():
|
||||||
assert md('<ul><li>a</li><li>b</li></ul>') == '* a\n* b\n'
|
assert md('<ul><li>a</li><li>b</li></ul>') == '* a\n* b\n'
|
||||||
|
assert md("""<ul>
|
||||||
|
<li>
|
||||||
|
a
|
||||||
|
</li>
|
||||||
|
<li> b </li>
|
||||||
|
<li> c
|
||||||
|
</li>
|
||||||
|
</ul>""") == '* a\n* b\n* c\n'
|
||||||
|
|
||||||
|
|
||||||
def test_inline_ul():
|
def test_inline_ul():
|
||||||
|
|||||||
Reference in New Issue
Block a user