diff options
| author | Ryan Waldron <rwaldron@github.com> | 2012-12-17 17:26:36 -0600 |
|---|---|---|
| committer | Ryan Waldron <rwaldron@github.com> | 2012-12-17 17:26:36 -0600 |
| commit | 1e80af2a3fbfe62924519b9c0fcafd73f60d039a (patch) | |
| tree | a3b2e2aba920cacba9a2d52a46514eb4604bd378 | |
| parent | 80d60c82eab5a9583e177e0f88f609f448dc0150 (diff) | |
Add explicit hash for 1.8.7
| -rwxr-xr-x | lib/asciidoctor.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/asciidoctor.rb b/lib/asciidoctor.rb index 2ed85eae..086cb101 100755 --- a/lib/asciidoctor.rb +++ b/lib/asciidoctor.rb @@ -177,6 +177,7 @@ module Asciidoctor ADMONITION_STYLES = ['NOTE', 'TIP', 'IMPORTANT', 'WARNING', 'CAUTION'] INTRINSICS = Hash.new{|h,k| STDERR.puts "Missing intrinsic: #{k.inspect}"; "{#{k}}"}.merge( + { 'startsb' => '[', 'endsb' => ']', 'brvbar' => '|', @@ -203,6 +204,7 @@ module Asciidoctor 'amp' => '&', 'lt' => '<', 'gt' => '>', + } ) SPECIAL_CHARS = { |
