File: CHANGES.rst

package info (click to toggle)
mistune 0.7.3-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 660 kB
  • sloc: python: 1,246; makefile: 34
file content (146 lines) | stat: -rw-r--r-- 3,647 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
Changelog
----------

Here is the full history of mistune.

Version 0.7.3
~~~~~~~~~~~~~

Released on Jun. 28, 2016

* Fix strikethrough regex
* Fix HTML attribute regex
* Fix close tag regex

Version 0.7.2
~~~~~~~~~~~~~

Released on Feb. 26, 2016

* Fix `hard_wrap` options on renderer.
* Fix emphasis regex pattern
* Fix base64 image link `#80`_.
* Fix link security per `#87`_.

.. _`#80`: https://github.com/lepture/mistune/issues/80
.. _`#87`: https://github.com/lepture/mistune/issues/87


Version 0.7.1
~~~~~~~~~~~~~

Released on Aug. 22, 2015

* Fix inline html when there is no content per `#71`_.

.. _`#71`: https://github.com/lepture/mistune/issues/71


Version 0.7
~~~~~~~~~~~

Released on Jul. 18, 2015

* Fix the breaking change in version 0.6 with options: **parse_inline_html** and **parse_block_html**
* Breaking change: remove **parse_html** option for explicit
* Change option **escape** default value to ``True`` for security reason


Version 0.6
~~~~~~~~~~~

Released on Jun. 17, 2015

* Breaking change on inline HTML, text in inline HTML will not be parsed per `#38`_.
* Replace **tag** renderer with **inline_html** for breaking change on inline HTML
* Double emphasis, emphasis, code, and strikethrough can contain one linebreak per `#48`_.
* Match autolinks that do not have / in their URI via `#53`_.
* A work around on link that contains ``)`` per `#46`_.
* Add ``<font>`` tag for inline tags per `#55`_.

.. _`#38`: https://github.com/lepture/mistune/issues/38
.. _`#46`: https://github.com/lepture/mistune/issues/46
.. _`#48`: https://github.com/lepture/mistune/issues/48
.. _`#53`: https://github.com/lepture/mistune/pull/53
.. _`#55`: https://github.com/lepture/mistune/issues/55


Version 0.5.1
~~~~~~~~~~~~~

Released on Mar. 10, 2015

* Fix a bug when list item is blank via `ipython#7929`_.
* Use python-wheels to build wheels for Mac.

.. _`ipython#7929`: https://github.com/ipython/ipython/issues/7929


Version 0.5
~~~~~~~~~~~

Released on Dec. 5, 2014. This release will break things.

* For custom lexers, **features** is replaced with **rules**.
* Refactor on function names and codes.
* Add a way to output the render tree via `#20`_.
* Fix emphasis and strikethrough regular expressions.

.. _`#20`: https://github.com/lepture/mistune/pull/20

Version 0.4.1
~~~~~~~~~~~~~

Released on Oct. 12, 2014

* Add option for parse markdown in block level html.
* Fix on lheading, any number of underline = or - will work.
* Patch for setup if Cython is available but no C compiler.

Version 0.4
~~~~~~~~~~~

Released on Aug. 14, 2014

* Bugfix. Use inspect to detect renderer class.
* Move all meth:`escape` to renderer. Use renderer to escape everything.
* A little changes in code style and parameter naming.
* Don't parse text in a block html, behave like sundown.

Version 0.3.1
~~~~~~~~~~~~~

Released on Jul. 31, 2014

* Fix in meth:`Renderer.block_code`, no need to add ``\n`` in ``<code>``.
* Trim whitespace of code in code span via `#15`_.

.. _`#15`: https://github.com/lepture/mistune/issues/15

Version 0.3
~~~~~~~~~~~

Released on Jun. 27, 2014

* Add ``<hr>`` in footnotes renderer
* Add hard_wrap configuration for GFM linebreaks.
* Add text renderer, via `#9`_.
* Define features for lexers available via `#11`_.

.. _`#9`: https://github.com/lepture/mistune/pull/9
.. _`#11`: https://github.com/lepture/mistune/pull/11

Version 0.2
~~~~~~~~~~~

Released on Mar. 12, 2014

* Use tuple instead of list for efficient
* Add ``line_match`` and ``line_started`` property on InlineLexer, via `#4`_

.. _`#4`: https://github.com/lepture/mistune/pull/4

Version 0.1
~~~~~~~~~~~

First preview release.