Compare commits
58 Commits
0.7.2
...
tdgroot-co
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
61e8940486 | ||
|
|
35479d2d3b | ||
|
|
b589863715 | ||
|
|
423b7e948c | ||
|
|
0ea95de4d0 | ||
|
|
ed3eee78d2 | ||
|
|
ddda696396 | ||
|
|
0a1343a538 | ||
|
|
9d0b839b73 | ||
|
|
d3eff11617 | ||
|
|
bd6b581122 | ||
|
|
c8f7cf63e3 | ||
|
|
12a68a7d14 | ||
|
|
478b1c7e13 | ||
|
|
ffcf6cbcb2 | ||
|
|
0ab0452414 | ||
|
|
b62b067cbd | ||
|
|
cb2646cd93 | ||
|
|
9692b5e714 | ||
|
|
ac68c53a7d | ||
|
|
40dd30419c | ||
|
|
da56f7f56a | ||
|
|
8400b39dd9 | ||
|
|
5fc1441fe7 | ||
|
|
044615eff1 | ||
|
|
dbd9f3f3d2 | ||
|
|
0fdeb1ff6e | ||
|
|
6a2f3a4b42 | ||
|
|
22180a166d | ||
|
|
16d8a0e1f7 | ||
|
|
4aa6cf2a24 | ||
|
|
828e116530 | ||
|
|
62e9f0de02 | ||
|
|
cec570fc49 | ||
|
|
a6a31624ad | ||
|
|
6f3732307d | ||
|
|
8f6d7e500d | ||
|
|
e96351b666 | ||
|
|
129c4ef060 | ||
|
|
9cb940cbc0 | ||
|
|
70ef9b6e48 | ||
|
|
91d53ddd5a | ||
|
|
079f32f6cd | ||
|
|
89b577e91e | ||
|
|
4bf2ea44fc | ||
|
|
77797ebb79 | ||
|
|
9f3c4c9fa0 | ||
|
|
967db26b3a | ||
|
|
ea81407b87 | ||
|
|
e6da15c173 | ||
|
|
7dac92e85e | ||
|
|
fc29483899 | ||
|
|
bd7a8d6990 | ||
|
|
ddfbf6a364 | ||
|
|
91a64e3cd4 | ||
|
|
7685738344 | ||
|
|
92a73c8dfe | ||
|
|
3354f143d8 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -8,3 +8,4 @@
|
|||||||
/MANIFEST
|
/MANIFEST
|
||||||
/venv
|
/venv
|
||||||
build/
|
build/
|
||||||
|
.vscode/settings.json
|
||||||
|
|||||||
88
README.rst
88
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,16 +53,20 @@ 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
|
||||||
A boolean indicating whether the "automatic link" style should be used when
|
A boolean indicating whether the "automatic link" style should be used when
|
||||||
a ``a`` tag's contents match its href. Defaults to ``True``
|
a ``a`` tag's contents match its href. Defaults to ``True``.
|
||||||
|
|
||||||
|
default_title
|
||||||
|
A boolean to enable setting the title of a link to its href, if no title is
|
||||||
|
given. Defaults to ``False``.
|
||||||
|
|
||||||
heading_style
|
heading_style
|
||||||
Defines how headings should be converted. Accepted values are ``ATX``,
|
Defines how headings should be converted. Accepted values are ``ATX``,
|
||||||
@@ -80,6 +84,11 @@ strong_em_symbol
|
|||||||
*emphasized* texts. Either of these symbols can be chosen by the options
|
*emphasized* texts. Either of these symbols can be chosen by the options
|
||||||
``ASTERISK`` (default) or ``UNDERSCORE`` respectively.
|
``ASTERISK`` (default) or ``UNDERSCORE`` respectively.
|
||||||
|
|
||||||
|
sub_symbol, sup_symbol
|
||||||
|
Define the chars that surround ``<sub>`` and ``<sup>`` text. Defaults to an
|
||||||
|
empty string, because this is non-standard behavior. Could be something like
|
||||||
|
``~`` and ``^`` to result in ``~sub~`` and ``^sup^``.
|
||||||
|
|
||||||
newline_style
|
newline_style
|
||||||
Defines the style of marking linebreaks (``<br>``) in markdown. The default
|
Defines the style of marking linebreaks (``<br>``) in markdown. The default
|
||||||
value ``SPACES`` of this option will adopt the usual two spaces and a newline,
|
value ``SPACES`` of this option will adopt the usual two spaces and a newline,
|
||||||
@@ -87,10 +96,79 @@ 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
|
||||||
|
==========================
|
||||||
|
|
||||||
|
If you have a special usecase that calls for a special conversion, you can
|
||||||
|
always inherit from ``MarkdownConverter`` and override the method you want to
|
||||||
|
change:
|
||||||
|
|
||||||
|
.. code:: python
|
||||||
|
|
||||||
|
from markdownify import MarkdownConverter
|
||||||
|
|
||||||
|
class ImageBlockConverter(MarkdownConverter):
|
||||||
|
"""
|
||||||
|
Create a custom MarkdownConverter that adds two newlines after an image
|
||||||
|
"""
|
||||||
|
def convert_img(self, el, text, convert_as_inline):
|
||||||
|
return super().convert_img(el, text, convert_as_inline) + '\n\n'
|
||||||
|
|
||||||
|
# Create shorthand method for conversion
|
||||||
|
def md(html, **options):
|
||||||
|
return ImageBlockConverter(**options).convert(html)
|
||||||
|
|
||||||
|
|
||||||
Development
|
Development
|
||||||
===========
|
===========
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
from bs4 import BeautifulSoup, NavigableString, Comment
|
from bs4 import BeautifulSoup, NavigableString, Comment, Doctype
|
||||||
import re
|
import re
|
||||||
import six
|
import six
|
||||||
|
|
||||||
@@ -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
|
||||||
@@ -44,19 +38,43 @@ def chomp(text):
|
|||||||
return (prefix, suffix, text)
|
return (prefix, suffix, text)
|
||||||
|
|
||||||
|
|
||||||
|
def abstract_inline_conversion(markup_fn):
|
||||||
|
"""
|
||||||
|
This abstracts all simple inline tags like b, em, del, ...
|
||||||
|
Returns a function that wraps the chomped text in a pair of the string
|
||||||
|
that is returned by markup_fn. markup_fn is necessary to allow for
|
||||||
|
references to self.strong_em_symbol etc.
|
||||||
|
"""
|
||||||
|
def implementation(self, el, text, convert_as_inline):
|
||||||
|
markup = markup_fn(self)
|
||||||
|
prefix, suffix, text = chomp(text)
|
||||||
|
if not text:
|
||||||
|
return ''
|
||||||
|
return '%s%s%s%s%s' % (prefix, markup, text, markup, suffix)
|
||||||
|
return implementation
|
||||||
|
|
||||||
|
|
||||||
def _todict(obj):
|
def _todict(obj):
|
||||||
return dict((k, getattr(obj, k)) for k in dir(obj) if not k.startswith('_'))
|
return dict((k, getattr(obj, k)) for k in dir(obj) if not k.startswith('_'))
|
||||||
|
|
||||||
|
|
||||||
class MarkdownConverter(object):
|
class MarkdownConverter(object):
|
||||||
class DefaultOptions:
|
class DefaultOptions:
|
||||||
strip = None
|
|
||||||
convert = None
|
|
||||||
autolinks = True
|
autolinks = True
|
||||||
heading_style = UNDERLINED
|
|
||||||
bullets = '*+-' # An iterable of bullet types.
|
bullets = '*+-' # An iterable of bullet types.
|
||||||
strong_em_symbol = ASTERISK
|
code_language = ''
|
||||||
|
code_language_callback = None
|
||||||
|
convert = None
|
||||||
|
default_title = False
|
||||||
|
escape_asterisks = True
|
||||||
|
escape_underscores = True
|
||||||
|
heading_style = UNDERLINED
|
||||||
|
keep_inline_images_in = []
|
||||||
newline_style = SPACES
|
newline_style = SPACES
|
||||||
|
strip = None
|
||||||
|
strong_em_symbol = ASTERISK
|
||||||
|
sub_symbol = ''
|
||||||
|
sup_symbol = ''
|
||||||
|
|
||||||
class Options(DefaultOptions):
|
class Options(DefaultOptions):
|
||||||
pass
|
pass
|
||||||
@@ -73,26 +91,48 @@ 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):
|
||||||
text = ''
|
text = ''
|
||||||
# markdown headings can't include block elements (elements w/newlines)
|
|
||||||
|
# markdown headings or cells can't include
|
||||||
|
# block elements (elements w/newlines)
|
||||||
isHeading = html_heading_re.match(node.name) is not None
|
isHeading = html_heading_re.match(node.name) is not None
|
||||||
|
isCell = node.name in ['td', 'th']
|
||||||
convert_children_as_inline = convert_as_inline
|
convert_children_as_inline = convert_as_inline
|
||||||
|
|
||||||
if not children_only and isHeading:
|
if not children_only and (isHeading or isCell):
|
||||||
convert_children_as_inline = True
|
convert_children_as_inline = True
|
||||||
|
|
||||||
# Remove whitespace-only textnodes in lists
|
# Remove whitespace-only textnodes in purely nested nodes
|
||||||
if node.name in ['ol', 'ul', 'li']:
|
def is_nested_node(el):
|
||||||
|
return el and el.name in ['ol', 'ul', 'li',
|
||||||
|
'table', 'thead', 'tbody', 'tfoot',
|
||||||
|
'tr', 'td', 'th']
|
||||||
|
|
||||||
|
if is_nested_node(node):
|
||||||
for el in node.children:
|
for el in node.children:
|
||||||
if isinstance(el, NavigableString) and six.text_type(el).strip() == '':
|
# Only extract (remove) whitespace-only text node if any of the
|
||||||
|
# conditions is true:
|
||||||
|
# - el is the first element in its parent
|
||||||
|
# - el is the last element in its parent
|
||||||
|
# - el is adjacent to an nested node
|
||||||
|
can_extract = (not el.previous_sibling
|
||||||
|
or not el.next_sibling
|
||||||
|
or is_nested_node(el.previous_sibling)
|
||||||
|
or is_nested_node(el.next_sibling))
|
||||||
|
if (isinstance(el, NavigableString)
|
||||||
|
and six.text_type(el).strip() == ''
|
||||||
|
and can_extract):
|
||||||
el.extract()
|
el.extract()
|
||||||
|
|
||||||
# Convert the children first
|
# Convert the children first
|
||||||
for el in node.children:
|
for el in node.children:
|
||||||
if isinstance(el, Comment):
|
if isinstance(el, Comment) or isinstance(el, Doctype):
|
||||||
continue
|
continue
|
||||||
elif isinstance(el, NavigableString):
|
elif isinstance(el, NavigableString):
|
||||||
text += self.process_text(el)
|
text += self.process_text(el)
|
||||||
@@ -107,10 +147,26 @@ class MarkdownConverter(object):
|
|||||||
return text
|
return text
|
||||||
|
|
||||||
def process_text(self, el):
|
def process_text(self, el):
|
||||||
text = six.text_type(el)
|
text = six.text_type(el) or ''
|
||||||
if el.parent.name == 'li':
|
|
||||||
return escape(all_whitespace_re.sub(' ', text or '')).rstrip()
|
# dont remove any whitespace when handling pre or code in pre
|
||||||
return escape(whitespace_re.sub(' ', text or ''))
|
if not (el.parent.name == 'pre'
|
||||||
|
or (el.parent.name == 'code'
|
||||||
|
and el.parent.parent.name == 'pre')):
|
||||||
|
text = whitespace_re.sub(' ', text)
|
||||||
|
|
||||||
|
if el.parent.name != 'code':
|
||||||
|
text = self.escape(text)
|
||||||
|
|
||||||
|
# remove trailing whitespaces if any of the following condition is true:
|
||||||
|
# - current text node is the last node in li
|
||||||
|
# - current text node is followed by an embedded list
|
||||||
|
if (el.parent.name == 'li'
|
||||||
|
and (not el.next_sibling
|
||||||
|
or el.next_sibling.name in ['ul', 'ol'])):
|
||||||
|
text = text.rstrip()
|
||||||
|
|
||||||
|
return text
|
||||||
|
|
||||||
def __getattr__(self, attr):
|
def __getattr__(self, attr):
|
||||||
# Handle headings
|
# Handle headings
|
||||||
@@ -138,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 ''
|
||||||
|
|
||||||
@@ -149,19 +214,21 @@ class MarkdownConverter(object):
|
|||||||
prefix, suffix, text = chomp(text)
|
prefix, suffix, text = chomp(text)
|
||||||
if not text:
|
if not text:
|
||||||
return ''
|
return ''
|
||||||
if convert_as_inline:
|
|
||||||
return text
|
|
||||||
href = el.get('href')
|
href = el.get('href')
|
||||||
title = el.get('title')
|
title = el.get('title')
|
||||||
# For the replacement see #29: text nodes underscores are escaped
|
# For the replacement see #29: text nodes underscores are escaped
|
||||||
if self.options['autolinks'] and text.replace(r'\_', '_') == href and not title:
|
if (self.options['autolinks']
|
||||||
|
and text.replace(r'\_', '_') == href
|
||||||
|
and not title
|
||||||
|
and not self.options['default_title']):
|
||||||
# Shortcut syntax
|
# Shortcut syntax
|
||||||
return '<%s>' % href
|
return '<%s>' % href
|
||||||
|
if self.options['default_title'] and not title:
|
||||||
|
title = href
|
||||||
title_part = ' "%s"' % title.replace('"', r'\"') if title else ''
|
title_part = ' "%s"' % title.replace('"', r'\"') if title else ''
|
||||||
return '%s[%s](%s%s)%s' % (prefix, text, href, title_part, suffix) if href else text
|
return '%s[%s](%s%s)%s' % (prefix, text, href, title_part, suffix) if href else text
|
||||||
|
|
||||||
def convert_b(self, el, text, convert_as_inline):
|
convert_b = abstract_inline_conversion(lambda self: 2 * self.options['strong_em_symbol'])
|
||||||
return self.convert_strong(el, text, convert_as_inline)
|
|
||||||
|
|
||||||
def convert_blockquote(self, el, text, convert_as_inline):
|
def convert_blockquote(self, el, text, convert_as_inline):
|
||||||
|
|
||||||
@@ -179,12 +246,17 @@ class MarkdownConverter(object):
|
|||||||
else:
|
else:
|
||||||
return ' \n'
|
return ' \n'
|
||||||
|
|
||||||
def convert_em(self, el, text, convert_as_inline):
|
def convert_code(self, el, text, convert_as_inline):
|
||||||
em_tag = self.options['strong_em_symbol']
|
if el.parent.name == 'pre':
|
||||||
prefix, suffix, text = chomp(text)
|
return text
|
||||||
if not text:
|
converter = abstract_inline_conversion(lambda self: '`')
|
||||||
return ''
|
return converter(self, el, text, convert_as_inline)
|
||||||
return '%s%s%s%s%s' % (prefix, em_tag, text, em_tag, suffix)
|
|
||||||
|
convert_del = abstract_inline_conversion(lambda self: '~~')
|
||||||
|
|
||||||
|
convert_em = abstract_inline_conversion(lambda self: self.options['strong_em_symbol'])
|
||||||
|
|
||||||
|
convert_kbd = convert_code
|
||||||
|
|
||||||
def convert_hn(self, n, el, text, convert_as_inline):
|
def convert_hn(self, n, el, text, convert_as_inline):
|
||||||
if convert_as_inline:
|
if convert_as_inline:
|
||||||
@@ -200,8 +272,21 @@ class MarkdownConverter(object):
|
|||||||
return '%s %s %s\n\n' % (hashes, text, hashes)
|
return '%s %s %s\n\n' % (hashes, text, hashes)
|
||||||
return '%s %s\n\n' % (hashes, text)
|
return '%s %s\n\n' % (hashes, text)
|
||||||
|
|
||||||
def convert_i(self, el, text, convert_as_inline):
|
def convert_hr(self, el, text, convert_as_inline):
|
||||||
return self.convert_em(el, text, convert_as_inline)
|
return '\n\n---\n\n'
|
||||||
|
|
||||||
|
convert_i = convert_em
|
||||||
|
|
||||||
|
def convert_img(self, el, text, convert_as_inline):
|
||||||
|
alt = el.attrs.get('alt', None) or ''
|
||||||
|
src = el.attrs.get('src', None) or ''
|
||||||
|
title = el.attrs.get('title', None) or ''
|
||||||
|
title_part = ' "%s"' % title.replace('"', r'\"') if title else ''
|
||||||
|
if (convert_as_inline
|
||||||
|
and el.parent.name not in self.options['keep_inline_images_in']):
|
||||||
|
return alt
|
||||||
|
|
||||||
|
return '' % (alt, src, title_part)
|
||||||
|
|
||||||
def convert_list(self, el, text, convert_as_inline):
|
def convert_list(self, el, text, convert_as_inline):
|
||||||
|
|
||||||
@@ -241,49 +326,56 @@ 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:
|
||||||
return text
|
return text
|
||||||
return '%s\n\n' % text if text else ''
|
return '%s\n\n' % text if text else ''
|
||||||
|
|
||||||
def convert_strong(self, el, text, convert_as_inline):
|
def convert_pre(self, el, text, convert_as_inline):
|
||||||
strong_tag = 2 * self.options['strong_em_symbol']
|
|
||||||
prefix, suffix, text = chomp(text)
|
|
||||||
if not text:
|
if not text:
|
||||||
return ''
|
return ''
|
||||||
return '%s%s%s%s%s' % (prefix, strong_tag, text, strong_tag, suffix)
|
code_language = self.options['code_language']
|
||||||
|
|
||||||
def convert_img(self, el, text, convert_as_inline):
|
if self.options['code_language_callback']:
|
||||||
alt = el.attrs.get('alt', None) or ''
|
code_language = self.options['code_language_callback'](el) or code_language
|
||||||
src = el.attrs.get('src', None) or ''
|
|
||||||
title = el.attrs.get('title', None) or ''
|
|
||||||
title_part = ' "%s"' % title.replace('"', r'\"') if title else ''
|
|
||||||
if convert_as_inline:
|
|
||||||
return alt
|
|
||||||
|
|
||||||
return '' % (alt, src, title_part)
|
return '\n```%s\n%s\n```\n' % (code_language, text)
|
||||||
|
|
||||||
|
convert_s = convert_del
|
||||||
|
|
||||||
|
convert_strong = convert_b
|
||||||
|
|
||||||
|
convert_samp = convert_code
|
||||||
|
|
||||||
|
convert_sub = abstract_inline_conversion(lambda self: self.options['sub_symbol'])
|
||||||
|
|
||||||
|
convert_sup = abstract_inline_conversion(lambda self: self.options['sup_symbol'])
|
||||||
|
|
||||||
def convert_table(self, el, text, convert_as_inline):
|
def convert_table(self, el, text, convert_as_inline):
|
||||||
rows = el.find_all('tr')
|
return '\n\n' + text + '\n'
|
||||||
text_data = []
|
|
||||||
for row in rows:
|
|
||||||
headers = row.find_all('th')
|
|
||||||
columns = row.find_all('td')
|
|
||||||
if len(headers) > 0:
|
|
||||||
headers = [head.text.strip() for head in headers]
|
|
||||||
text_data.append('| ' + ' | '.join(headers) + ' |')
|
|
||||||
text_data.append('| ' + ' | '.join(['---'] * len(headers)) + ' |')
|
|
||||||
elif len(columns) > 0:
|
|
||||||
columns = [colm.text.strip() for colm in columns]
|
|
||||||
text_data.append('| ' + ' | '.join(columns) + ' |')
|
|
||||||
else:
|
|
||||||
continue
|
|
||||||
return '\n'.join(text_data)
|
|
||||||
|
|
||||||
def convert_hr(self, el, text, convert_as_inline):
|
def convert_td(self, el, text, convert_as_inline):
|
||||||
return '\n\n---\n\n'
|
return ' ' + text + ' |'
|
||||||
|
|
||||||
|
def convert_th(self, el, text, convert_as_inline):
|
||||||
|
return ' ' + text + ' |'
|
||||||
|
|
||||||
|
def convert_tr(self, el, text, convert_as_inline):
|
||||||
|
cells = el.find_all(['td', 'th'])
|
||||||
|
is_headrow = all([cell.name == 'th' for cell in cells])
|
||||||
|
overline = ''
|
||||||
|
underline = ''
|
||||||
|
if is_headrow and not el.previous_sibling:
|
||||||
|
# first row and is headline: print headline underline
|
||||||
|
underline += '| ' + ' | '.join(['---'] * len(cells)) + ' |' + '\n'
|
||||||
|
elif not el.previous_sibling and not el.parent.name != 'table':
|
||||||
|
# first row, not headline, and the parent is sth. like tbody:
|
||||||
|
# print empty headline above this row
|
||||||
|
overline += '| ' + ' | '.join([''] * len(cells)) + ' |' + '\n'
|
||||||
|
overline += '| ' + ' | '.join(['---'] * len(cells)) + ' |' + '\n'
|
||||||
|
return overline + '|' + text + '\n' + underline
|
||||||
|
|
||||||
|
|
||||||
def markdownify(html, **options):
|
def markdownify(html, **options):
|
||||||
|
|||||||
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.7.2',
|
'__version__': '0.10.3',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -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',
|
||||||
|
|||||||
@@ -1,6 +1,17 @@
|
|||||||
from markdownify import markdownify as md
|
from markdownify import markdownify as md
|
||||||
|
|
||||||
|
|
||||||
|
def test_chomp():
|
||||||
|
assert md(' <b></b> ') == ' '
|
||||||
|
assert md(' <b> </b> ') == ' '
|
||||||
|
assert md(' <b> </b> ') == ' '
|
||||||
|
assert md(' <b> </b> ') == ' '
|
||||||
|
assert md(' <b>s </b> ') == ' **s** '
|
||||||
|
assert md(' <b> s</b> ') == ' **s** '
|
||||||
|
assert md(' <b> s </b> ') == ' **s** '
|
||||||
|
assert md(' <b> s </b> ') == ' **s** '
|
||||||
|
|
||||||
|
|
||||||
def test_nested():
|
def test_nested():
|
||||||
text = md('<p>This is an <a href="http://example.com/">example link</a>.</p>')
|
text = md('<p>This is an <a href="http://example.com/">example link</a>.</p>')
|
||||||
assert text == 'This is an [example link](http://example.com/).\n\n'
|
assert text == 'This is an [example link](http://example.com/).\n\n'
|
||||||
@@ -14,3 +25,15 @@ def test_ignore_comments():
|
|||||||
def test_ignore_comments_with_other_tags():
|
def test_ignore_comments_with_other_tags():
|
||||||
text = md("<!-- This is a comment --><a href='http://example.com/'>example link</a>")
|
text = md("<!-- This is a comment --><a href='http://example.com/'>example link</a>")
|
||||||
assert text == "[example link](http://example.com/)"
|
assert text == "[example link](http://example.com/)"
|
||||||
|
|
||||||
|
|
||||||
|
def test_code_with_tricky_content():
|
||||||
|
assert md('<code>></code>') == "`>`"
|
||||||
|
assert md('<code>/home/</code><b>username</b>') == "`/home/`**username**"
|
||||||
|
assert md('First line <code>blah blah<br />blah blah</code> second line') \
|
||||||
|
== "First line `blah blah \nblah blah` second line"
|
||||||
|
|
||||||
|
|
||||||
|
def test_special_tags():
|
||||||
|
assert md('<!DOCTYPE html>') == ''
|
||||||
|
assert md('<![CDATA[foobar]]>') == 'foobar'
|
||||||
|
|||||||
@@ -1,130 +1,17 @@
|
|||||||
from markdownify import markdownify as md, ATX, ATX_CLOSED, BACKSLASH, UNDERSCORE
|
from markdownify import markdownify as md, ATX, ATX_CLOSED, BACKSLASH, UNDERSCORE
|
||||||
import re
|
|
||||||
|
|
||||||
|
|
||||||
nested_uls = """
|
def inline_tests(tag, markup):
|
||||||
<ul>
|
# test template for different inline tags
|
||||||
<li>1
|
assert md(f'<{tag}>Hello</{tag}>') == f'{markup}Hello{markup}'
|
||||||
<ul>
|
assert md(f'foo <{tag}>Hello</{tag}> bar') == f'foo {markup}Hello{markup} bar'
|
||||||
<li>a
|
assert md(f'foo<{tag}> Hello</{tag}> bar') == f'foo {markup}Hello{markup} bar'
|
||||||
<ul>
|
assert md(f'foo <{tag}>Hello </{tag}>bar') == f'foo {markup}Hello{markup} bar'
|
||||||
<li>I</li>
|
assert md(f'foo <{tag}></{tag}> bar') in ['foo bar', 'foo bar'] # Either is OK
|
||||||
<li>II</li>
|
|
||||||
<li>III</li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li>b</li>
|
|
||||||
<li>c</li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li>2</li>
|
|
||||||
<li>3</li>
|
|
||||||
</ul>"""
|
|
||||||
|
|
||||||
nested_ols = """
|
|
||||||
<ol>
|
|
||||||
<li>1
|
|
||||||
<ol>
|
|
||||||
<li>a
|
|
||||||
<ol>
|
|
||||||
<li>I</li>
|
|
||||||
<li>II</li>
|
|
||||||
<li>III</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li>b</li>
|
|
||||||
<li>c</li>
|
|
||||||
</ol>
|
|
||||||
</li>
|
|
||||||
<li>2</li>
|
|
||||||
<li>3</li>
|
|
||||||
</ul>"""
|
|
||||||
|
|
||||||
|
|
||||||
table = re.sub(r'\s+', '', """
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<th>Firstname</th>
|
|
||||||
<th>Lastname</th>
|
|
||||||
<th>Age</th>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Jill</td>
|
|
||||||
<td>Smith</td>
|
|
||||||
<td>50</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Eve</td>
|
|
||||||
<td>Jackson</td>
|
|
||||||
<td>94</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
""")
|
|
||||||
|
|
||||||
|
|
||||||
table_head_body = re.sub(r'\s+', '', """
|
|
||||||
<table>
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>Firstname</th>
|
|
||||||
<th>Lastname</th>
|
|
||||||
<th>Age</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>Jill</td>
|
|
||||||
<td>Smith</td>
|
|
||||||
<td>50</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Eve</td>
|
|
||||||
<td>Jackson</td>
|
|
||||||
<td>94</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
""")
|
|
||||||
|
|
||||||
table_missing_text = re.sub(r'\s+', '', """
|
|
||||||
<table>
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th></th>
|
|
||||||
<th>Lastname</th>
|
|
||||||
<th>Age</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr>
|
|
||||||
<td>Jill</td>
|
|
||||||
<td></td>
|
|
||||||
<td>50</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Eve</td>
|
|
||||||
<td>Jackson</td>
|
|
||||||
<td>94</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
""")
|
|
||||||
|
|
||||||
|
|
||||||
def test_chomp():
|
|
||||||
assert md(' <b></b> ') == ' '
|
|
||||||
assert md(' <b> </b> ') == ' '
|
|
||||||
assert md(' <b> </b> ') == ' '
|
|
||||||
assert md(' <b> </b> ') == ' '
|
|
||||||
assert md(' <b>s </b> ') == ' **s** '
|
|
||||||
assert md(' <b> s</b> ') == ' **s** '
|
|
||||||
assert md(' <b> s </b> ') == ' **s** '
|
|
||||||
assert md(' <b> s </b> ') == ' **s** '
|
|
||||||
|
|
||||||
|
|
||||||
def test_a():
|
def test_a():
|
||||||
assert md('<a href="https://google.com">Google</a>') == '[Google](https://google.com)'
|
assert md('<a href="https://google.com">Google</a>') == '[Google](https://google.com)'
|
||||||
assert md('<a href="https://google.com">https://google.com</a>', autolinks=False) == '[https://google.com](https://google.com)'
|
|
||||||
assert md('<a href="https://google.com">https://google.com</a>') == '<https://google.com>'
|
assert md('<a href="https://google.com">https://google.com</a>') == '<https://google.com>'
|
||||||
assert md('<a href="https://community.kde.org/Get_Involved">https://community.kde.org/Get_Involved</a>') == '<https://community.kde.org/Get_Involved>'
|
assert md('<a href="https://community.kde.org/Get_Involved">https://community.kde.org/Get_Involved</a>') == '<https://community.kde.org/Get_Involved>'
|
||||||
assert md('<a href="https://community.kde.org/Get_Involved">https://community.kde.org/Get_Involved</a>', autolinks=False) == '[https://community.kde.org/Get\\_Involved](https://community.kde.org/Get_Involved)'
|
assert md('<a href="https://community.kde.org/Get_Involved">https://community.kde.org/Get_Involved</a>', autolinks=False) == '[https://community.kde.org/Get\\_Involved](https://community.kde.org/Get_Involved)'
|
||||||
@@ -140,6 +27,7 @@ def test_a_spaces():
|
|||||||
def test_a_with_title():
|
def test_a_with_title():
|
||||||
text = md('<a href="http://google.com" title="The "Goog"">Google</a>')
|
text = md('<a href="http://google.com" title="The "Goog"">Google</a>')
|
||||||
assert text == r'[Google](http://google.com "The \"Goog\"")'
|
assert text == r'[Google](http://google.com "The \"Goog\"")'
|
||||||
|
assert md('<a href="https://google.com">https://google.com</a>', default_title=True) == '[https://google.com](https://google.com "https://google.com")'
|
||||||
|
|
||||||
|
|
||||||
def test_a_shortcut():
|
def test_a_shortcut():
|
||||||
@@ -148,8 +36,7 @@ def test_a_shortcut():
|
|||||||
|
|
||||||
|
|
||||||
def test_a_no_autolinks():
|
def test_a_no_autolinks():
|
||||||
text = md('<a href="http://google.com">http://google.com</a>', autolinks=False)
|
assert md('<a href="https://google.com">https://google.com</a>', autolinks=False) == '[https://google.com](https://google.com)'
|
||||||
assert text == '[http://google.com](http://google.com)'
|
|
||||||
|
|
||||||
|
|
||||||
def test_b():
|
def test_b():
|
||||||
@@ -171,24 +58,31 @@ def test_blockquote_with_paragraph():
|
|||||||
assert md('<blockquote>Hello</blockquote><p>handsome</p>') == '\n> Hello\n\nhandsome\n\n'
|
assert md('<blockquote>Hello</blockquote><p>handsome</p>') == '\n> Hello\n\nhandsome\n\n'
|
||||||
|
|
||||||
|
|
||||||
def test_nested_blockquote():
|
def test_blockquote_nested():
|
||||||
text = md('<blockquote>And she was like <blockquote>Hello</blockquote></blockquote>')
|
text = md('<blockquote>And she was like <blockquote>Hello</blockquote></blockquote>')
|
||||||
assert text == '\n> And she was like \n> > Hello\n> \n> \n\n'
|
assert text == '\n> And she was like \n> > Hello\n> \n> \n\n'
|
||||||
|
|
||||||
|
|
||||||
def test_br():
|
def test_br():
|
||||||
assert md('a<br />b<br />c') == 'a \nb \nc'
|
assert md('a<br />b<br />c') == 'a \nb \nc'
|
||||||
|
assert md('a<br />b<br />c', newline_style=BACKSLASH) == 'a\\\nb\\\nc'
|
||||||
|
|
||||||
|
|
||||||
|
def test_code():
|
||||||
|
inline_tests('code', '`')
|
||||||
|
assert md('<code>this_should_not_escape</code>') == '`this_should_not_escape`'
|
||||||
|
|
||||||
|
|
||||||
|
def test_del():
|
||||||
|
inline_tests('del', '~~')
|
||||||
|
|
||||||
|
|
||||||
|
def test_div():
|
||||||
|
assert md('Hello</div> World') == 'Hello World'
|
||||||
|
|
||||||
|
|
||||||
def test_em():
|
def test_em():
|
||||||
assert md('<em>Hello</em>') == '*Hello*'
|
inline_tests('em', '*')
|
||||||
|
|
||||||
|
|
||||||
def test_em_spaces():
|
|
||||||
assert md('foo <em>Hello</em> bar') == 'foo *Hello* bar'
|
|
||||||
assert md('foo<em> Hello</em> bar') == 'foo *Hello* bar'
|
|
||||||
assert md('foo <em>Hello </em>bar') == 'foo *Hello* bar'
|
|
||||||
assert md('foo <em></em> bar') == 'foo bar'
|
|
||||||
|
|
||||||
|
|
||||||
def test_h1():
|
def test_h1():
|
||||||
@@ -201,6 +95,8 @@ def test_h2():
|
|||||||
|
|
||||||
def test_hn():
|
def test_hn():
|
||||||
assert md('<h3>Hello</h3>') == '### Hello\n\n'
|
assert md('<h3>Hello</h3>') == '### Hello\n\n'
|
||||||
|
assert md('<h4>Hello</h4>') == '#### Hello\n\n'
|
||||||
|
assert md('<h5>Hello</h5>') == '##### Hello\n\n'
|
||||||
assert md('<h6>Hello</h6>') == '###### Hello\n\n'
|
assert md('<h6>Hello</h6>') == '###### Hello\n\n'
|
||||||
|
|
||||||
|
|
||||||
@@ -236,15 +132,28 @@ def test_hn_nested_simple_tag():
|
|||||||
|
|
||||||
|
|
||||||
def test_hn_nested_img():
|
def test_hn_nested_img():
|
||||||
assert md('<img src="/path/to/img.jpg" alt="Alt text" title="Optional title" />') == ''
|
|
||||||
assert md('<img src="/path/to/img.jpg" alt="Alt text" />') == ''
|
|
||||||
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():
|
||||||
|
assert md('<h1>Hello</h1>', heading_style=ATX) == '# Hello\n\n'
|
||||||
|
assert md('<h2>Hello</h2>', heading_style=ATX) == '## Hello\n\n'
|
||||||
|
|
||||||
|
|
||||||
|
def test_hn_atx_closed_headings():
|
||||||
|
assert md('<h1>Hello</h1>', heading_style=ATX_CLOSED) == '# Hello #\n\n'
|
||||||
|
assert md('<h2>Hello</h2>', heading_style=ATX_CLOSED) == '## Hello ##\n\n'
|
||||||
|
|
||||||
|
|
||||||
|
def test_head():
|
||||||
|
assert md('<head>head</head>') == 'head'
|
||||||
|
|
||||||
|
|
||||||
def test_hr():
|
def test_hr():
|
||||||
@@ -253,74 +162,38 @@ def test_hr():
|
|||||||
assert md('<p>Hello</p>\n<hr>\n<p>World</p>') == 'Hello\n\n\n\n\n---\n\n\nWorld\n\n'
|
assert md('<p>Hello</p>\n<hr>\n<p>World</p>') == 'Hello\n\n\n\n\n---\n\n\nWorld\n\n'
|
||||||
|
|
||||||
|
|
||||||
def test_head():
|
|
||||||
assert md('<head>head</head>') == 'head'
|
|
||||||
|
|
||||||
|
|
||||||
def test_atx_headings():
|
|
||||||
assert md('<h1>Hello</h1>', heading_style=ATX) == '# Hello\n\n'
|
|
||||||
assert md('<h2>Hello</h2>', heading_style=ATX) == '## Hello\n\n'
|
|
||||||
|
|
||||||
|
|
||||||
def test_atx_closed_headings():
|
|
||||||
assert md('<h1>Hello</h1>', heading_style=ATX_CLOSED) == '# Hello #\n\n'
|
|
||||||
assert md('<h2>Hello</h2>', heading_style=ATX_CLOSED) == '## Hello ##\n\n'
|
|
||||||
|
|
||||||
|
|
||||||
def test_i():
|
def test_i():
|
||||||
assert md('<i>Hello</i>') == '*Hello*'
|
assert md('<i>Hello</i>') == '*Hello*'
|
||||||
|
|
||||||
|
|
||||||
def test_ol():
|
|
||||||
assert md('<ol><li>a</li><li>b</li></ol>') == '1. a\n2. b\n'
|
|
||||||
assert md('<ol start="3"><li>a</li><li>b</li></ol>') == '3. a\n4. b\n'
|
|
||||||
|
|
||||||
|
|
||||||
def test_p():
|
|
||||||
assert md('<p>hello</p>') == 'hello\n\n'
|
|
||||||
|
|
||||||
|
|
||||||
def test_strong():
|
|
||||||
assert md('<strong>Hello</strong>') == '**Hello**'
|
|
||||||
|
|
||||||
|
|
||||||
def test_ul():
|
|
||||||
assert md('<ul><li>a</li><li>b</li></ul>') == '* a\n* b\n'
|
|
||||||
|
|
||||||
|
|
||||||
def test_nested_ols():
|
|
||||||
assert md(nested_ols) == '\n1. 1\n\t1. a\n\t\t1. I\n\t\t2. II\n\t\t3. III\n\t2. b\n\t3. c\n2. 2\n3. 3\n'
|
|
||||||
|
|
||||||
|
|
||||||
def test_inline_ul():
|
|
||||||
assert md('<p>foo</p><ul><li>a</li><li>b</li></ul><p>bar</p>') == 'foo\n\n* a\n* b\n\nbar\n\n'
|
|
||||||
|
|
||||||
|
|
||||||
def test_nested_uls():
|
|
||||||
"""
|
|
||||||
Nested ULs should alternate bullet characters.
|
|
||||||
|
|
||||||
"""
|
|
||||||
assert md(nested_uls) == '\n* 1\n\t+ a\n\t\t- I\n\t\t- II\n\t\t- III\n\t+ b\n\t+ c\n* 2\n* 3\n'
|
|
||||||
|
|
||||||
|
|
||||||
def test_bullets():
|
|
||||||
assert md(nested_uls, bullets='-') == '\n- 1\n\t- a\n\t\t- I\n\t\t- II\n\t\t- III\n\t- b\n\t- c\n- 2\n- 3\n'
|
|
||||||
|
|
||||||
|
|
||||||
def test_img():
|
def test_img():
|
||||||
assert md('<img src="/path/to/img.jpg" alt="Alt text" title="Optional title" />') == ''
|
assert md('<img src="/path/to/img.jpg" alt="Alt text" title="Optional title" />') == ''
|
||||||
assert md('<img src="/path/to/img.jpg" alt="Alt text" />') == ''
|
assert md('<img src="/path/to/img.jpg" alt="Alt text" />') == ''
|
||||||
|
|
||||||
|
|
||||||
def test_div():
|
def test_kbd():
|
||||||
assert md('Hello</div> World') == 'Hello World'
|
inline_tests('kbd', '`')
|
||||||
|
|
||||||
|
|
||||||
def test_table():
|
def test_p():
|
||||||
assert md(table) == '| Firstname | Lastname | Age |\n| --- | --- | --- |\n| Jill | Smith | 50 |\n| Eve | Jackson | 94 |'
|
assert md('<p>hello</p>') == 'hello\n\n'
|
||||||
assert md(table_head_body) == '| Firstname | Lastname | Age |\n| --- | --- | --- |\n| Jill | Smith | 50 |\n| Eve | Jackson | 94 |'
|
|
||||||
assert md(table_missing_text) == '| | Lastname | Age |\n| --- | --- | --- |\n| Jill | | 50 |\n| Eve | Jackson | 94 |'
|
|
||||||
|
def test_pre():
|
||||||
|
assert md('<pre>test\n foo\nbar</pre>') == '\n```\ntest\n foo\nbar\n```\n'
|
||||||
|
assert md('<pre><code>test\n foo\nbar</code></pre>') == '\n```\ntest\n foo\nbar\n```\n'
|
||||||
|
|
||||||
|
|
||||||
|
def test_s():
|
||||||
|
inline_tests('s', '~~')
|
||||||
|
|
||||||
|
|
||||||
|
def test_samp():
|
||||||
|
inline_tests('samp', '`')
|
||||||
|
|
||||||
|
|
||||||
|
def test_strong():
|
||||||
|
assert md('<strong>Hello</strong>') == '**Hello**'
|
||||||
|
|
||||||
|
|
||||||
def test_strong_em_symbol():
|
def test_strong_em_symbol():
|
||||||
@@ -330,5 +203,25 @@ def test_strong_em_symbol():
|
|||||||
assert md('<i>Hello</i>', strong_em_symbol=UNDERSCORE) == '_Hello_'
|
assert md('<i>Hello</i>', strong_em_symbol=UNDERSCORE) == '_Hello_'
|
||||||
|
|
||||||
|
|
||||||
def test_newline_style():
|
def test_sub():
|
||||||
assert md('a<br />b<br />c', newline_style=BACKSLASH) == 'a\\\nb\\\nc'
|
assert md('<sub>foo</sub>') == 'foo'
|
||||||
|
assert md('<sub>foo</sub>', sub_symbol='~') == '~foo~'
|
||||||
|
|
||||||
|
|
||||||
|
def test_sup():
|
||||||
|
assert md('<sup>foo</sup>') == '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'
|
||||||
|
|||||||
25
tests/test_custom_converter.py
Normal file
25
tests/test_custom_converter.py
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
from markdownify import MarkdownConverter
|
||||||
|
from bs4 import BeautifulSoup
|
||||||
|
|
||||||
|
|
||||||
|
class ImageBlockConverter(MarkdownConverter):
|
||||||
|
"""
|
||||||
|
Create a custom MarkdownConverter that adds two newlines after an image
|
||||||
|
"""
|
||||||
|
def convert_img(self, el, text, convert_as_inline):
|
||||||
|
return super().convert_img(el, text, convert_as_inline) + '\n\n'
|
||||||
|
|
||||||
|
|
||||||
|
def test_img():
|
||||||
|
# Create shorthand method for conversion
|
||||||
|
def md(html, **options):
|
||||||
|
return ImageBlockConverter(**options).convert(html)
|
||||||
|
|
||||||
|
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'
|
||||||
|
|
||||||
|
|
||||||
|
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():
|
||||||
|
|||||||
81
tests/test_lists.py
Normal file
81
tests/test_lists.py
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
from markdownify import markdownify as md
|
||||||
|
|
||||||
|
|
||||||
|
nested_uls = """
|
||||||
|
<ul>
|
||||||
|
<li>1
|
||||||
|
<ul>
|
||||||
|
<li>a
|
||||||
|
<ul>
|
||||||
|
<li>I</li>
|
||||||
|
<li>II</li>
|
||||||
|
<li>III</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>b</li>
|
||||||
|
<li>c</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>2</li>
|
||||||
|
<li>3</li>
|
||||||
|
</ul>"""
|
||||||
|
|
||||||
|
nested_ols = """
|
||||||
|
<ol>
|
||||||
|
<li>1
|
||||||
|
<ol>
|
||||||
|
<li>a
|
||||||
|
<ol>
|
||||||
|
<li>I</li>
|
||||||
|
<li>II</li>
|
||||||
|
<li>III</li>
|
||||||
|
</ol>
|
||||||
|
</li>
|
||||||
|
<li>b</li>
|
||||||
|
<li>c</li>
|
||||||
|
</ol>
|
||||||
|
</li>
|
||||||
|
<li>2</li>
|
||||||
|
<li>3</li>
|
||||||
|
</ul>"""
|
||||||
|
|
||||||
|
|
||||||
|
def test_ol():
|
||||||
|
assert md('<ol><li>a</li><li>b</li></ol>') == '1. a\n2. b\n'
|
||||||
|
assert md('<ol start="3"><li>a</li><li>b</li></ol>') == '3. a\n4. b\n'
|
||||||
|
|
||||||
|
|
||||||
|
def test_nested_ols():
|
||||||
|
assert md(nested_ols) == '\n1. 1\n\t1. a\n\t\t1. I\n\t\t2. II\n\t\t3. III\n\t2. b\n\t3. c\n2. 2\n3. 3\n'
|
||||||
|
|
||||||
|
|
||||||
|
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>
|
||||||
|
<li> c
|
||||||
|
</li>
|
||||||
|
</ul>""") == '* a\n* b\n* c\n'
|
||||||
|
|
||||||
|
|
||||||
|
def test_inline_ul():
|
||||||
|
assert md('<p>foo</p><ul><li>a</li><li>b</li></ul><p>bar</p>') == 'foo\n\n* a\n* b\n\nbar\n\n'
|
||||||
|
|
||||||
|
|
||||||
|
def test_nested_uls():
|
||||||
|
"""
|
||||||
|
Nested ULs should alternate bullet characters.
|
||||||
|
|
||||||
|
"""
|
||||||
|
assert md(nested_uls) == '\n* 1\n\t+ a\n\t\t- I\n\t\t- II\n\t\t- III\n\t+ b\n\t+ c\n* 2\n* 3\n'
|
||||||
|
|
||||||
|
|
||||||
|
def test_bullets():
|
||||||
|
assert md(nested_uls, bullets='-') == '\n- 1\n\t- a\n\t\t- I\n\t\t- II\n\t\t- III\n\t- b\n\t- c\n- 2\n- 3\n'
|
||||||
|
|
||||||
|
|
||||||
|
def test_li_text():
|
||||||
|
assert md('<ul><li>foo <a href="#">bar</a></li><li>foo bar </li><li>foo <b>bar</b> <i>space</i>.</ul>') == '* foo [bar](#)\n* foo bar\n* foo **bar** *space*.\n'
|
||||||
150
tests/test_tables.py
Normal file
150
tests/test_tables.py
Normal file
@@ -0,0 +1,150 @@
|
|||||||
|
from markdownify import markdownify as md
|
||||||
|
|
||||||
|
|
||||||
|
table = """<table>
|
||||||
|
<tr>
|
||||||
|
<th>Firstname</th>
|
||||||
|
<th>Lastname</th>
|
||||||
|
<th>Age</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Jill</td>
|
||||||
|
<td>Smith</td>
|
||||||
|
<td>50</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Eve</td>
|
||||||
|
<td>Jackson</td>
|
||||||
|
<td>94</td>
|
||||||
|
</tr>
|
||||||
|
</table>"""
|
||||||
|
|
||||||
|
|
||||||
|
table_with_html_content = """<table>
|
||||||
|
<tr>
|
||||||
|
<th>Firstname</th>
|
||||||
|
<th>Lastname</th>
|
||||||
|
<th>Age</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><b>Jill</b></td>
|
||||||
|
<td><i>Smith</i></td>
|
||||||
|
<td><a href="#">50</a></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Eve</td>
|
||||||
|
<td>Jackson</td>
|
||||||
|
<td>94</td>
|
||||||
|
</tr>
|
||||||
|
</table>"""
|
||||||
|
|
||||||
|
|
||||||
|
table_with_paragraphs = """<table>
|
||||||
|
<tr>
|
||||||
|
<th>Firstname</th>
|
||||||
|
<th><p>Lastname</p></th>
|
||||||
|
<th>Age</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><p>Jill</p></td>
|
||||||
|
<td><p>Smith</p></td>
|
||||||
|
<td><p>50</p></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Eve</td>
|
||||||
|
<td>Jackson</td>
|
||||||
|
<td>94</td>
|
||||||
|
</tr>
|
||||||
|
</table>"""
|
||||||
|
|
||||||
|
|
||||||
|
table_with_header_column = """<table>
|
||||||
|
<tr>
|
||||||
|
<th>Firstname</th>
|
||||||
|
<th>Lastname</th>
|
||||||
|
<th>Age</th>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Jill</th>
|
||||||
|
<td>Smith</td>
|
||||||
|
<td>50</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>Eve</th>
|
||||||
|
<td>Jackson</td>
|
||||||
|
<td>94</td>
|
||||||
|
</tr>
|
||||||
|
</table>"""
|
||||||
|
|
||||||
|
|
||||||
|
table_head_body = """<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Firstname</th>
|
||||||
|
<th>Lastname</th>
|
||||||
|
<th>Age</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>Jill</td>
|
||||||
|
<td>Smith</td>
|
||||||
|
<td>50</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Eve</td>
|
||||||
|
<td>Jackson</td>
|
||||||
|
<td>94</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>"""
|
||||||
|
|
||||||
|
table_missing_text = """<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th></th>
|
||||||
|
<th>Lastname</th>
|
||||||
|
<th>Age</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>Jill</td>
|
||||||
|
<td></td>
|
||||||
|
<td>50</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Eve</td>
|
||||||
|
<td>Jackson</td>
|
||||||
|
<td>94</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>"""
|
||||||
|
|
||||||
|
table_missing_head = """<table>
|
||||||
|
<tr>
|
||||||
|
<td>Firstname</td>
|
||||||
|
<td>Lastname</td>
|
||||||
|
<td>Age</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Jill</td>
|
||||||
|
<td>Smith</td>
|
||||||
|
<td>50</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Eve</td>
|
||||||
|
<td>Jackson</td>
|
||||||
|
<td>94</td>
|
||||||
|
</tr>
|
||||||
|
</table>"""
|
||||||
|
|
||||||
|
|
||||||
|
def test_table():
|
||||||
|
assert md(table) == '\n\n| Firstname | Lastname | Age |\n| --- | --- | --- |\n| Jill | Smith | 50 |\n| Eve | Jackson | 94 |\n\n'
|
||||||
|
assert md(table_with_html_content) == '\n\n| Firstname | Lastname | Age |\n| --- | --- | --- |\n| **Jill** | *Smith* | [50](#) |\n| Eve | Jackson | 94 |\n\n'
|
||||||
|
assert md(table_with_paragraphs) == '\n\n| Firstname | Lastname | Age |\n| --- | --- | --- |\n| Jill | Smith | 50 |\n| Eve | Jackson | 94 |\n\n'
|
||||||
|
assert md(table_with_header_column) == '\n\n| Firstname | Lastname | Age |\n| --- | --- | --- |\n| Jill | Smith | 50 |\n| Eve | Jackson | 94 |\n\n'
|
||||||
|
assert md(table_head_body) == '\n\n| Firstname | Lastname | Age |\n| --- | --- | --- |\n| Jill | Smith | 50 |\n| Eve | Jackson | 94 |\n\n'
|
||||||
|
assert md(table_missing_text) == '\n\n| | Lastname | Age |\n| --- | --- | --- |\n| Jill | | 50 |\n| Eve | Jackson | 94 |\n\n'
|
||||||
|
assert md(table_missing_head) == '\n\n| | | |\n| --- | --- | --- |\n| Firstname | Lastname | Age |\n| Jill | Smith | 50 |\n| Eve | Jackson | 94 |\n\n'
|
||||||
Reference in New Issue
Block a user