Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
eb0330bfc6 | ||
|
|
ddda696396 | ||
|
|
0a1343a538 | ||
|
|
9d0b839b73 |
20
README.rst
20
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
|
||||||
@@ -110,6 +110,18 @@ 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 ImageBlockConverter(**options).convert_soup(soup)
|
||||||
|
|
||||||
|
|
||||||
Creating Custom Converters
|
Creating Custom Converters
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
|
|||||||
@@ -96,6 +96,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):
|
||||||
|
|||||||
2
setup.py
2
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.10.2',
|
'__version__': '0.10.3',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -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**'
|
||||||
|
|||||||
Reference in New Issue
Block a user