pdbook 0.1.6 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/pdbook.rb +1 -1
- data/lib/pdbook/converter.rb +8 -1
- metadata +1 -1
data/lib/pdbook.rb
CHANGED
data/lib/pdbook/converter.rb
CHANGED
@@ -106,9 +106,16 @@ module Pdbook
|
|
106
106
|
text.gsub!('﹂', '」')
|
107
107
|
text.gsub!('︽', '《')
|
108
108
|
text.gsub!('︾', '》')
|
109
|
-
text.gsub!('|', '
|
109
|
+
text.gsub!('|', '—')
|
110
110
|
text.gsub!('︵', '(')
|
111
111
|
text.gsub!('︶', ')')
|
112
|
+
text.gsub!('﹃', '『')
|
113
|
+
text.gsub!('﹄', '』')
|
114
|
+
text.gsub!('︹', '〔')
|
115
|
+
text.gsub!('︺', '〕')
|
116
|
+
text.gsub!('︻', '【')
|
117
|
+
text.gsub!('︼', '】')
|
118
|
+
|
112
119
|
text
|
113
120
|
end
|
114
121
|
|