org-ruby 0.9.9 → 0.9.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.org +20 -12
- data/lib/org-ruby/headline.rb +1 -1
- data/lib/org-ruby/parser.rb +3 -1
- data/lib/org-ruby/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b6b2631abc279d2ecbb7e475d4881f1aecc4810b
|
4
|
+
data.tar.gz: 60a251406c07989b7970cd428eddb75b56c9a748
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5a48d6f275cb86598da4454581242f35fcd55d55e46a9ce5e3abfb2db7459e384092e6892c0d0c60f39b6a65746439cd0064297b35bb508ab8fd71975dfad7c
|
7
|
+
data.tar.gz: 4b1c1e53a70ca39acd8a32fb1516c4518883c5facac9c1b801c87613e310416d97927788dc498b24042564122ebc1d999f2e99fc4ec0d5f4f2a207a5013a8a95
|
data/History.org
CHANGED
@@ -2,6 +2,14 @@
|
|
2
2
|
#+title: Changelog
|
3
3
|
#+startup: showeverything
|
4
4
|
|
5
|
+
* 0.9.10 / 2014-12-09
|
6
|
+
|
7
|
+
- Add option to disable Rubypants
|
8
|
+
|
9
|
+
* 0.9.9 / 2014-08-30
|
10
|
+
|
11
|
+
- Bugfix for comment regex
|
12
|
+
|
5
13
|
* 0.9.8 / 2014-08-11
|
6
14
|
|
7
15
|
- Bugfix for =#+OPTIONS= values parsing
|
@@ -22,7 +30,7 @@
|
|
22
30
|
* 0.9.4 / 2014-04-18
|
23
31
|
|
24
32
|
- Track block names within the line properties
|
25
|
-
- Add option to skip
|
33
|
+
- Add option to skip syntax highlighting explicitly
|
26
34
|
|
27
35
|
* 0.9.3 / 2014-03-25
|
28
36
|
|
@@ -32,11 +40,11 @@
|
|
32
40
|
|
33
41
|
- Fix Org mode syntax for escaping html: Syntax actually now is =@@html:<text>@@=
|
34
42
|
|
35
|
-
- Fix
|
43
|
+
- Fix =#=TITLE:= to render as a h1 headline
|
36
44
|
|
37
|
-
- Remove rewriting links to
|
45
|
+
- Remove rewriting links to =.org= files as =.html=
|
38
46
|
|
39
|
-
- Implement
|
47
|
+
- Implement =:exports= options for code blocks
|
40
48
|
|
41
49
|
* 0.9.1 / 2014-02-13
|
42
50
|
|
@@ -49,16 +57,16 @@
|
|
49
57
|
|
50
58
|
* 0.8.3 / 2014-02-02
|
51
59
|
|
52
|
-
- Bugfix :: Two backslashes
|
60
|
+
- Bugfix :: Two backslashes =\\= at the end of the line make a line break without breaking paragraph.
|
53
61
|
- Bugfix :: Fix inline formatting not working for definition lists
|
54
62
|
- Add basic markdown exporter
|
55
63
|
|
56
64
|
* 0.8.2 / 2013-11-09
|
57
65
|
|
58
66
|
- Manage the #=INCLUDE tag in org files (contribution by pierre-lecocq)
|
59
|
-
- #=INCLUDE is disabled by default. Needs either ORG_RUBY_INCLUDE_ROOT or
|
60
|
-
ORG_RUBY_ENABLE_INCLUDE_FILES environment variables in order to be enabled.
|
61
|
-
- Link abbreviations with
|
67
|
+
- #=INCLUDE is disabled by default. Needs either =ORG_RUBY_INCLUDE_ROOT= or
|
68
|
+
=ORG_RUBY_ENABLE_INCLUDE_FILES= environment variables in order to be enabled.
|
69
|
+
- Link abbreviations with =#+LINK= tag are supported (by pierre-lecocq too, thanks!)
|
62
70
|
- Strip prepended commas added by Emacs Org mode to src/example blocks
|
63
71
|
|
64
72
|
* 0.8.1 / 2013-02-17
|
@@ -68,7 +76,7 @@
|
|
68
76
|
* 0.8.0 / 2013-02-10
|
69
77
|
|
70
78
|
- A lot of refactoring work and bugfixes contributed by vonavi (many thanks!)
|
71
|
-
- Raw HTML is supported with
|
79
|
+
- Raw HTML is supported with =#+html=
|
72
80
|
- Code indentation for code blocks is fixed now
|
73
81
|
- Support for definition lists is improved
|
74
82
|
- Bugfix for when including headlines in center and quote blocks.
|
@@ -104,9 +112,9 @@
|
|
104
112
|
* 0.6.1 / 2012-04-14
|
105
113
|
|
106
114
|
- Added encoding directive to support Ruby 1.9.2
|
107
|
-
- Headlines with the COMMENT keyword, and the PROPERTIES drawer are not exported
|
108
|
-
- Angle links in
|
109
|
-
-
|
115
|
+
- Headlines with the =COMMENT= keyword, and the =PROPERTIES= drawer are not exported
|
116
|
+
- Angle links in Org mode are embedded in anchor tags on html output
|
117
|
+
- =#+=BEGIN/END_SRC= lang code blocks are embedded in code tags with class that specifies the coding language
|
110
118
|
- Fixed bug in code blocks when a colon was at the beginning
|
111
119
|
- More than five dashes create an horizontal rule in html output
|
112
120
|
|
data/lib/org-ruby/headline.rb
CHANGED
data/lib/org-ruby/parser.rb
CHANGED
data/lib/org-ruby/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: org-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Dewey
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-12-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rubypants
|