asciidoctor 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/asciidoctor.gemspec +1 -1
- data/lib/asciidoctor.rb +2 -0
- data/lib/asciidoctor/version.rb +1 -1
- metadata +1 -1
data/asciidoctor.gemspec
CHANGED
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
|
|
|
13
13
|
## If your rubyforge_project name is different, then edit it and comment out
|
|
14
14
|
## the sub! line in the Rakefile
|
|
15
15
|
s.name = 'asciidoctor'
|
|
16
|
-
s.version = '0.0.
|
|
16
|
+
s.version = '0.0.7'
|
|
17
17
|
s.date = '2012-12-17'
|
|
18
18
|
s.rubyforge_project = 'asciidoctor'
|
|
19
19
|
|
data/lib/asciidoctor.rb
CHANGED
|
@@ -177,6 +177,7 @@ module Asciidoctor
|
|
|
177
177
|
ADMONITION_STYLES = ['NOTE', 'TIP', 'IMPORTANT', 'WARNING', 'CAUTION']
|
|
178
178
|
|
|
179
179
|
INTRINSICS = Hash.new{|h,k| STDERR.puts "Missing intrinsic: #{k.inspect}"; "{#{k}}"}.merge(
|
|
180
|
+
{
|
|
180
181
|
'startsb' => '[',
|
|
181
182
|
'endsb' => ']',
|
|
182
183
|
'brvbar' => '|',
|
|
@@ -203,6 +204,7 @@ module Asciidoctor
|
|
|
203
204
|
'amp' => '&',
|
|
204
205
|
'lt' => '<',
|
|
205
206
|
'gt' => '>',
|
|
207
|
+
}
|
|
206
208
|
)
|
|
207
209
|
|
|
208
210
|
SPECIAL_CHARS = {
|
data/lib/asciidoctor/version.rb
CHANGED