diff options
author | Christian Neukirchen <chneukirchen@gmail.com> | 2012-01-02 20:33:32 +0100 |
---|---|---|
committer | Christian Neukirchen <chneukirchen@gmail.com> | 2012-01-02 20:33:32 +0100 |
commit | d35ee0f4dbf7aafe3e48f6c8979fab898255e0dd (patch) | |
tree | f0bf01460097dcfba85028c44c786df1ce2b6360 | |
parent | ed1db3e8056d50779e8a826405205bd5c56f1365 (diff) | |
download | trivium-d35ee0f4dbf7aafe3e48f6c8979fab898255e0dd.tar.gz trivium-d35ee0f4dbf7aafe3e48f6c8979fab898255e0dd.tar.xz trivium-d35ee0f4dbf7aafe3e48f6c8979fab898255e0dd.zip |
Remove SJIS-tag from BlueCloth regexps for Ruby 1.9
-rw-r--r-- | vendor/bluecloth.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/bluecloth.rb b/vendor/bluecloth.rb index 55e5174..862ec50 100644 --- a/vendor/bluecloth.rb +++ b/vendor/bluecloth.rb @@ -1029,7 +1029,7 @@ class BlueCloth < String )? # title is optional \) ) - }xs #" + }x #" # Reference-style images @@ -1040,7 +1040,7 @@ class BlueCloth < String (?:\n[ ]*)? # One optional newline + spaces \[ (.*?) \] # id = $3 ) - }xs + }x ### Turn image markup into image tags. def transform_images( str, rs ) |