diff options
author | Ralph Amissah <ralph@amissah.com> | 2008-09-07 14:07:18 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2008-09-07 14:07:18 -0400 |
commit | e46264082eaca056dddabf4f1d02732a88a305e8 (patch) | |
tree | 9c98d95379bba9d4ea5996ebf7318054b5088d8b | |
parent | character given to represent non-break space in internal code (dal, constants... (diff) |
minor unicode for a type of cross
-rw-r--r-- | lib/sisu/v0/constants.rb | 2 | ||||
-rw-r--r-- | lib/sisu/v0/shared_xml.rb | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/lib/sisu/v0/constants.rb b/lib/sisu/v0/constants.rb index 96878fcf..f352ab7c 100644 --- a/lib/sisu/v0/constants.rb +++ b/lib/sisu/v0/constants.rb @@ -170,6 +170,4 @@ check: '〔 Ѳ1〕','〔 Ѳ2〕','〔 Ѳ3〕','〔 Ѳ4〕','〔 Ѳ5〕','〔Ѳ6〕','〔Ѳ7〕','〔Ѳ8〕','〔Ѳ9〕' ◁▷ -▶this is text or an image◀http:// - ◀this is text or an image▶ http:// diff --git a/lib/sisu/v0/shared_xml.rb b/lib/sisu/v0/shared_xml.rb index 437f5482..bf59830f 100644 --- a/lib/sisu/v0/shared_xml.rb +++ b/lib/sisu/v0/shared_xml.rb @@ -261,7 +261,7 @@ module SiSU_XML_munge para.gsub!(/∝/u, '∝') # ∝ # ∝ para.gsub!(/∞/u, '∞') # ∞ # ∞ para.gsub!(/™/u, '™') # ™ # ™ - para.gsub!(/✠/u, '†') # † # † incorrect replacement! † + para.gsub!(/✠/u, '✠') # ✗ # ✠ para.gsub!(/ /u, ' ') # space identify para.gsub!(/ /u, ' ') # space identify end @@ -364,7 +364,8 @@ module SiSU_XML_munge para.gsub!(/∝/u, '∝') # ∝ # ∝ para.gsub!(/∞/u, '∞') # ∞ # ∞ para.gsub!(/™/u, '™') # ™ # ™ - para.gsub!(/✠/u, '†') # † # † incorrect replacement † + para.gsub!(/✠/u, '✠') # ✠ + #para.gsub!(/✠/u, '†') # † # † incorrect replacement † para.gsub!(/ /u, ' ') # space identify para.gsub!(/ /u, ' ') # space identify end |