File tree 6 files changed +11
-10
lines changed
6 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 16
16
17
17
18
18
"""
19
- Adds rST-style admonitions. Inspired by [rST][] feature with the same name.
19
+ Adds rST-style admonitions to Python-Markdown.
20
+ Inspired by [rST][] feature with the same name.
20
21
21
22
[rST]: http://docutils.sourceforge.net/docs/ref/rst/directives.html#specific-admonitions
22
23
Original file line number Diff line number Diff line change 15
15
# License: [BSD](https://opensource.org/licenses/bsd-license.php)
16
16
17
17
"""
18
- Adds attribute list syntax. Inspired by
18
+ Adds attribute list syntax to Python-Markdown.
19
+ Inspired by
19
20
[Maruku](http://maruku.rubyforge.org/proposal.html#attribute_lists)'s
20
21
feature of the same name.
21
22
Original file line number Diff line number Diff line change 12
12
# License: [BSD](https://opensource.org/licenses/bsd-license.php)
13
13
14
14
"""
15
- An implementation of [PHP Markdown Extra](http://michelf.com/projects/php-markdown/extra/)'s
16
- parsing of Markdown syntax in raw HTML .
15
+ Parse Markdown syntax within raw HTML.
16
+ Based on the implementation in [PHP Markdown Extra](http://michelf.com/projects/php-markdown/extra/) .
17
17
18
18
See the [documentation](https://Python-Markdown.github.io/extensions/raw_html)
19
19
for details.
Original file line number Diff line number Diff line change 14
14
# License: [BSD](https://opensource.org/licenses/bsd-license.php)
15
15
16
16
"""
17
- A Python-Markdown extension to treat newlines as hard breaks; like
18
- GitHub-flavored Markdown does .
17
+ A Python-Markdown extension to treat newlines as hard breaks.
18
+ Similar to GitHub-flavored Markdown's behavior .
19
19
20
20
See the [documentation](https://Python-Markdown.github.io/extensions/nl2br)
21
21
for details.
Original file line number Diff line number Diff line change 77
77
# of this software, even if advised of the possibility of such damage.
78
78
79
79
"""
80
- Adds conversion of ASCII dashes, quotes and ellipses to their HTML
81
- entity equivalents.
80
+ Convert ASCII dashes, quotes and ellipses to their HTML entity equivalents.
82
81
83
82
See the [documentation](https://Python-Markdown.github.io/extensions/smarty)
84
83
for details.
Original file line number Diff line number Diff line change 1
1
# Tables Extension for Python-Markdown
2
2
# ====================================
3
3
4
- # Added parsing of tables to Python-Markdown.
4
+ # Adds parsing of tables to Python-Markdown.
5
5
6
6
# See https://Python-Markdown.github.io/extensions/tables
7
7
# for documentation.
13
13
# License: [BSD](https://opensource.org/licenses/bsd-license.php)
14
14
15
15
"""
16
- Added parsing of tables to Python-Markdown.
16
+ Adds parsing of tables to Python-Markdown.
17
17
18
18
See the [documentation](https://Python-Markdown.github.io/extensions/tables)
19
19
for details.
You can’t perform that action at this time.
0 commit comments