File tree Expand file tree Collapse file tree 5 files changed +50
-5
lines changed Expand file tree Collapse file tree 5 files changed +50
-5
lines changed Original file line number Diff line number Diff line change
1
+ ## 4.0.0 - 2021-03-31
2
+
3
+ * Drop support for Python 2 in RST rendering [ #1456 ] ( https://github.com/github/markup/pull/1456 )
4
+
1
5
## 3.0.5 - 2020-11-12
2
6
3
7
* Add commonmarker_exts to commonmarker options [ #1268 ] ( https://github.com/github/markup/pull/1268 )
72
76
73
77
### Added
74
78
75
- * Re-introduce [ #537 ] ( https://github.com/github/markup/pull/537 ) to detect language of markup document
76
- However ` github-linguist ` is optional and this gem will fallback to extensions for detection.
79
+ * Re-introduce [ #537 ] ( https://github.com/github/markup/pull/537 ) to detect language of markup document
80
+ However ` github-linguist ` is optional and this gem will fallback to extensions for detection.
77
81
78
82
[ Full changelog] ( https://github.com/github/markup/compare/v1.4.9...v1.5.0 )
79
83
Original file line number Diff line number Diff line change 1
1
module GitHub
2
2
module Markup
3
- VERSION = '3 .0.5 '
3
+ VERSION = '4 .0.0 '
4
4
Version = VERSION
5
5
end
6
6
end
Original file line number Diff line number Diff line change 49
49
50
50
command (
51
51
::GitHub ::Markups ::MARKUP_RST ,
52
- "python2 -S #{ Shellwords . escape ( File . dirname ( __FILE__ ) ) } /commands/rest2html" ,
52
+ "python3 #{ Shellwords . escape ( File . dirname ( __FILE__ ) ) } /commands/rest2html" ,
53
53
/re?st(\. txt)?/ ,
54
54
[ "reStructuredText" ] ,
55
55
"restructuredtext"
Original file line number Diff line number Diff line change 5
5
cd $( dirname " $0 " ) /..
6
6
7
7
bundle install
8
- easy_install docutils
8
+ pip3 install docutils
Original file line number Diff line number Diff line change @@ -16,6 +16,47 @@ <h2><a href="#id1">Header 2</a></h2>
16
16
< li > Somé UTF-8°</ li >
17
17
</ ol >
18
18
< p > The UTF-8 quote character in this table used to cause python to go boom. Now docutils just silently ignores it.</ p >
19
+ < table >
20
+ Things that are Awesome (on a scale of 1-11)
21
+
22
+
23
+
24
+
25
+ < tbody valign ="top ">
26
+ < tr >
27
+ < td > Thing</ td >
28
+ < td > Awesomeness</ td >
29
+ </ tr >
30
+ < tr >
31
+ < td > Icecream</ td >
32
+ < td > 7</ td >
33
+ </ tr >
34
+ < tr >
35
+ < td > Honey Badgers</ td >
36
+ < td > 10.5</ td >
37
+ </ tr >
38
+ < tr >
39
+ < td > Nickelback</ td >
40
+ < td > -2</ td >
41
+ </ tr >
42
+ < tr >
43
+ < td > Iron Man</ td >
44
+ < td > 10</ td >
45
+ </ tr >
46
+ < tr >
47
+ < td > Iron Man 2</ td >
48
+ < td > 3</ td >
49
+ </ tr >
50
+ < tr >
51
+ < td > Tabular Data</ td >
52
+ < td > 5</ td >
53
+ </ tr >
54
+ < tr >
55
+ < td > Made up ratings</ td >
56
+ < td > 11</ td >
57
+ </ tr >
58
+ </ tbody >
59
+ </ table >
19
60
< pre >
20
61
A block of code
21
62
</ pre >
You can’t perform that action at this time.
0 commit comments