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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1487a9539647add2144c4b995e07e147db5fa4bf
4
- data.tar.gz: c87a675bbb9ebdea821981b87b2c7dee7a589482
3
+ metadata.gz: b6b2631abc279d2ecbb7e475d4881f1aecc4810b
4
+ data.tar.gz: 60a251406c07989b7970cd428eddb75b56c9a748
5
5
  SHA512:
6
- metadata.gz: 93c2dc38046545c1431ae67c4d2ce22a6de1a3f152a6ca41809fd4e48fb97f9ed17d0e40ec2b51b0712f34dbd4dbe8bbdb82d755aa1c71b28920b49a104906c6
7
- data.tar.gz: fc6c198e46fc5059850468ec5a91075a9bede52416f2aaf04484229f8e0f0b6c8fd19e1a361fdabd2d765b33ffeabc87cb0f14c5c65ab4f04111f9b1bdba1fd0
6
+ metadata.gz: e5a48d6f275cb86598da4454581242f35fcd55d55e46a9ce5e3abfb2db7459e384092e6892c0d0c60f39b6a65746439cd0064297b35bb508ab8fd71975dfad7c
7
+ data.tar.gz: 4b1c1e53a70ca39acd8a32fb1516c4518883c5facac9c1b801c87613e310416d97927788dc498b24042564122ebc1d999f2e99fc4ec0d5f4f2a207a5013a8a95
@@ -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-syntax-highlighting explicitly
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 '#=TITLE:' to render as a h1 headline
43
+ - Fix =#=TITLE:= to render as a h1 headline
36
44
 
37
- - Remove rewriting links to '.org' files as '.html'
45
+ - Remove rewriting links to =.org= files as =.html=
38
46
 
39
- - Implement :exports options for code blocks
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 \\ at the end of the line make a line break without breaking paragraph.
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 #=LINK tag are supported (by pierre-lecocq too, thanks!)
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 #=html
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 org-mode are embedded in anchor tags on html output
109
- - #=BEGIN/END_SRC lang code blocks are embedded in code tags with class that specifies the coding language
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
 
@@ -35,7 +35,7 @@ module Orgmode
35
35
  LineRegexp = /^\*+\s+/
36
36
 
37
37
  # This matches the tags on a headline
38
- TagsRegexp = /\s*:[\w:]*:\s*$/
38
+ TagsRegexp = /\s*:[\w:@]*:\s*$/
39
39
 
40
40
  # Special keywords allowed at the start of a line.
41
41
  Keywords = %w[TODO DONE]
@@ -376,7 +376,9 @@ module Orgmode
376
376
  end
377
377
  output << "\n"
378
378
 
379
- rp = RubyPants.new(output)
379
+ return output if @parser_options[:skip_rubypants_pass]
380
+
381
+ rp = RubyPants.new(output)
380
382
  rp.to_html
381
383
  end
382
384
 
@@ -1,3 +1,3 @@
1
1
  module OrgRuby
2
- VERSION = '0.9.9'
2
+ VERSION = '0.9.10'
3
3
  end
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.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-08-29 00:00:00.000000000 Z
12
+ date: 2014-12-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rubypants